Skip to content
Back to full roadmap
topiccore

Orchestrator-Worker Pattern

Manager agent splits the task, worker agents execute in parallel, manager aggregates.

4 hours1 resources1 prereqs

The most practical multi-agent pattern:

  1. Orchestrator (manager) — receives user question, splits into subtasks, picks which worker to call
  2. Workers — each an expert in its domain (search worker, code worker, data worker). Does the job, returns result
  3. Orchestrator — synthesizes results, produces final answer

Pros:

  • Parallel execution
  • Workers can use different models (cost optimization)
  • Workers have different tool subsets (capability isolation)

Anthropic's official blueprint. Foundation of Claude multi-agent research.

Prerequisites

Resources(1)