Agent Count Escalation
also known as from-one-to-many, single-to-multi-agent escalation
Start with one agent. Add a second only when the first clearly fails the task and you can show it. When you do add agents, pick the coordination style on purpose: democratic, manager, hierarchical, or actor-critic. Do not reach for a swarm by reflex. Treat the number of agents as a dial you turn only when the evidence says to. Pair each step up with a coordination shape that fits the failure you saw.
Methodology process overview
Intent. Make 'how many agents' a decision driven by evidence, and force a deliberate choice of coordination style at each step up, instead of jumping to multi-agent by reflex.
When to apply. Use this when a team wants to design a multi-agent system before a single agent even exists, or when one agent has stopped improving and the next move is unclear. Don't apply it when the task is multi-actor by nature, such as negotiation, simulation, or debate as a feature. There the multi-agent shape is part of the requirement. Skip it too when you have no measurement of how the single agent fails, because then you have nothing to base a step up on.
Inputs
- Single-agent baseline metrics — Numbers that show where the single agent succeeds and where it fails.
- Coordination cost budget — The latency, tokens, and infra you can spend on adding more agents.
Outputs
- Agent-count decision — A written choice of one, a few, or many agents, with the evidence that backs it.
- Coordination shape — The named coordination style (democratic, manager, hierarchical, actor-critic, or swarm) with clear roles.
Steps (6)
Build and measure the single-agent baseline
Build the simplest single agent that could plausibly solve the task. Measure its success, latency, and failures on a representative eval set.
Identify the specific failure that escalation should fix
Name the failure the second agent will fix: context overflow, role conflict, a missing specialist skill, or a judge that is not independent. Without a named failure, adding agents is just theatre.
Pick the coordination style
Choose on purpose. Democratic: peers vote. Manager: one orchestrator with workers. Hierarchical: supervisors nested over sub-teams. Actor-critic: one agent generates, another judges. Each one fits a different failure.
usesOrchestrator-WorkersSupervisorDebateEvaluator-OptimizerHierarchical Agents
Add the smallest number of agents that resolves the failure
Two is often enough. Do not leap to a swarm. Extra agents add coordination cost and bring new failures of their own.
Re-measure against the same eval set
Compare the multi-agent system to the single-agent baseline on the same metrics. If the gains are small, roll back.
Document the escalation as a decision record
Write down why you stepped up, what failure it fixed, and when stepping back down would be right. The next team needs this.
Framework-specific instructions
Pick a framework and generate a framework-targeted rewrite of this methodology's steps.
Choose framework
AI-generated for Agent Development Kit (ADK) (Google) — verify against official docs.
Principles
- Single agent first. Multi-agent is a tuning move, not a starting point.
- Every step up is paired with a named failure it fixes.
- Coordination style is a deliberate pick from a short list, not the framework default.
- Re-measure after stepping up. Roll back if the gains are small.
Known failure modes (4)
- ✕Hero Agent
Single agent is overloaded with responsibilities the team refuses to split, even after the failure mode is named — escalation needed but not taken.
- ✕Unbounded Subagent Spawn
Escalation went to 'as many agents as needed' instead of a bounded coordination shape — coordination cost explodes.
- ✕Multi-Agent on Sequential Workloads
Chained agents lose information at each handoff because no coordination style was deliberately chosen.
- ✕Orchestrator as Bottleneck
Manager-style coordination was picked without checking whether the orchestrator becomes the new single point of failure.
Related patterns (6)
- ★★Orchestrator-Workers
An orchestrator dynamically breaks a task into subtasks at runtime and delegates each to a worker LLM, then synthesises results.
- ★★Supervisor
Place a coordinating agent above a set of specialised agents and route work to them.
- ★★Hierarchical Agents
Organise agents in a tree where higher-level agents decompose tasks for lower-level agents, recursively.
- ·Debate
Have multiple agents argue different positions on a question and converge through structured exchange.
- ★★Evaluator-Optimizer
One LLM generates; another evaluates and feeds back; loop until criteria are met.
- ·Swarm
Run many peer agents that interact directly without a central supervisor, achieving emergent coordination.
Related compositions (2)
- recipe · abstract shapeMulti-Agent Coordination
Several agents collaborate under a coordinator, with explicit hand-offs and a shared protocol. The shape behind LangGraph supervisor, OpenAI Swarm, AutoGen group chat, Bedrock multi-agent orchestrators.
- recipe · abstract shapeMulti-Agent Debate
Two or more agents argue toward a better answer than any single agent would produce, with a frozen rubric to score the result. The shape behind debate-style alignment work and 'committee of critics' setups.
Related methodologies (2)
- Agentic Workflow Construction★★
Make agent authors name the four parts and the freedom level before they code, so a failure points to one part instead of smearing across a vague agent.
- Agent Architecture Decision Ladder★
Make the architecture choice a deliberate climb up a four-step ladder, backed by evidence, picking the lowest step that solves the task, instead of defaulting to an autonomous multi-agent system.
Sources (2)
Building Applications with AI Agents
Ch 8 'From One Agent to Many' “How Many Agents Do I Need? ... Swarms and principles for agent escalation ... Multiagent coordination methods (democratic, manager-based, hierarchical, actor-critic)”
Choosing the Right Multi-Agent Architecture
“Start with a single agent and good prompt engineering. Add tools before adding agents. Graduate to multi-agent patterns only when you hit clear limits.”
Provenance
- Added to catalog:
- Last updated:
- Verification status: verified