// Topics / AI Agents

AI Agents

Agents are useful only when they are bounded by real workflows, explicit tools, and operational checks. The writing here treats agents as production systems, not autonomous magic.

Start Here

What Makes Agents Production-Ready

An agent is production-ready only when the system around it is boring:

  • Tool access is scoped and auditable.
  • Human approval exists where blast radius is high.
  • Outputs are validated before downstream actions.
  • Retries and fallbacks are explicit.
  • Cost and latency are measured per workflow, not per demo.

Reading Path

For orchestration decisions:

For architecture boundaries:

For governance and reliability:

Failure Modes

  • Giving an agent broad tool access before defining approval boundaries.
  • Treating orchestration as a prompt problem instead of a state-management problem.
  • Measuring success by task completion while ignoring retries, escalations, and silent failures.
  • Letting every team invent its own agent framework, logging format, and evaluation path.

References

    Building Reliable AI Agents in Go Reliable agents aren't prompted into existence. They're engineered -- with bounded tools, validation at every step, explicit recovery paths, and the same discipline you'd apply to any production system. Here's how I build them in Go. agents reliability ai AI Workflow Automation: Decisions Are Cheap, Actions Are Expensive The trick to AI workflow automation is simple: let the model decide, let deterministic code act, and never confuse the two. automation ai workflow Agent Orchestration: Four Patterns, Honest Tradeoffs Multi-agent systems aren't magic. They're distributed systems with all the usual coordination headaches. Here are the four patterns I've seen work, and when each one falls apart. agents orchestration ai Agent Patterns That Survive Production Single-prompt agents break on real tasks. Plan-execute-replan, orchestrated specialists, structured memory, and explicit recovery -- in Go -- are what actually works. agents ai go Agentic Workflows: From Demo Magic to Production Reality AI agents that can take actions are fundamentally different from chatbots. The engineering bar must match the blast radius. agents ai production Agent Architecture Patterns That Actually Work in Production Most agent demos are impressive. Most agent production systems are not. Here is what separates the two. ai agents llm