15.S50 · Re-Imagining Workflows · Domain-Expert Leaders

Agent topologies and the shape of the work

Most leaders meet agentic AI as something to bolt onto the workflow they already run, a faster version of today's process. The bigger move is to redesign the shape of the work around what agents are good at, and that is where the gains compound. What makes it doable is that the shapes you would redesign into are not exotic. They are the ones your organization already runs on, and the most interesting ones might be the shapes it never could.

Q1
How far do we go?
Which slices of the work are even candidates for an agent.
Q2
How many agents?
One agent doing a lot, or many narrow ones handing off.
Q3
What blocks what?
The dependencies. Where one step cannot run until another clears.
Q4
Who needs what context?
What each piece is given, and what is too sensitive to hand over.
Where the idea starts

A leader comes back from a summit seeing his own floor differently

The leader owns a call center and knows it cold. Every step, every system, every edge case. He goes to an agentic AI leadership summit, watches what these agents can do, and comes home looking at his operation with new eyes. What he does next is the part that matters, because there are two very different moves in front of him.

The reflex

Automate the workflow he already has

Faster intake, faster lookups, a bot on the front line. The process keeps its exact shape, it just runs quicker. This is the trap domain experts fall into. It is safe, it produces a number you can put in a deck, and it is the smaller prize.

The reframe

Redesign how the work is structured

Ask what the work could be if you rebuilt it around what agents are good at. Which tasks collapse, which ones grow, who decides what, where the humans sit. That is a change to the workflow and to the decision-making architecture itself. Harder to do, and what the summit is for.

Making that second move takes two things. He has to understand how a system of agents can be shaped, which is the rest of this piece. He also has to see that those shapes are not foreign. They are the structures he already knows from running an organization full of people. That second idea is the important one. I would ask that you keep it in mind as you read.

The evidence

More agents win when the work splits into independent parts

When Anthropic rebuilt its research product as a lead agent coordinating several specialist agents in parallel, it scored far higher than a single agent on their own research test, and paid for that gain with more tokens, the units of text a model reads and writes, which are what you pay for. That lesson is the one this whole piece is built on. The architecture has to follow the structure of the task.

90.2%
higher score than a single agent on Anthropic's own research test
~15×
the tokens a single chat uses, a cost they took on deliberately
80%
of the variance explained by token use alone, on a separate eval (BrowseComp)
The boundary

Anthropic draws the boundary of its own result: domains that need every agent to share the same context, or that carry many dependencies between steps, are not a good fit for multi-agent systems today, and they name coding as the clearest example. Google Research put numbers on both sides of that boundary in 2026: multi-agent beat a single agent by 80.9 percent on tasks that split into independent parts, degraded performance by 39 to 70 percent on sequential tasks where each step depends on the last, and amplified errors 17.2× without an orchestrator checking the work, against 4.4× with one.

The counter-position

Cognition's “Don't Build Multi-Agents” argues that splitting work across agents fails through two mechanisms: context fragmentation, where no agent sees the decisions the others quietly made, and dispersed decision-making, where conflicting choices produce results nobody can reconcile. Hold both in mind. Shape and token spend are complementary explanations, not competing ones. The topology, independent parallelizable subtasks, is what makes the extra tokens productive instead of wasted.

Six words first

A small vocabulary, to level set

You do not need an engineering background for any of this. Six plain words do most of the work, and one of them, context, maps onto a question organization designers have asked for fifty years, who needs what information to do their work.

Agent
A piece of the system that takes a request, decides what to do, uses a tool or looks something up, and returns a result. One worker, one job.
Orchestrator
The coordinator. It receives the request, decides which agents handle which parts, and assembles the answer. It can be another agent, or it can be a person.
Context
What we hand an agent to work with, the account, the history, the policy, the live conversation. A big part of the design is deciding what each agent is given, and what it is allowed to act on.
The read / write line
Reading an account is low risk. Changing it, issuing a refund, closing a plan, is not. Risk piles up the moment an agent can write to a system of record.
Blast radius
How much damage one agent can do if it gets something wrong. A narrow agent with no authority has a small one. A broad agent that can move money does not.
Handoff
The moment one agent passes work, and just enough context, to another. Every handoff is a decision about what to carry forward and what to leave behind.
The shared foundation

One inbound call, mapped end to end

Every shape below, every way of wiring the agents, acts on the same underlying work. This is the call itself, stage by stage. Hover or tap any stage to see what happens there.

