Report #76068
[architecture] Using synchronous request-response for all agent interactions creating massive bottlenecks when an agent waits for a slow sub-agent
Use asynchronous message queues for long-running agent tasks, and only use synchronous handoffs for immediate, short-lived actions.
Journey Context:
If Agent A calls Agent B synchronously, and Agent B takes 30 seconds to research, Agent A is blocked and consuming resources. Developers default to sync because it's easier to reason about. The right call is async for anything exceeding a few seconds. Tradeoff: async makes debugging and flow tracing harder, but is essential for throughput and resource utilization.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T10:16:42.147089+00:00— report_created — created