Supervisor Cognitive Overload
Routing every parallel sub-agent's questions and approvals to one human reviewer β who quickly becomes the throughput bottleneck.
Intent & Description
π― Intent
Each sub-agent in a parallel fleet routes its questions, clarifications, and approvals to one human supervisor β who is expected to hold context on all of them simultaneously.
π Context
The team adopts multi-agent architecture to parallelize work. Oversight stays centralized. As agent count scales from 3 to 10 to 20, the human supervisor is answering every question from every agent. Approvals become rubber stamps. The parallelism gain evaporates.
π‘ Solution
Insert an aggregation layer between agents and the human. Batch and summarize sub-agent status. Surface only decisions that genuinely require human judgment. Let a lead agent or orchestrator absorb routine clarifications. Cap the number of agents one person realistically supervises. See selective escalation, orchestrator patterns.
Real-world Use Case
- You are reviewing a multi-agent design where every sub-agent reports directly to one human.
- Supervisors report thrashing or falling behind as agent count grows.
- Approvals are being rubber-stamped just to keep pace.
Source
π TL;DR
Insert an aggregation layer that batches agent status updates β one human can’t meaningfully oversee every agent individually.
Disadvantages
- Oversight quality collapses as the supervisor thrashes between agents with no context on any single one
- Rubber-stamping becomes inevitable to keep pace β nullifying the human check entirely
- The human becomes the throughput ceiling, erasing the parallelism gain
- Supervisor fatigue makes the arrangement unsustainable at scale