1 Intake who is this 2 Verify prove it 3 Triage why they called 4 Context pull the picture 5 Resolve work it out 6 Execute commit change 7 Wrap notes, code 8 Follow survey, QA Escalate then execute angry or complex
Hover or tap any stage to see the context it has
Where domain expertise pays off

Before you build anything, you read the work

The four questions from the start were how far we go, how many agents, what blocks what, and who needs what context. They are only answerable because the leader can take any task and break it into five things:

  1. what comes in,
  2. what has to go out,
  3. the steps between,
  4. what you need to know to complete each step (its context),
  5. and what data each step touches.

This is the part the leader already knows cold from running the operation himself, and it is the input to every decision that follows.

CONTEXT the context it needs DATA what you touch INPUT what comes in OUTPUT what goes out A step
Every step is the same shape. Something in, something out, riding on the context it has and the data it touches

The same breakdown, on a real call. A customer says they were charged twice and wants it back.

Inputthe customer's account and the two charges they are disputing
StepWhat it must knowWhat it touches
1Verify the caller
Which identity check is required, and how strong it has to be
Identity system, CRM
2Pull the charges
Where transactions live and how to read a statement
Billing, transaction history
3Judge the disputejudgment
What counts as a true duplicate versus a valid repeat charge
Transaction history, policy
4Size the refundjudgment
Eligibility, the amount owed, and the point where it must escalate
Policy, account, authority limits
5Execute and confirm
How to post a refund and what to tell the caller
Refund ledger, CRM, messaging
Outputa decision, the money moved or not, a logged reason, and a confirmation to the caller

Now read the table again. Once you look at it the right way, the design questions mostly answer themselves.

The steps and their order tell you how many agents you need and what blocks what. Each step marks where an agent could go, not where one must, the shapes refine that count later. The order matters, because one step's output becomes the next one's input, and the call's own input feeds the first step while its result falls out of the last. You cannot judge a dispute until you have pulled the charges, which is a hard dependency the design has to respect. The knowledge column tells you what to hand each agent. Some of it is fixed, like the refund policy, which is the same on every call and can be cached once and reused (caching gets its own section below). Some of it is a judgment, like whether this is really a duplicate, and that has to stay with a careful agent or a person. The data column tells you where the wall belongs, the privacy boundary you will meet properly in the features section. The sensitive systems are the ones that sit inside that boundary, reached only through what that section calls the internal agent. The two steps marked as judgment, the ones that run on reasoning instead of a rule, are the ones a person keeps a hand on.

None of that needed a new skill. It needed the leader to write down what they already knew, in a form the design could use. That is the job, turning what you already know into a form the system can run on. It is the input to every decision that follows.

Scope the model

Not every step is an LLM, and most should not be

A call is a stack of different parts, and only some of them are the reasoning model. The caller's voice becomes text through a speech-to-text model. The reply becomes voice through a text-to-speech model. Neither of those is the LLM, the large language model that does the reasoning. They are specialized models that each do one job. Verifying the caller is a database lookup. Posting the refund is an API call. None of that is an LLM either.

audio text text calls audio out Calleraudio Speech to textspeech model Lookups and actionsplain code LLMThe reasoningtriage, judge, decide Text to speechmodel or a person
The language model
Speech model, code, or a person
Only the red box is an LLM. Hover or tap any part to see what it is

The language model is only the reasoning in the middle. Triage, judging the dispute, sizing the refund, choosing the words. That is where every shape here lives, and where the cost and the latency and the risk collect. Everything around it is cheaper, faster, and more reliable for the plain reason that it is not a language model.

Reaching for an LLM to look up a balance or play a hold message is the same mistake as spawning fifty agents for a one-line question. The best systems put the model exactly where judgment is needed and use plain code everywhere else. That sharpens the first of the four questions, because Q1 has two layers and it pays to name both. The first layer is which work gets an agent at all, which the “what stays human” section takes up later. The second layer, this one, is that within the work you do hand over, only some steps need an LLM, and the rest should be plain code.

Everything in this piece, the shapes, the routing, the caching, lives inside that one red box. It is one slice of a larger system, and knowing where that slice starts and stops is its own kind of expertise.

The shapes

Five topologies, each one good at something different

A topology is just the shape a system of agents takes, how the parts are wired together. Hover any diagram to watch the work flow through it, and hover or tap a node to see the context it has. Each card carries the same four gauges so the shapes are comparable at a glance. Bars show relative intensity, not a grade. Hover any bar to see why a shape rates the way it does.

speed, how long the caller waits · cost, what a run burns in tokens · rigor, how much checking happens before anything commits · containment, two risks in one, data exposure and blast radius

