Methodology · Agent Constructionemergingverified

Agent Count Escalation

also known as from-one-to-many, single-to-multi-agent escalation

Applies to: agentmulti-agent-system

Tags: multi-agentescalationcoordinationagent-count

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 metricsNumbers that show where the single agent succeeds and where it fails.
  • Coordination cost budgetThe latency, tokens, and infra you can spend on adding more agents.

Outputs

  • Agent-count decisionA written choice of one, a few, or many agents, with the evidence that backs it.
  • Coordination shapeThe named coordination style (democratic, manager, hierarchical, actor-critic, or swarm) with clear roles.

Steps (6)

  1. 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.

    usesAugmented LLMTool Use

  2. 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.

  3. 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

  4. 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.

  5. 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.

  6. 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)

Related patterns (6)

Related compositions (2)

Related methodologies (2)

Sources (2)

Provenance

  • Added to catalog:
  • Last updated:
  • Verification status: verified