Skip to main content
Sequential stages where each phase’s output feeds the next, with context reset between stages. How it works:
  1. Create tasks with dependencies: each stage is blocked by the previous
  2. Each handoff resets context — research noise doesn’t leak into implementation
  3. Each stage writes structured output that the next stage consumes
Best for: research → implementation flows, multi-stage migrations, any workflow where earlier context would bias later steps. A typical four-stage pipeline:
Each stage uses the cheapest model that can do the job — see cost and model routing. Division of labor: The orchestrator never does heavy lifting — it spawns, waits, integrates, routes.

Examples in the wild