Orchestrator or commit point
Worker agent
Specialist
01

Hub and spoke

Orchestrator and workers

One coordinator sits in the center and dispatches to a ring of narrow workers, each running in its own isolated context. The workers report back and the coordinator composes the answer.

The coordinator holds the conversation and delegates the rest; each worker sees only its own slice. Usually one pass, so it stays affordable. This is the shape Anthropic used for its research product. Hub and spoke is not parallel with a coordinator. Parallel fans out a fixed set of tasks decided in advance and merges the results. The hub decides per call which spokes to fire, and can change its mind midway.

+Fast. The workers run at once, and you add or drop one as the work changes.
Nothing checks the workers, so one wrong answer can pass straight through.
In the call center

A billing question comes in. The coordinator fires off a balance lookup, an account agent, and a knowledge agent at once, then stitches the results into one reply. Three seconds, one clean answer.

Best for independent, checkable subtasks
Identity Billing Account Orders Knowledge Messaging Orchestrator
Hover or tap a node to see the context it has
02

Pyramid

Hierarchical, with review

Layers. A wide base of agents does the legwork, a reviewer above them checks the draft and sends it back down when it is not good enough, and a single sign-off at the top gives final approval.

Picture a ladder of review. Associates do the legwork, senior associates shape it, managers check it and send it back when it is not right, and a partner signs off at the top. The loop that sends work back down is the mechanism doing the work: nothing commits until the layer above has looked. Use it when a wrong answer is expensive. Skip it when you have just built a committee to reset a password.

+Catches mistakes. Every level reviews before anything commits.
Slow and costly. Every answer waits on a sign-off.
In the call center

A billing dispute that will issue a refund. The base agents pull the amount, the policy, and the history. A reviewer checks the recommendation and sends it back if it is off, and a final agent signs off before the money moves. Nothing reaches the customer unchecked.

Best when money or trust is on the line
sent back sent back decision out Customer Partner Manager Manager Sr. Assoc. Sr. Assoc. Sr. Assoc. Associate Associate Associate Associate
Hover or tap a node to see the context it has
03

Pipeline

Sequential, an assembly line

Each stage feeds the next in a fixed order. Step two cannot start until step one has finished and handed over its output.

Every handoff between stages is a clean gate: you can check, log, or stop the work between any two of them, which is what makes this the easiest shape to audit. Good for work that genuinely has to happen in order.

+Predictable and easy to govern. Each step is a clean, gated handoff.
Slow, and the whole chain stalls if any one step jams.
In the call center

The wrap up after a call. Transcript becomes a summary, the summary produces a disposition code, the code generates the follow up task. Each step needs the one before it, which is why a straight line fits.

Best for low-stakes work with real ordering
Summary Code Task Done
Hover or tap a node to see the context it has
04

Parallel

Concurrent, all at once

Several independent agents run at the same moment on parts of the work that do not depend on each other. Their results get merged at the end.

The whole bet is independence. Each branch acts on partial context by design, so the shape works exactly when the parts truly do not depend on each other and turns dangerous when they secretly do.

+The fastest shape. Independent reads run at the same moment.
You have to reconcile results that come back not lining up.
In the call center

The instant a call lands, run three reads together. Identity lookup, a sentiment read on the opening line, and an intent classification. None needs the others, so doing them at once shaves real time off the front of every call.

Best when the parts truly do not depend on each other
Intake Identity Sentiment Intent Merge
Hover or tap a node to see the context it has
05

Mesh

Peer to peer, no central boss

Agents talk straight to each other, with no one coordinating them. There is no plan from above. Each one follows its own simple rules, and whatever the group ends up doing comes out of all of them working at once.

Useful when specialists need to negotiate directly. Two different things get called mesh, and it pays to keep them apart. The bounded version is a small peer group you design on purpose. Microsoft's name for it is group chat, and their guidance caps it at about three agents before it stops being controllable. The emergent version is a swarm: no controller at all, each agent following local rules, the group's behavior arising rather than being designed. This card means the bounded version. Either way, without a coordinator deciding when the job is done, you have to build in a rule for when to stop.

+Flexible and powerful. Agents coordinate directly, with no bottleneck.
Hard to govern, which is why you keep a supervisor watching.
In the call center

A retention case where a fraud agent and a save-the-customer agent negotiate an offer against each other. Let them go back and forth, but keep a supervisor watching so the result stays explainable.

