Three things, plainest version
- A plain automation runs the same fixed steps every time. No judgment. A form comes in, it adds a record and sends a templated email. This is most of what a service business needs.
- A single agent reads a situation, decides the next step, and uses a few tools. It reads each inbound email, works out whether it is a quote, a complaint, or a scheduling request, drafts a reply, and books a slot.
- Multiple agents means a manager agent splits a job into pieces and hands each to a specialist, then combines the results. It only earns its keep on open-ended work that genuinely splits into parallel parts, like broad research.
The test: you need multiple agents only if
You can honestly say yes to most of these:
- 1The work is naturally parallel (several independent directions at once), not one step after another.
- 2The information is too big for one agent to hold, with many tools in play.
- 3The pieces do not depend on each other. If step two needs what step one learned, multiple agents make it worse.
- 4The task is valuable enough to pay roughly 15 times the cost of a normal AI chat.
- 5You have already proven a single agent works on the simpler version.
Almost no everyday workflow at a 10-to-75-person shop clears this bar. Intake, scheduling, follow-up, invoicing, answering FAQs: these are sequential and the steps lean on each other. That is exactly where one agent, or a plain automation, wins.
Why more agents usually backfire
- Cost. Agents use about four times the tokens of a normal chat; multiple coordinated agents use about fifteen times (the company that built one of the leading systems reports this).
- Failure rates. A 2025 UC Berkeley study measured multi-agent failure rates between 41 and 87 percent across seven leading systems, with poor system design and coordination breakdowns among the leading causes.
- Compounding errors. Small mistakes stack into confident nonsense, often with no error message at all.
- The famous example. One team asked a multi-agent setup to build a simple game; because the sub-agents could not see each other's work, one of them built assets for a completely different game.
The two companies that build agents for a living openly disagree about this, and the disagreement maps cleanly onto task type: tightly connected work should stay with one agent; only genuinely parallel work benefits from a team.
What to do instead
Get one single agent or automation working and trust it unattended, with the rails from the guardrails resource. Add a second only when it is a genuinely separate job, not a piece of the same one. If a vendor proposes a multi-agent build, ask them which of the five conditions above your task actually meets.