The Subagent Economy
10 articles in series
Ten essays on orchestrating fleets of AI agents — why the lead-agent pattern won, the 15x token tax of parallel subagents, forking vs spawning, why 40% of multi-agent pilots fail in their first six months, and a practical cost/latency framework for deciding fleet size.
How Many Agents Is Too Many? A Cost/Latency Framework
Fleet size isn't a vibe — it's a function of decomposability, token budget, and how much compounding failure risk you can tolerate.
Debugging a Multi-Agent System When Something Goes Wrong
In a single-agent system, the bug is in the code. In a five-agent pipeline, the bug is in the seam — and most teams don't know how to look there.
The Supervisor Pattern: Claude Code's Default for a Reason
Developer tools converged on lead-agent-with-subagents before enterprise AI did. That order of adoption is a clue about why the pattern works.
Human-in-the-Loop Checkpoints for Autonomous Agent Fleets
Every approval gate you add slows a fleet down. Every gate you skip is a bet that nothing downstream needed a human. Where to place them.
Designing Handoffs Between Specialist Agents
The weakest point in a multi-agent pipeline is never the agents. It's the seam where context passes from one to the next — or doesn't.
Why 40% of Multi-Agent Pilots Failed in Their First Six Months
The models were capable enough. A postmortem look at why 40% of multi-agent pilots still didn't survive production — and it wasn't the AI's fault.
When to Fork an Agent vs Spawn a Fresh One
Context-inheriting forks and stateless fresh subagents solve opposite problems. Picking wrong either wastes tokens or loses critical context.
The 15x Token Tax of Parallel Subagents (and When It's Worth Paying)
Parallel subagents cut research time up to 90% and cost roughly 15x the tokens of a single chat turn. That ratio is a budgeting decision, not a red flag.
Orchestrator vs Swarm: Two Ways to Split Agent Work
Hub-and-spoke and peer-to-peer aren't rivals fighting for the same job — they solve different shapes of problem. Here's how to tell which one you have.
Why the Lead Agent Pattern Won in 2026
Flat agent swarms looked elegant on a whiteboard. In production, hierarchy won because someone has to own the failure.