Use rarely. Hard to audit, easy to let run away
Fraud Retention Pricing Supervisor
Hover or tap a node to see the context it has
Hover any bar to see why this shape rates the way it does
A note on names

The names, and why these ones

There is no settled vocabulary for any of this. Microsoft ships five orchestration patterns and lists three or four synonyms for each. OpenAI splits multi-agent work into a manager pattern and handoffs. Anthropic names five workflow patterns before the word agent even applies. LangChain renamed its own set between 2024 and 2026. Every vendor speaks its own dialect, and the dialects drift.

So this piece uses plain words, on purpose. The names here are picked to carry the organization analogy, a pyramid reads like a firm and a pipeline reads like an assembly line, because that mapping is the argument. And plain names do not churn when a vendor renames its docs.

Beyond the shapes

Four features you layer onto any shape

You can layer these onto whichever topology you pick. A privacy wall controls what the customer-facing agent is ever allowed to see. A reviewer agent checks another agent's work before it ships. A human in the loop puts a person at the point where an action cannot be undone. Caching controls what the work costs to run. All four sit on top of the five shapes above.

Orchestrator or commit point
Worker agent
Specialist
Human

Internal and external boundary

A privacy wall, not a third org chart

One agent is the only thing that ever speaks to the customer, and it is deliberately starved of sensitive context. A second agent holds the full picture inside and passes outward only what is safe to say.

Less a standalone shape, more a wall you draw through whichever shape you pick. Requests cross outward toward the customer. Only cleared answers cross back. Secrets never leave the inside. The external agent cannot leak what it never held. If you handle data residency rules or health records, this is the feature you want.

In the call center

The customer-facing agent handles the conversation and never sees the full payment history or the Social Security number. The internal agent verifies the account behind the wall and returns only a yes, plus the one line the outside agent is cleared to use.

Overlay. Pair it with any topology here
OUTSIDE THE WALL INSIDE THE WALL gate Customer Externalagent Internalagent Systems talks request cleared data only lookup requests cross in, only cleared answers cross out
Hover or tap a node to see the context it has

Adversarial review

A checker you add to any shape

One agent does the work and a second agent checks it. The checker has no job except to find what is wrong and either pass the work or send it back. It is often the same model run again with fresh instructions and no memory of the first draft, so it has nothing to defend.

A reviewer with fresh eyes catches mistakes the first agent talked itself into, which is a cheap way to cut down on confident wrong answers. You pay for it in cost and time, since you are running a second agent on top of the first, and a send-back means another full round. Reach for it when you need to trust what the agent did, anything that moves money or goes out under your name. Skip it on a password reset.

In the call center

Before a refund posts, a checker agent re-reads the dispute, the policy, and the amount the first agent settled on, then confirms it holds up or sends it back with a reason. The customer never knows a second pass happened.

Best when you need to trust the output
draft approved send back to fix Workerdoes the task Checkerfinds the holes Ships one agent makes it, another tries to break it
Hover or tap a node to see the context it has

Human in the loop

A person approves before it commits

A person sits at a checkpoint inside an otherwise automated flow. The agents do the work, but before a high-stakes action commits, a refund over a limit, an account closed, it pauses for a human to approve, edit, or reject.

It is the cheapest insurance on the actions that sit on the far side of the read/write line, the ones you cannot take back. The agent does everything up to the point of no return, then a person signs off, and only then does it commit. You pay for it in their time and in the wait, so you gate only the writes that matter and let the routine ones through. Nobody approves a balance lookup.

In the call center

A refund over five hundred dollars pauses for a rep to approve before the money moves. Anything under the limit the agent posts on its own, and the rep sees it in the log afterward.

Best before an action you cannot undo
over the limit approved under the limit, posts on its own Agentdoes the work Humanapproves Commits
Hover or tap a node to see the context it has
The cost lever

Caching, or pay once for what does not change

Look back at the knowledge column. A lot of what an agent reads is identical on every single call. The refund policy does not change between this caller and the next. Neither does the product catalog, the knowledge base, or the system instructions. Caching means you process that stable context once and reuse it, instead of paying to read it again on every call. Run thousands of calls a day and that reused context is most of your bill.

The design question is timing. Which context is stable enough to cache, and which has to be pulled fresh.

Cached
processed once, reused every call
  • The refund and billing policy
  • The product catalog
  • The knowledge base
  • System instructions and tools
Fresh
pulled new each time
  • This caller's account
  • The live conversation
  • Today's order and shipment status

