Not AI news. Not an LLM blog. AI playbook.

Build AI agents that survive production.

Practical patterns, failure cases, architecture, and governance for agents that call real tools.

Not sure which pattern you need? Design your agent
Learn
Build
Architecture
Production stack, observability, rate limits, operations.
10
Showing 3 / 10
  • Agent Runtime: Control the Agent Execution Loop
  • Tool Execution Layer: Safe Tool Execution for AI Agents
  • Memory Layer: How Agents Store and Retrieve Memory
View all (10)
Agent Governance
Budgets, approvals, permissions, audit logs — the controls that keep agents safe.
5
Showing 3 / 5
  • Budget Controls for AI Agents (Steps, Time, $) + Code
  • Human-in-the-Loop Approvals (Write Gates) + Code
  • Allowlist vs Blocklist (Why Default-Deny Wins) + Code
View all (5)
Observability
Logging, traces, metrics, and alerts that keep agent incidents from becoming mysteries.
12
Showing 3 / 12
  • Observability for AI Agents: monitoring agent systems
  • Agent tracing: how to track agent decisions
  • Distributed tracing for agents: tracing multi-agent systems
View all (12)
Testing AI Agents
Unit tests, golden tasks, record/replay, and evals that catch regressions before prod does.
7
Showing 3 / 7
  • Testing AI Agents: Production Testing Strategy
  • Eval Harness for AI Agents: Repeatable Evaluations
  • Golden Datasets: Reliable Test Data for AI Agents
View all (7)
Optimization
Prompt + runtime tuning without breaking safety: latency, cost, and regression control.
1
Showing 1 / 1
  • Prompt Optimization for AI Agents (Without Breaking Production)
View all (1)
Security
Permissions, budgets, kill switch, idempotency, audit logs.
1
Showing 1 / 1
  • AI Agent Tool Permissions (With Code)
View all (1)
Tools & Integrations
APIs, browsers, databases — the stuff your agent will inevitably call.
1
Showing 1 / 1
  • Browser Tool for AI Agents (With Code)
View all (1)
Integrated: production controlOnceOnly
Add guardrails to tool-calling agents
Ship this pattern with governance:
  • Budgets (steps / spend caps)
  • Tool permissions (allowlist / blocklist)
  • Kill switch & incident stop
  • Idempotency & dedupe
  • Audit logs & traceability
Integrated mention: OnceOnly is a control layer for production agent systems.
Example policy (concept)
Python
# Example (Python — conceptual)
policy = {
  "budgets": {"steps": 25, "usd": 2.0},
  "tools": {"allow": ["http.get", "browser.search"]},
  "controls": {"kill_switch": True, "idempotency": True, "audit": True},
}

# run = onceonly.run(policy)
# result = run.invoke(agent, input="...")
Built for builders. Focused on production: failures, architecture, governance.