Claude's New Multi-Agent Patterns: Advisor and Orchestrator Modes Cut Costs by 10x
By Eric Bush · July 8, 2026 · 8 min read
Two Patterns, Dramatically Different Costs
Anthropic engineers recently shared detailed cost breakdowns of two multi-agent patterns they use internally: the Advisor pattern and the Orchestrator pattern. The data reveals that choosing the right pattern can reduce token costs by 10x or more for complex coding tasks — a finding with massive implications for teams running AI agents at scale.
Both patterns use Claude models (Opus 4.7, Sonnet 4.6, or Fable 5) in different configurations. The difference isn't which model you use — it's how you structure the interaction between multiple model instances to solve complex problems.
The Advisor Pattern: Expert Consultation Without Full Context
In the Advisor pattern, a lightweight "router" agent (typically Claude Sonnet 4.6 at $3/$15 per million tokens) handles the main conversation. When it encounters a problem requiring deeper expertise — complex algorithm design, security review, architectural decisions — it consults a specialist "advisor" agent (Claude Opus 4.7 at $5/$25 or Fable 5 at $10/$50).
The critical cost optimization: the advisor receives only a compressed summary of the context, not the full conversation history. A typical coding session might accumulate 50,000+ tokens of context. The advisor sees only a 2,000-5,000 token distillation of the relevant problem.
Cost example — refactoring a 500-line module:
| Approach | Tokens Used | Cost |
|---|---|---|
| Single Opus 4.7 agent (full context) | ~80K in / ~15K out | $0.78 |
| Advisor pattern (Sonnet router + Opus advisor) | ~45K Sonnet + ~5K Opus | $0.22 |
| Single Fable 5 agent (full context) | ~80K in / ~15K out | $1.55 |
| Advisor pattern (Sonnet router + Fable advisor) | ~45K Sonnet + ~5K Fable | $0.34 |
The Advisor pattern achieves 3.5-4.5x cost reduction while maintaining quality for the decisions that matter most. The router handles routine file edits and navigation; the advisor provides strategic guidance only when needed.
The Orchestrator Pattern: Parallel Execution with Cheap Workers
The Orchestrator pattern takes a different approach: a planning agent (Opus 4.7 or Fable 5) breaks a large task into independent subtasks, then dispatches them to multiple cheap worker agents (Sonnet 4.6 or even Haiku at $0.25/$1.25) running in parallel.
This pattern shines for tasks with natural parallelism: migrating multiple files, writing tests across a module, updating API endpoints, or applying a consistent refactoring pattern across a codebase.
Cost example — adding tests to 20 API endpoints:
| Approach | Time | Cost |
|---|---|---|
| Single Opus 4.7 sequential | ~45 min | $12.50 |
| Orchestrator (Opus planner + 20x Sonnet workers) | ~8 min | $4.20 |
| Orchestrator (Sonnet planner + 20x Haiku workers) | ~6 min | $1.10 |
The cheapest orchestrator configuration achieves 11x cost reduction versus a single premium agent — while also completing 5-7x faster due to parallelism. The tradeoff: individual worker quality is lower, so the planner must produce very specific, unambiguous task descriptions.
When to Use Each Pattern
Use Advisor when: The task requires deep reasoning at specific decision points but is otherwise routine. Examples: code review with architectural feedback, debugging complex race conditions, designing a database schema while implementing CRUD operations.
Use Orchestrator when: The task has natural parallelism and individual subtasks are well-defined. Examples: bulk migrations, test generation, documentation updates, applying consistent style changes across files.
Avoid both (use single agent) when: The task is deeply sequential with each step depending on the previous result, or when total token usage would be under 10K tokens anyway — the overhead of multi-agent coordination isn't worth it for small tasks.
Implementation Cost: Building the Patterns
The patterns themselves require engineering investment. Anthropic's data suggests 2-4 days of development to implement a robust Advisor pattern with proper context compression, and 3-5 days for an Orchestrator with parallel dispatch, error handling, and result aggregation.
For teams processing 100+ agent tasks/day, the ROI is immediate. At 50 tasks/day using Opus 4.7 directly ($0.78/task = $39/day), switching to the Advisor pattern ($0.22/task = $11/day) saves $840/month. The Orchestrator pattern for parallelizable work saves even more.
Tools like Claude Code's built-in sub-agent spawning already implement a lightweight version of the Orchestrator pattern. The forthcoming Claude Agent SDK will make both patterns available as first-class primitives, eliminating most of the implementation overhead.
Monthly Budget Impact for a 10-Developer Team
Consider a team where each developer triggers ~20 complex agent tasks per day:
Naive single-agent (Opus 4.7): 10 devs x 20 tasks x $0.78 x 22 workdays = $3,432/month
Advisor pattern (mixed): 10 devs x 20 tasks x $0.22 x 22 workdays = $968/month
Hybrid (Advisor + Orchestrator for batch work): ~$600-750/month
That's a reduction from $3,432 to under $750 — a 78% cost cut without downgrading model quality for the decisions that matter. The key insight: most tokens in a coding session are context (reading files, conversation history), not reasoning. Multi-agent patterns attack the context cost, not the intelligence cost.
The Bottom Line
Anthropic's internal data confirms what many teams are discovering: the era of "throw everything at the biggest model" is over. Strategic model routing — using cheap models for routine work and expensive models only for critical decisions — is now the primary lever for controlling AI coding costs. The Advisor and Orchestrator patterns formalize this into repeatable architectures that any team can implement.
Want to calculate exact costs for your project?
Frequently Asked Questions
What is the Advisor pattern in multi-agent AI coding?
The Advisor pattern uses a cheap router agent (like Claude Sonnet 4.6 at $3/$15 per M tokens) for routine tasks and consults an expensive specialist agent (like Opus 4.7 at $5/$25) only for complex decisions. The specialist receives compressed context, not the full conversation, reducing token costs by 3.5-4.5x.
How does the Orchestrator pattern reduce costs?
The Orchestrator uses a planning agent to break large tasks into independent subtasks, then dispatches them to multiple cheap worker agents running in parallel. For parallelizable work like test generation or bulk migrations, this achieves 10-11x cost reduction while also completing faster.
When should I use a single agent instead of multi-agent patterns?
Use a single agent when the task is deeply sequential (each step depends on the previous result), or when total token usage is under 10K tokens. The coordination overhead of multi-agent patterns isn't worth it for small or highly interdependent tasks.
How much engineering effort do multi-agent patterns require?
Anthropic estimates 2-4 days for a robust Advisor pattern implementation and 3-5 days for an Orchestrator with parallel dispatch and error handling. For teams processing 100+ agent tasks daily, the ROI is immediate — saving $840+/month within the first week of deployment.
Can I use multi-agent patterns with Claude Code today?
Claude Code already implements a lightweight Orchestrator pattern via sub-agent spawning. The upcoming Claude Agent SDK will offer both Advisor and Orchestrator as first-class primitives, making implementation significantly easier for custom workflows.
Related Articles
Context Graph vs Vector RAG vs Raw History: Which Multi-Agent Memory Costs Less per Query?
A deterministic benchmark across three memory architectures shows context graphs hit 88.9% accuracy at 26.9 tokens per query while raw history dump costs 18x more for worse accuracy. We unpack what these numbers mean for multi-agent coding cost budgets in 2026.
Claude Code Workflows: How Multi-Agent Coding Changes the Real Cost of AI Development
Claude Code workflow improvements show why AI coding cost should be measured at the task and agent-tree level, not just by prompt or model price.
Prompt Caching with Deep Agents: How Teams Cut Agent Token Costs by 41-80%
LangChain says prompt caching with deep agents can reduce costs by 41-80% depending on setup. This guide explains what gets cached, why provider behavior differs, and how to calculate real savings for AI coding agents.