The organization already knows this one. A rep does not relearn the refund policy on every call. It is in the binder, pinned to the monitor, already in their head. What they pull up fresh is this caller's account. Caching is that binder. The standing knowledge that does not need re-reading, kept close so the work stays cheap.

It changes what every shape costs to run. The pyramid looks expensive until you remember the policy its reviewer checks against is cached, so each review costs far less than the gauge suggests. Caching does not change which shape you pick, only what it costs to run.

A specialist agent, up close

The escalation agent, and why it knows so little

An angry customer comes on the line, and you want one agent that knows exactly what to do. So who holds that knowledge, who is allowed to make it right, and how much does the rest of the system need to know about it.

Orchestrator or commit point
Worker agent
Specialist
going sideways Orchestratorknows that & who Normal flow Escalationknows how

The orchestrator does not need the de-escalation playbook. It only needs to recognize that this is going sideways and who owns it. The specialist holds the soft tone, the script, and the authority to offer a refund or a retention credit. That power lives there and nowhere else, so the routine agents never default to giving money away just to defuse a tense moment. That split is the clearest case of giving each agent only the context its job needs.

Orchestrator holds

Enough to spot the trigger. This caller is angry, they want a human, this is escalating. It knows that, and who to send it to. Nothing more.

Specialist holds

The how. The playbook, the tone, and the power to make it right. Tuned for one job, and the only node carrying refund and retention authority.

Three things come out of that. The orchestrator stays lean because it is not carrying every specialist script. The blast radius of a mistake stays small because refund and retention authority, the write side of the read/write line, lives in one narrow place. You can also tune the specialist for de-escalation without touching routing. The subtle part is that the router still needs some context. Just enough to spot the trigger, and nothing more.

Named companies

The shapes in real companies

The deployments below are public and quantified, the numbers are the sources'; the shape column is this piece's read of them, in the vocabulary above. Sources are linked on each card, with the full list in the footer.

The deployment
Klarna

Its AI assistant, launched January 2024, handled 2.3 million conversations in its first month, two-thirds of chat volume and the equivalent of 700 full-time agents, cut resolution time from 11 minutes to under 2, and dropped repeat inquiries 25 percent. In May 2025 the CEO said cost had been made too dominant a factor, that AI-only support had cost quality, and began rehiring humans for support.

The shape, and the lesson
A single agent, the existing shape kept

The existing workflow, automated at its existing shape, with headcount replaced rather than work redesigned. The launch numbers are the honest case for the reflex; the reversal is the case against stopping there. Both sides of the debate live inside one company, about fifteen months apart.

The deployment
Sierra, at Casper

Sierra says its supervisors review each response in parallel as it is generated, verifying facts and enforcing policy, switching to intercept on high-risk topics, and escalating to a human when needed. At Casper, the agent resolved 74 percent of inquiries, holding that rate through peak traffic, and lifted customer-satisfaction scores by more than 20 percent, with Casper staff reviewing transcripts daily.

The shape, and the lesson
Adversarial review, with human escalation

A checker over the worker, with human escalation for the complex cases. The rigor is bought with a second pass, the way the adversarial-review card says.

The deployment
Salesforce, internally

Salesforce deployed specialist agents on its own operations and found that a collection of siloed specialists fragmented the employee experience. It rebuilt the employee side around a single orchestrator agent that calls out to the specialists. Separately, its customer-facing help-site agent reports roughly 83 percent resolution, and Salesforce claims about $100 million taken out of support costs.

The shape, and the lesson
Silos, rebuilt as hub-and-spoke

The first attempt failed on shape, not on agents. The fix was a topology change.

The deployment
Citi Agent Assist

Introduced in 2024, it supports more than 5,000 customer service representatives across more than 11 million card calls with real-time transcripts and automated summaries. The agent augments the rep. It does not replace them.

The shape, and the lesson
Human-in-the-loop copilot

The person stays in the seat and the agent feeds them context. The caution is on the record, from Citi's Promiti Dutta: “we can't afford anything going wrong with any interaction.”

One caution: “deflection” and “resolution” are not standardized terms, every vendor defines them differently, so ask for the definition before you accept the metric.

Where the value is

These shapes are how your organization already works

Strip an org chart down and it is a decision about information. Who holds what, who has to coordinate with whom, who is allowed to act. Jay Galbraith, the organizational theorist, put that at the center of organization design fifty years ago. Structure exists to match how much information the work demands against how much the organization can process. The same logic carries over to a system of agents, where placing an agent is deciding what we give it and what we let it do.

In your organization
The delegating manager

