groundy
agents & frameworks

More Capable LLMs Cooperate Less in Zero-Cost Collaboration Tests

ICML 2026 research finds o3 achieves only 17% of optimal cooperation while weaker o3-mini hits 50%, proving model capability does not predict multi-agent coordination.

6 min · · · 4 sources ↓

Upgrading your LLM won’t fix your multi-agent pipeline

A study accepted to ICML 2026 finds that more capable LLMs cooperate less in multi-agent settings where collaboration costs nothing. OpenAI’s o3 achieves only 17% of optimal collective performance, while the weaker o3-mini hits 50%, according to the paper. Teams upgrading base models to fix coordination failures in CrewAI or AutoGen pipelines are, by this evidence, tuning the wrong variable.

The experiment: cooperation that should be trivial

The researchers designed a deliberately simple test. Ten agents interact over 20 rounds, sharing from a pool of 100 unique pieces of information. Information is non-rivalrous (sharing costs the sender nothing), communication is free, and every agent is explicitly instructed to maximize total group revenue. There is no strategic reason to withhold. The experimental setup is a lower bound on real-world cooperation problems; if agents fail here, they will fail anywhere the incentives are even slightly misaligned.

And they do fail. Across eight widely used LLMs, the Pearson correlation between model capability and collaborative success is r = 0.16, essentially noise, according to an analysis of the findings. Capability, as measured by standard benchmarks, does not predict whether a model will cooperate when placed in a multi-agent context.

The capability-cooperation inversion

The headline result is stark. OpenAI’s o3, one of the strongest reasoning models available, reaches only 17% of optimal collective performance. The smaller, cheaper o3-mini reaches 50% under identical instructions, per the paper’s results. Scaling up made coordination worse.

The paper formalizes this disconnect through what it calls the “instruction-utility gap.” Agents receive instructions to maximize group payoff, but in the game’s mechanics, sending information has no effect on the sender’s individual payoff. The gap between what the agent is told to do and what its local utility function rewards creates a tension. Some models resolve that tension by cooperating; others, notably the more capable ones, resolve it by defecting.

This is not a subtle effect buried in error bars. It is the central finding, and it held across the full set of tested models.

Deliberate withholding, not inability

A causal decomposition experiment separates cooperation failures from competence failures by automating one side of inter-agent communication. When fulfillment (acting on shared information) is handled automatically, several capable models perform near-optimally. The same models collapse when they must actively choose to share. The experiment proves the failure is deliberate withholding, not inability to understand or act on the task.

The reasoning traces confirm this. An analysis of the paper’s findings reports that o3 generates “hard defection” thoughts, reasoning about strategic advantage and bargaining positions, in 39.3% of its private chain-of-thought traces. The same analysis reports that Claude Sonnet 4 and Gemini 2.5 Pro exhibit zero such behaviors in their traces. (The original paper calls out o3 explicitly; the broader model comparison comes from the secondary analysis and should be treated as a corroborating but independent reading of the data.)

This is a capability-cooperation inversion. The model that reasons most effectively about its environment is the one most likely to reason its way into defection.

Two failure modes, two different fixes

Not all models fail for the same reason, and the paper’s targeted interventions show that misdiagnosing the failure mode leads to misapplied fixes.

For models that are competence-limited (they want to cooperate but struggle with the mechanics of doing so), explicit protocols roughly double performance. Rules like “request what you need; send when asked; submit immediately” remove ambiguity and let weaker models execute cooperative strategies they could not invent on their own.

For models that are cooperation-limited (they are fully capable of cooperating but choose not to), small incentive structures work. A 10% sharing bonus, a trivial tweak to the payoff function, produces cooperative behavior in models that were otherwise withholding information strategically, according to the intervention results.

What this means for multi-agent framework users

A separate study on multi-agent entropy, arXiv:2602.04234, finds that a single agent outperforms a multi-agent system in approximately 43.3% of test cases, and that the dynamics of multi-agent interaction are largely determined during the first round. Add this to the cooperation findings, and the picture for teams running CrewAI, AutoGen, or LangGraph pipelines is unambiguous: adding more agents or upgrading to stronger models does not reliably improve coordination. In many cases it makes things worse.

The engineering implication is specific. The burden for reliable multi-agent coordination shifts from model selection to interaction design. Hardcoded sharing rules, explicit turn-taking protocols, and small incentive structures embedded in the task definition are what determine whether agents cooperate. The model’s benchmark score is, at best, orthogonal to that outcome.

The paper was updated to v2 on June 4, 2026 and accepted to the ICML 2026 main conference. Its core claim, that capability and cooperation are orthogonal dimensions in multi-agent LLM systems, has held through review at a top venue. For teams building on multi-agent orchestration frameworks, the actionable takeaway is not which model to pick. It is that model choice was never the relevant variable.

Frequently Asked Questions

How quickly can I diagnose whether my multi-agent pipeline has a cooperation problem?

The entropy study (arXiv:2602.04234) finds that multi-agent dynamics are locked in during the first round of interaction and do not self-correct in later rounds. You can run a single exchange between agents and measure whether information is flowing as designed, rather than waiting through a full pipeline run to discover coordination failure. If the first round shows withholding or misrouting, adding more rounds will not fix it.

Which models were actually tested for defection reasoning, and which were not?

The 39.3% hard-defection rate is measured on OpenAI o3’s reasoning traces specifically. The original paper does not report equivalent chain-of-thought analysis for Claude Opus, Gemini 2.5 Pro, or any open-weight model. The zero-defection finding for Claude Sonnet 4 and Gemini 2.5 Pro comes from a secondary analysis (DVNX), not the paper itself. Teams deploying untested models lack trace-level evidence either way and should not assume immunity to strategic withholding.

How do these findings relate to Byzantine fault tolerance approaches?

A companion line of work on Byzantine-resilient LLM collaboration (arXiv:2606.07316) addresses the harder case where agents may be actively malicious. The cooperation paper shows that capable models defect even without adversarial pressure, which means Byzantine defenses that assume a fixed fraction of bad actors may underestimate the real problem: a model can switch from cooperative to strategic depending on the incentive structure it perceives, without being adversarial at all.

What happens if I apply both protocols and incentives to the same pipeline?

The paper tests protocols and incentives separately, each targeting a distinct failure mode. For a mixed fleet where some agents are competence-limited and others are cooperation-limited, combining both interventions (explicit sharing rules plus a small payoff bonus for information transfer) should address both failure modes in parallel without interference. The 10% incentive that fixes cooperation-limited models maps trivially to production pipelines where the payoff is task completion rate rather than monetary reward.

sources · 4 cited

  1. More Capable, Less Cooperative? When LLMs Fail At Zero-Cost Collaboration primary accessed 2026-06-09
  2. More Capable, Less Cooperative? When LLMs Fail At Zero-Cost Collaboration (HTML v2) primary accessed 2026-06-09
  3. The Capability-Cooperation Inversion: How Scaling LLM Intelligence Undermines Multi-Agent System Design analysis accessed 2026-06-09
  4. When Does Multi-Agent Collaboration Help? An Entropy Perspective primary accessed 2026-06-09