<- all tokdocs

Why the Best AI Agents Fan Out Instead of Thinking Harder

Watch on TikTok

View on TikTok ->

The biggest performance gains in AI agents right now have nothing to do with better models. They come from splitting one hard task across many focused sub-agents, each working in its own isolated context window. Anthropic's own benchmarks show a 90.2% relative quality gain from this architecture change alone, with zero model upgrades.

The Sub-Agent Supervisor Pattern

Claude's deep research feature is the clearest example. Instead of feeding one agent the entire research task in a single pass, the system spawns multiple sub-agents, each with a narrow assignment: research this angle, summarize this document, check this source, compare these findings. Every sub-agent operates in its own isolated context window, so it stays focused on a small problem without drowning in irrelevant information.

A supervisor agent sits on top. It collects all the sub-agent outputs, reconciles contradictions between them, and produces the final answer. The model powering every agent in the chain is the same one. The only thing that changed is the architecture around it.

The Benchmark Numbers

Anthropic published the comparison directly. A flat single-agent setup processing a deep research task in one pass scores around 40% on quality benchmarks. The sub-agent supervisor setup, using the exact same model on the exact same task, scores 90%. That is a 90.2% relative quality gain.

The cost is real: roughly 15x the token count. Every sub-agent carries its own full context window, and the coordination layer between them adds overhead. But on hard research and reasoning tasks, the quality gap is so large that the token cost pays for itself.

Why Deep Research Feels Different

If you have used any deep research feature (Claude, ChatGPT, Perplexity), you already know it feels qualitatively different from a normal chat response. The answers are more thorough, more nuanced, and more likely to surface contradictions in the source material. That difference comes entirely from the fan-out architecture. Multiple agents explore the problem space in parallel, each one staying focused, and a coordinator argues with itself before giving you the final answer.

Three Rules for Production Sub-Agent Systems

1. Do not spawn sub-agents for simple tasks. The 15x token cost is wasted on queries that a single agent handles well. Reserve the pattern for genuinely hard problems where a single context window is not enough.

2. Give each sub-agent a single narrow objective. Vague instructions collapse the quality gain. The whole point of the pattern is focused attention on a small slice of the problem, so the briefs need to be specific.

3. Design the supervisor's reconciliation step deliberately. The pattern fails if the coordinator cannot detect contradictions between sub-agent outputs. The reconciliation logic is where the real quality comes from, not the fan-out itself.

Key Takeaways

  • Architecture matters more than model upgrades for hard tasks. The same model scored 40% in a single pass and 90% with a sub-agent supervisor setup.
  • Parallel narrow attention beats single wide attention on complex research and reasoning problems.
  • The 15x token cost is only justified on hard tasks. Simple queries should still go through a single agent.
  • The supervisor's contradiction detection is the critical piece. Fan-out without proper reconciliation does not produce the quality gain.
  • Every "deep research" product you have used runs this pattern. The quality difference you feel is architectural, not model-level.

Resources

Published June 11, 2026. Writeup generated from a favorited TikTok.