tl;dr: Smart agents fail at coordination the same way humans do. Better reasoning doesn't fix it. Better interaction does. Intelligence is not just in the agent. It is in the interaction.
- Ayush Chopra, PhD Candidate at MIT (media.mit.edu/~ayushc).
Learn more at - iceberg.mit.edu/#writing
For over thirty years, MIT's John Sterman ran a game called Fishbanks with human teams [1]. Six fishing companies share the same ocean. Each round, every company decides how many boats to send out. More boats means more profit — but the fish regenerate slowly. If too many companies fish too aggressively, the population collapses.
Round after round, teams overfished early, told themselves they'd pull back next turn, and watched others do the same. By the time anyone acted, the fish were gone. Populations crashed within 5–6 rounds and never recovered. The problem was never intelligence or intent. It was coordination, the inability to stop and restart together at the right moment.
We ran the same experiment with AI agents. Six identical agents, all greedy, all maximizing their catch over 35 rounds. The only variable we changed was how coordination was handled.
In one setting, coordination lived inside the agents. Agents shared their decisions and reasoning traces with neighbors but had no structured way to aggregate decision flexibility. Each independently inferred where the group was heading. This is the dominant approach in multi-agent systems today: decision-first coordination, where social inference remains part of individual cognition. We use the term "A2A" to refer to this style of coordination, agents exchanging decisions and reasoning, as supported by protocols like Google's A2A [2].
In the other setting, each agent ran a lightweight coordination layer locally called the Ripple Effect Protocol (REP) [3]. Agents still made their own decisions, but coordination logic was handled by a protocol layer running alongside them. There was no central controller and no shared objective, only a different way for actions to interact across the group.
Same agents. Same greed. Different coordination.