A manager takes the request, parcels pieces to specialists who do not talk to each other, and assembles the result. One set of eyes has to catch every mistake.

As an agent system
Hub and spoke

Fast, because the work runs in parallel. The single point of quality risk sits with the coordinator, exactly as it does with the manager.

In your organization
The firm with layers of review

The associate drafts, the senior associate shapes it, the manager sends it back until it holds, the partner signs off. A consultancy, a law firm, a bank credit committee. Quality bought with layers.

As an agent system
Pyramid

Slow and expensive, and worth it precisely when being wrong is costly. It is the same layered review, run by agents instead of people.

In your organization
Front office and back office

The client-facing team never sees the privileged file. The back office holds it and releases only what is cleared. How banks, hospitals and firms already contain sensitive information.

As an agent system
Internal and external boundary

The same front-back split that banks and hospitals already run on, now a wall between what the customer-facing agent is handed and what stays inside.

In your organization
The standard operating procedure

Each desk does its step and passes the file along. The claims process, the mortgage pipeline, the assembly line. Predictable and auditable.

As an agent system
Pipeline

The same ordered handoffs, the same strength and the same weakness. Easy to govern, slow to run, brittle if one desk jams.

In your organization
The task force

Several people take independent angles at once, then converge. A war room, a due-diligence sprint. Fast, with the headache of reconciling what they each found.

As an agent system
Parallel

Speed from working at the same time, and the same merge problem when two threads come back with answers that do not line up.

In your organization
The flat room of peers

No boss in the room, specialists negotiating directly. A trading desk, a founding team. Creative and quick, and hard to govern.

As an agent system
Mesh

Free-flowing and powerful, and the reason you keep a supervisor in the room. Same freedom, same governance problem.

Which is why the leader we met at the summit is not starting from zero. He has run these structures with people. He knows a delegating manager is fast but misses things, that a review chain is slow but safe, that the back office exists to keep secrets in. Henry Mintzberg, who spent his career mapping how organizations are built, catalogued the shapes organizations take, the simple owner-run shop, the machine bureaucracy that runs on process, the professional firm of experts who manage themselves, the divisional structure, and the loose adhocracy built for one-off problems. These shapes are the same family, drawn for agents instead of people. The leader already knows which fits which work, in his gut, because he has lived inside them.

Agentic design asks the leader to apply exactly that judgment to a system that runs at the speed of software. That should feel like familiar ground. There is rarely one best structure. Several can work, each at a different cost, and the skill is matching one to the work in front of you. Organization theorists have a name for this, equifinality (Gresov and Drazin gave it its canonical treatment in 1997), the idea that different designs can reach the same end by different routes. So the question that looked new, how many agents and what shape, is the organization-design question the leader has answered a hundred times. Those years running the operation are exactly the qualification this work asks for.

Where the person fits

The orchestrator does not have to be an agent

It can be the person. The orchestrator seat can be filled by a human or by an agent, and once you see that, the question stops being how do we automate the call center and becomes how does a human stay in command of a system that does the heavy lifting. Two arrangements matter, and they differ in how close the person stays to the work.

Human
Orchestrator or commit point
Worker agent
Arrangement one · human-in-the-loop

Human as the orchestrator

The person sits in the orchestrator seat itself. They read each call and hand it to the agent that fits, the way a head chef calls the line. There is no machine layer between them and the work. Slower than letting an agent route, and the most direct way to stay on top of every decision. The literature calls this arrangement human-in-the-loop: the person is inside the flow of the work, and nothing moves without them.

Humanorchestrator Agent Agent Agent
Hover or tap a node to see the context it has
Arrangement two · human-on-the-loop

Human on top, one layer removed

The person sets direction and an orchestrator agent fans the work out underneath them. They talk to the coordinator, the coordinator talks to everything else, and the human stays out of the weeds of every lookup. More reach, one step further from each call. This one is human-on-the-loop: the person supervises an autonomous orchestrator, keeping control of objectives and oversight rather than of each step.

Human Orchestrator Agent Agent Agent
Hover or tap a node to see the context it has

This is also where the reps fit. When the routine calls collapse into agents, the hard and human ones do not disappear, they concentrate. The reps stop taking those calls themselves. They watch the agents, decide which shape to run for a given call, approve the actions that cannot be undone, and personally handle the hardest, most sensitive ones the system escalates. That is a harder job than the one before it, and there are still plenty of calls that need a person.

