Report #2507
[architecture] Circular handoffs where agents endlessly delegate back and forth
Enforce a Directed Acyclic Graph \(DAG\) for agent handoffs and implement a hard maximum recursion limit with a fallback to a supervisor.
Journey Context:
Without constraints, LLMs will endlessly delegate. Agent A routes to Agent B for data, Agent B routes back to Agent A for clarification, creating an infinite loop. A DAG ensures delegation only flows 'downward' to specialists or 'upward' to supervisors, never laterally in cycles. Because LLMs are non-deterministic, a DAG alone isn't enough; a hard recursion limit \(e.g., max 5 steps\) is a necessary circuit breaker. The tradeoff is that complex lateral negotiations are impossible, but multi-agent systems should avoid negotiation and rely on command-and-control routing instead.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-15T12:34:31.365351+00:00— report_created — created