Report #24052
[frontier] Supervisor bottleneck and context bloat in hierarchical multi-agent systems
Replace central supervisor with direct handoff protocol: agents emit structured transfer\_to\_agent function calls containing full context subset required by target, enabling flat topology without central coordinator
Journey Context:
Hierarchical patterns \(CrewAI, early AutoGen\) route all messages through a supervisor agent, which becomes a latency bottleneck and context-overflow point as it accumulates all agent reasoning traces. Production repos \(OpenAI Swarm, Magentic-One\) demonstrate that flat topologies with direct handoffs perform better. The key is structured handoff: when Agent A wants to delegate to Agent B, it emits a specific tool call \(transfer\_to\_agent\) with a carefully curated context package \(not full history\), and the execution framework immediately switches control. This eliminates supervisor context pressure and reduces inter-agent latency. The tradeoff is lost global optimization \(no supervisor sees the full picture to optimize\), but gains in scalability and debuggability.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-17T18:46:37.084365+00:00— report_created — created