A 2026 Anthropic study, “AI Organizations are More Effective but Less Aligned than Individual Agents,” found that groups of agents outperform a single agent on the task while adhering less to the safety guidelines they were given, a diffusion of responsibility in which decisions pass between agents until nobody, including the human receiving the result, is accountable for it. More agents may require more human accountability infrastructure, not less, which is exactly why the choice between in-the-loop and on-the-loop is a design decision and not a detail.

What stays human

Which work should an agent do at all

The shapes answer which structure fits a task. This is the question before that one. Should an agent run the work at all, and how much does a person need to stay in it. The usual way to sort it uses two axes, how costly a mistake is, and how much the caller needs to feel heard. The management literature calls this automate versus augment, and customer teams call it high touch versus high tech.

more emotional ↑
low stakes · high emotion
Agent handles it, a person one tap away
Single agent, human on call
A frustrated caller with an easy problem. The fix is simple, the tone is the job.
high stakes · high emotion
A person leads, the agent assists
Human, escalation agent in support
An angry dispute over a big charge, or a vulnerable caller. Where AI mistakes and hollow empathy hurt the most.
low stakes · low emotion
Let the agent run it
Pipeline or a lean single agent
Password reset, balance check, order status.
high stakes · low emotion
Agent does the work, a person signs off
Human in the loop
A refund or a plan change. Real money, nobody upset.
higher stakes, costlier to get wrong →

The diagonal is the lesson. Move from the bottom left to the top right and the person goes from out of the loop, to signing off on the agent’s work, to leading it while the agent assists. That is the automate to augment to human spectrum, and it maps straight onto the shapes you already have. The familiar rule for what to hand a machine is the three D’s, the dull, the dirty, and the dangerous. What stays with a person is the rest, the work that takes judgment or someone to answer for it. Today the top right corner stays human. The forecast at the end is where I ask what moves.

The payoff

There is no best shape. There is only the right shape for this call.

The tempting move is to pick one architecture and use it everywhere. Real systems mix them. You match the shape to the risk and complexity of each kind of call. Pick one below.

Choose a call type to see which shape fits, and why.
Shapes inside shapes

Systems do not have to take one shape

Every shape so far appeared on its own. A real system almost never picks just one. The shapes nest. A privacy wall on the outside, parallel branches inside, each branch running a shape of its own. Take one hard call. A customer phones in because they were billed twice, and they want their money back.

Orchestrator or commit point
Worker agent
OUTSIDE THE WALL INSIDE THE WALL the wall Customer charged twice External holds no secrets talks Internal orchestrator cleared only fan out in parallel results merge back GATHER THE ACCOUNT DETAILS · HUB AND SPOKE Hub Identity Billing Account Orders GIVE THE MONEY BACK · PYRAMID, WITH SIGN-OFF Partner Sr. Assoc. Sr. Assoc. Associate Associate Associate sent back sent back AFTER-CALL WRAP UP · PIPELINE Summary Code Task Done
Hover or tap the wall, the orchestrator, or any branch to see why it runs the shape it does

This starts with the customer. They are talking to one agent that holds nothing sensitive. Behind the wall the work fans out in parallel, and each branch runs the shape that fits it. A hub and spoke gathers the account details, because the lookups do not depend on each other. A pyramid gives the money back, because real funds move and any tier can send the refund back before a dollar does. A pipeline handles the after-call wrap up, because those steps have to happen in order. None of that reaches the customer. That is the idea in one picture. You compose the shapes, you do not pick just one, and it can be this involved or as simple as a single agent, depending on what the work needs.

Acknowledged boundaries

Four real constraints this piece sets aside

Four real constraints this piece does not cover.

Live-call latency
Fanning several agents out on a live voice call is an engineering problem, not a diagram. Callers tolerate very little dead air, and every hop adds delay. In practice the heavier shapes run where latency does not bite: pyramid review is realistically a post-call or asynchronous pattern, and the in-call work leans on the fast shapes.
Compliance in regulated settings
Call-recording consent, PCI scope for anything that touches card data, and dispute-handling rules are design inputs, not afterthoughts. In a regulated center they decide where the wall goes and which agent is allowed to write. This piece names them and defers them to the course's later sessions on governance and risk.
Vendor platform vs. greenfield
Most large centers run on a rented contact-center platform, not a blank page. The platform you are on constrains which shapes are actually reachable: some let you rewire the flow, others only let you bolt an agent onto the existing one. Reachability is a real filter on everything above.
The workforce transition
If agents absorb the routine volume, the headcount, contract, and staffing-model questions do not answer themselves. This piece argues the reps' work concentrates rather than disappears; how an organization manages that transition is the human half of the course, and later sessions carry it.
Take it with you

