Work that already splits into distinct, checkable stages
20-minute pattern choice
Name the artifact that moves between stages
The three patterns at a glance
Before you add a second agent, be honest that a single well-scoped agent is usually cheaper, simpler, and safer to supervise. Reach for these patterns only when one agent is genuinely overloaded and the work breaks into stages you could brief separately. When it does, three shapes cover almost everything—and each one has a first failure that shows up before any other.
| Pattern | How the work splits | When it fails |
|---|---|---|
| Supervisor and specialists | One coordinator assigns bounded tasks and combines the results. | The coordinator receives vague, incompatible outputs it cannot reconcile. |
| Pipeline | Each stage transforms one fixed artifact and passes it on. | An early error flows downstream unnoticed and gets amplified. |
| Producer and reviewer | One agent makes the work; another checks it against a rubric. | The reviewer shares the producer’s blind spots and approves the same mistakes. |
The rest of this note takes each pattern in turn: what it is for, how to tell it is actually working, the failure that appears first, and the trade-off you accept by choosing it.
Pattern 1 · Supervisor and specialists
A supervisor pattern puts one coordinator—you, or a lead agent—in charge of breaking a goal into bounded assignments, handing each to a specialist, and assembling the pieces. It suits mixed work with distinct skills: one agent that is good at gathering research, another at drafting, a third at formatting. The value is narrow roles you can inspect one at a time instead of one agent quietly doing everything.
How to judge it: can you trace the assembled output back to each specialist’s contribution? If you cannot tell which agent produced which part, the split is not earning its cost—you have added coordination without adding clarity.
The first failure is a coordinator drowning in outputs it cannot reconcile. The research specialist returns a wall of unlabeled notes; the drafting specialist invents a structure that does not match; the coordinator stitches them into something that looks finished but is unsourced. The fix is the same as briefing a new contractor: write down exactly what each specialist must return and in what shape, so the coordinator is combining clean parts, not guessing.
The trade-off: flexibility costs money and overhead. Each extra agent is a real expense (a second agent is $10 after the first at $22), and a dynamic coordinator is only worth it when assignments genuinely vary. For a job that is the same shape every week, the coordinator is pure overhead—a simpler pipeline will beat it.
Use case: Devi’s weekly sourced report
Devi runs a solo B2B newsletter. Every Monday she publishes a sourced roundup of what changed in her industry. She first tried one agent doing the whole job, and it drifted—summaries wandered, and a few links did not actually support the claim beside them. So she looked at three ways to add structure.
Her options: keep the single agent and hope; a supervisor coordinating a researcher and a writer; or a pipeline with a review gate. The single agent was the failure she had already lived. The supervisor was flexible, but her weekly format never varies, so a dynamic coordinator would only add cost and moving parts. The pipeline fit the shape of the work exactly: a research stage gathers ten sourced findings into a fixed template, a writer turns only those findings into a draft, and a reviewer checks every claim against its link and can reject the draft.
She chose the pipeline with a review gate—because her work is the same shape every week, and the gate catches the one failure that reaches readers: a claim its own source does not support. She kept herself as the single owner, reading the reviewer’s rejections and pressing publish by hand.
The lesson: she did not need the most agents or the smartest coordinator. She needed the pattern that matched her work’s shape—stable stages with a checkable output—and one gate where a wrong claim still mattered.
Devi’s weekly pipeline, stage by stage
Illustrative figures from one worked example of a review-gated pipeline—not customer results or product benchmarks.
Gathered into one fixed template the next stage can trust.
Each claim rechecked against its link; weak drafts sent back.
Devi decides what ships—no agent publishes on its own.
Pattern 2 · Pipeline
A pipeline hands one defined artifact from stage to stage: research notes become an outline, the outline becomes a draft, the draft becomes a fact-checked version. It suits repeatable work with clear boundaries and a fixed format at each handoff. Because every boundary produces a real artifact you can open, you can fix or swap one stage without rebuilding the whole chain.
How to judge it: open the artifact between any two stages and ask whether it stands on its own. If stage three only makes sense after re-reading stage one, your boundaries are blurry and the stages are not really separate.
The first failure is error propagation. A miscounted figure in the notes becomes a confident sentence in the outline and a quoted claim in the draft—each stage trusting the last, so a small early mistake arrives at the end looking authoritative. Pipelines are also brittle: change the format of one artifact and every later stage breaks at once. Put a checkpoint—a person or a reviewer agent—at the boundary most likely to carry an error forward, usually the first one.
The trade-off: pipelines are predictable but rigid. They reward stable, repeatable jobs and punish exploratory ones, where you do not yet know the stages. If the work changes shape often, the fixed handoffs become friction instead of structure.
Pattern 3 · Producer and reviewer
Here one agent produces the work and a second checks it against an explicit rubric, with the authority to send it back. It fits content, classification, and structured reports—anything with a standard you can write down. Separating “make it” from “check it” catches errors the producer is blind to, and it forces you to state the rubric, which is valuable on its own.
How to judge it: the reviewer must actually reject something sometimes. A reviewer that approves every draft is decoration, not a control. Read the rejection reasons, not just the count—they tell you where the real quality line sits.
The first failure is false agreement. If the reviewer shares the producer’s assumptions—same framing, same instructions—it nods through the exact mistakes it was meant to catch, and two agents agree confidently on a wrong answer. The other failure is a reviewer with no real authority: it flags problems that get ignored downstream. Give the reviewer a concrete rubric and a genuine veto, or the pattern is theatre.
The trade-off: quality bought with cost, latency, and the risk of an endless loop where producer and reviewer volley a draft back and forth. Cap the revision rounds, and when they hit the cap, route the draft to a person instead of letting the two agents argue forever.
Keep one accountable owner
Whatever the pattern, more agents diffuse responsibility, and diffusion is dangerous. When three agents pass work along, “the system decided” becomes an excuse and a bad result ships because every stage assumed another one caught it. Name one person who owns the workflow: someone who can pause the whole thing, change the rules, and decide whether the final output is good enough to leave the building.
How to judge it: for any output the workflow produces, can you point to one owner, and can that owner stop the system in one place? If not, you have automated the blame along with the work.
The trade-off is deliberate. A single owner is a bottleneck by design—that is the point for anything consequential. Keep the reversible, low-stakes stages fully automatic, and keep the irreversible ones (sending, paying, publishing, deleting) behind that person. Today you do this by keeping each stage’s artifact visible in the dashboard so the owner can inspect any handoff; a single orchestration view that shows agents passing work to each other automatically is Coming soon. Until then, the cheapest and safest orchestration is often the one you already have: one well-scoped agent, with a person at the boundary that still matters.
Try this next
- Write down how your work actually splits: one coordinated set of tasks (supervisor), a fixed sequence of stages (pipeline), or make-then-check (producer–reviewer). If it does not split cleanly, keep one agent.
- Name the artifact that crosses each boundary and its exact format, so any handoff can be opened and judged on its own.
- Put a checkpoint—a reviewer agent or you—at the boundary most likely to carry an error forward, usually the first one.
- Name one owner who can pause the whole workflow and decide what ships, and keep every irreversible step behind that person.
Sources and further reading
These primary references support the article’s approach to choosing an orchestration pattern, guarding each handoff, and keeping one accountable person over a multi-agent workflow.
Names the building blocks this article maps to—prompt chaining (pipeline), orchestrator-workers (supervisor), and evaluator-optimizer (producer–reviewer)—and argues for starting simple before adding agents.
AWS Prescriptive GuidanceAgentic AI patterns and workflowsA reference for comparing orchestration patterns—task orchestration, subagent delegation, and control—when work spans multiple agents.
Google PAIRFeedback + ControlWhy people keep control of high-stakes work, with editability and manual fallbacks—support for keeping a person at the boundary that matters.
NISTAI Risk Management FrameworkIts Govern function places accountability for AI outcomes with people, not the system—support for naming one owner across a multi-agent workflow.
Ready to put one useful workflow to work?
Start with one clear job, a result you can review, and boundaries you understand.
See launch pricing