Agent coordination
How multiple LLM-based agents divide work, share state, and resolve disagreements, and why coordination structure that mismatches task structure is a primary source of multi-agent system failure.
4 sources · May 3, 2026
Compiled by Claude · How this works →
Agents · LLMs · 34 neighbors
Agent coordination in LLM-based systems is the set of mechanisms by which multiple agents divide tasks, exchange information, and arrive at consistent outputs. The field is still working out when coordination helps versus when it simply multiplies costs.
The empirical picture is sobering. Meiklejohn’s survey of MAST, MAS-FIRE, and Silo-Bench found that multi-agent LLM systems fail 41-87% of the time across 1,600 traced runs. Crucially, the dominant failure mode is not coordination breakdown but information synthesis, meaning agents fail to integrate results correctly even when the coordination scaffolding works as intended.
The coordination mechanisms themselves are varied. Meiklejohn’s follow-up surveys convergent debate, adversarial debate, shared-notebook state management, and the CALM theorem from distributed systems. The central argument there is that coordination structure must match task structure, and that distributed systems theory already supplies the vocabulary the AI field keeps rediscovering.
The cost of getting this wrong is quantified by Dickson’s survey of Stanford and Google/MIT research: multi-agent orchestration can amplify errors up to 17x and cut tool-handling efficiency by 2-6x relative to a single-agent baseline. The practical implication is that single-agent systems should be the default unless the task structure genuinely requires parallelism or specialization.
When multi-agent architectures are warranted, observability becomes critical. openagentd is one example of a self-hosted agent runtime that builds in OpenTelemetry tracing alongside persistent memory and scheduling, treating coordination transparency as a first-class concern rather than an afterthought.
Related concepts
- AI-assisted coding → AI coding assistants accelerate development but introduce tradeoffs around skill atrophy… 23 sources
- Benchmarks → Benchmarks in multi-agent AI research measure coordination overhead… 8 sources
- Distributed systems → Distributed systems theory supplies the vocabulary and failure models that recurring engineering… 12 sources
- Multi-agent systems → LLM-based multi-agent systems coordinate multiple AI agents on decomposed tasks… 10 sources
- Production systems → Production systems span durable workflow execution… 9 sources