The four questions, answered. Now answer them yourself.

Q1
How far do we go?
Two layers. Which work gets an agent at all: the stakes-and-emotion 2×2 in “What stays human.” And within that work, which steps need an LLM: “Not every step is an LLM.”
Q2
How many agents?
Read the work. The steps and their order set the candidates, then the shape and its gauges set the count: “Reading the work” and “The shapes.”
Q3
What blocks what?
Hard dependencies decide pipeline versus parallel, and where dependencies are dense, fewer agents win: “The evidence” and the shape cards.
Q4
Who needs what context?
Each agent gets only what its job needs. The wall, caching, and the escalation split are all this one question: “Features” and “The escalation agent.”
The worksheet

Map a workflow from your last job. Pick one task you know cold, fill in the table the way the billing dispute was filled in above, then answer the four questions for it. If the table is hard to fill in, that is the finding.

StepWhat comes inWhat goes outWhat it must knowWhat data it touches
  1. How far do we go? Which steps need an LLM at all, and which of this work should an agent run?
  2. How many agents? One doing a lot, or several narrow ones handing off, and in what shape?
  3. What blocks what? Where is the hard dependency you cannot skip?
  4. Who needs what context? What does each piece get handed, and what is too sensitive to hand over?

A primer for the Re-Imagining Workflows session. It works through a call center, but the same four questions, the same shapes, and the same organization-design lens carry over to any workflow.

A potential case

A domain leader using a moment to redesign how the work is structured

The leader came back from the summit with a choice. Make the old process faster, or rebuild the shape of the work around what agents are good at. The first is the reflex, the second is the bigger prize. What lets him reach for it is expertise he already carries. He knows how organizations are built, how information moves through them, who is allowed to act. Designing a system of agents is that same craft, pointed at a system that runs at machine speed.

The framework is what to take away, and the shapes are just how you put it to work. None of them are new. They are how your organization already works, now running far faster than people can.

Written for the Re-Imagining Workflows session. It works through a call center, but the same four questions, the same shapes, and the same organization-design lens carry over to any workflow.

A personal forecast

The shapes your organization could not have

A note on what follows. These are my own predictions, not findings. They came out of thinking I have been doing on multi-agent systems and on organization design, and out of a question the rest of this piece raises but does not answer. If the shapes we just walked through are ones humans already run, what shapes have we never been able to run, and why?

The answer starts with why those six exist at all. Humans adopted them to work around human limits. A manager can only watch so many people, so we built hierarchy. Coordinating more people gets harder fast, so we capped how many talk to each other directly. A person holds one job at a time, carries ego, and walks out the door with what they know. Every shape here is partly a workaround for one of those facts.

Agents do not share those limits. So the question I keep coming back to is not which of the existing shapes to copy. It is which shapes become possible once the constraints that produced the old ones fall away. Six that I think are coming, none of which has a human precedent.

The org with no fixed chart. A conductor already picks a shape per call. Push that all the way and there is no standing structure at all. For every task the system builds a topology, runs it, and takes it apart, so the chart becomes something the work recomputes thousands of times a day rather than something you draw once.

The org that is one worker in every seat. The whole review chain, junior to partner, could be a single model checking its own draft from different vantage points, each with its own context and no memory of having written it. A firm cannot ask an analyst to be their own honest reviewer. An agent can be exactly that.

The managerless mesh at scale. We built managers partly to cap how much everyone has to talk to everyone. When agents can negotiate directly at almost no cost, the coordinating job the manager held dissolves, and you get real coordination with no one in charge of it.

The org with a span in the thousands. A human can supervise maybe seven people well. I already manage agents that collectively handle two hundred to a thousand tasks a day, more than any human manager could oversee, and the ceiling only climbs from here.

The org that never forgets. People take what they know with them when they leave, so companies re-learn the same lessons for decades. An agent org can keep its full institutional memory in one place, available to every agent at once, with nothing lost when one is retired and no onboarding when one is added.

The org that rewrites itself. Human organizations learn slowly, over reorgs and years. When every call's outcome feeds back into the structure and the instructions, the org can revise its own shape on a nightly cycle and get measurably better between Monday and Friday.

I do not know which one of these will materialize or arrive. What I am confident about is the shape of the skill it asks for. Today the leader's edge is recognizing the structures they already know, and the next edge is the judgment to design ones nobody has run before. It is the same judgment the rest of this piece has been building toward, aimed at a harder question, and it is not the kind of thing that gets automated away.