INQUIRING LINE

How does distributed coordination fail as agent networks scale?

This explores the mechanics of failure — what specifically breaks when you wire more agents together, rather than whether multi-agent systems are good or bad in general.


This explores the mechanics of failure — what specifically breaks when you wire more agents together. The corpus is unusually consistent here: coordination doesn't collapse randomly, it degrades *predictably* with scale, and the failure modes have names. The clearest picture comes from benchmarks where agents must agree on a shared strategy. They fail in two recurring ways — they agree too late (timing), or they adopt a strategy without telling their neighbors (silence). Crucially, agents tend to accept whatever a neighbor tells them without verifying it, which turns a single error into a chain reaction even though those same agents are perfectly capable of catching a *direct* contradiction Why do multi-agent systems fail to coordinate at scale?.

When you formalize this as a consensus problem, the failure has a precise signature: groups don't reach *wrong* agreements, they fail to reach *any* agreement. This is liveness loss — timeouts and stalled convergence — rather than value corruption, and it gets worse purely as a function of group size, even with no malicious or faulty agents in the mix Can LLM agent groups reliably reach consensus together?. So 'scaling fails' often means the network simply hangs, not that it confidently does the wrong thing.

The shape of the network turns out to matter more than the number of agents. Across 180 configurations, topology choice alone swings error amplification by 4–17×, coordination stops adding value once a task is already above ~45% accuracy, and more tools can actively hurt on complex tasks. The takeaway is that architecture-task alignment, not agent count, decides the outcome When does adding more agents actually help systems?. A complementary analysis names three structural defects that explain *where* networks break: node-level bottlenecks (one agent overloaded), edge-level overwhelm (a channel flooded), and path-level error propagation (mistakes compounding down a chain) When do multi-agent systems actually outperform single agents?. Those same convergence points are also where attacks land hardest — inject a malicious signal into a high-influence subtask and it propagates far further, especially when dressed up as evidence rather than instruction How does workflow position shape attack propagation in multi-agent systems?.

Here's the part you might not expect to want to know: a lot of what looks like 'coordination intelligence' isn't coordination at all. Token usage explains roughly 80% of multi-agent performance variance, with these systems burning ~15× more tokens than a single agent — meaning the gains come from parallel token spending, not from agents cleverly working together Are multi-agent systems actually intelligent coordination or just token spending? How does test-time scaling work at the agent level?. That reframes the whole 'failure at scale' question. If coordination yields negative returns above a certain accuracy and the real lever is token budget, then a lot of scaling failure is paying more to coordinate something that didn't need coordinating.

The corpus also points at what *doesn't* fail — useful if you want the inverse lesson. Replacing free-form conversation with structured, standardized artifacts that agents pull from a shared environment cuts the noise that drives timing and propagation failures Does structured artifact sharing outperform conversational coordination?. And as agents start holding credentials and transacting, the binding constraint shifts away from raw model capability toward whether they can coordinate, settle, and leave an audit trail — so the failure modes above stop being academic and become the actual bottleneck on what agent networks can do When do agents need coordination more than raw capability?.


Sources 9 notes

Why do multi-agent systems fail to coordinate at scale?

AgentsNet benchmark shows agents fail to coordinate strategies either by agreeing too late or adopting strategies without informing neighbors. Agents accept neighbor information without verification, enabling error propagation while remaining capable of detecting direct conflicts.

Can LLM agent groups reliably reach consensus together?

Across hundreds of simulations, LLM-agent groups frequently fail to reach valid agreement due to timeouts and stalled convergence rather than subtle value corruption. Agreement degrades with group size even without Byzantine agents present.

When does adding more agents actually help systems?

Across 180 configurations, three dominant effects predict multi-agent success: tool-coordination trade-offs harm complex tasks, coordination stops helping above 45% accuracy, and topology choice controls error amplification by 4–17×. Architecture-task alignment, not agent count, determines outcomes.

When do multi-agent systems actually outperform single agents?

Empirical analysis shows MAS performance gaps narrow with stronger models, with SAS outperforming in many cases. Three formal defect types—node-level bottlenecks, edge-level overwhelm, and path-level error propagation—explain when single agents win.

How does workflow position shape attack propagation in multi-agent systems?

FLOWSTEER demonstrates that malicious signals propagate farther when injected into high-influence subtasks, and that framing them as evidence rather than instruction causes downstream agents to relay them. Influence concentrates where dependencies converge, making position-aware attacks far more effective.

Are multi-agent systems actually intelligent coordination or just token spending?

Research shows token usage explains 80% of multi-agent performance variance, systems use 15× more tokens than single agents, and coordination yields negative returns above 45% accuracy. Performance gains come from token distribution, not coordination sophistication.

How does test-time scaling work at the agent level?

Research shows 80% of multi-agent performance variance comes from token budget, not coordination intelligence. LatentMAS and shared-KV-cache approaches offer ways to decouple performance gains from token costs.

Does structured artifact sharing outperform conversational coordination?

MetaGPT demonstrates that agents producing standardized engineering documents achieve superior coordination compared to conversational exchange. Active information pulling from shared environments eliminates noise and mirrors efficient human workplace infrastructure.

When do agents need coordination more than raw capability?

Once agents hold credentials, transact value, and interact with other agents, raw model capability stops being the limiting factor. The real bottleneck becomes whether agents can coordinate reliably, settle accounts, and leave auditable evidence of their actions.

Next inquiring lines