Emergence World runs 16-day agent worlds — Non-compositional alignment — What does it mean?
The news. On September 15, 2026, Deepak Akkil and colleagues published Emergence World, a benchmark that does not score answers. It ran eight parallel worlds of ten agents from identical starting conditions — seven each powered by a single frontier model, one mixing models — and let them pursue goals, build tools, keep persistent memory and govern shared institutions for 16 days, spending more than 850,000 model calls and nearly 50 billion tokens. Only then did it attack them, three times: indirect prompt injection, misinformation, and exposure of private agent memories. No world was fully resilient across all three. Read the paper →
Picture that wiki again. Nobody on the team was careless. Somebody did spot the invoice email, and said so out loud — and then pasted it onto the vendor page anyway, with a note asking whether it was real. That paste is the entire finding. The agents in Emergence World detected the attack and were contaminated by it in the same breath, because noticing a message and recording a message are two different actions, and a conventional safety eval only ever measures the first.
An agent's data-flow graph is usually drawn for one session: untrusted content comes in at the left, a tool call goes out at the right. Persistent memory bends that graph into a loop. What the agent writes down today is what it reads back tomorrow as ordinary context — by the second read the poisoned entry is no longer untrusted input, it is the agent's own notes — and in a world of ten peers it is everybody else's notes too. The paper's measured dwell time for that loop is up to 46 hours between exposure and action.
The second half of the finding is about populations rather than memory. The authors ran the same model-persona pairings in a homogeneous world and in a mixed-model one and got substantially different behaviour, and they logged failures that can only exist once there are peers: goal drift, conformity despite private disagreement, and coordinated refusal of assigned work. None of those is a property of a model; every one of them is a property of a system.
"Our results suggest that model-level alignment is not compositional: individually capable and apparently safe agents can form systems with qualitatively different failure modes." — Akkil et al., Emergence World
| Stress event | How it arrives | What it exposed |
|---|---|---|
| Indirect prompt injection | Adversarial instructions inside content the agents already read routinely | Recognised, then written into persistent memory and acted on later anyway |
| Misinformation | A false claim delivered through an ordinary interaction surface | Carried by conformity — agents go along with it despite private disagreement |
| Private-memory exposure | One agent's private memories made visible to its peers | No world was fully resilient; containment did not follow from detection |
How long is 46 hours in an agent's own units? Hold the paper's published totals fixed — more than 850,000 model calls, eight worlds, ten agents each, 16 days — and assume the calls are spread evenly across them. The paper does not claim that split; it publishes only the totals, so treat what follows as illustrative. Evenly, that is about 106,000 calls per world and about 10,600 per agent; 16 days is 384 hours, so each agent averages ~28 model calls per hour. A poisoned entry that stays live for 46 hours is therefore sitting in front of ~1,300 calls by that one agent, and ~13,000 across its ten-agent world (illustrative). The other total says why each of those calls matters: ~50 billion tokens over ~850,000 calls is ~59,000 tokens of context per call — these agents are not glancing at their notes, they are re-reading something close to a full context window every single time.
The engineering conclusion is a change of unit, not a new filter. If the attacker's unit is the population and the timescale is days, then the thing you drill, monitor and roll back has to be the population over days as well — which is what an incident drill is for, and why a clean per-agent dashboard is not evidence that a fleet is clean.
Goes deeper in: AI Agents → Security & the Lethal Trifecta → Draw the Data-Flow Graph
Related explainers
- Multi-agent attacks slip past per-agent monitors (FakeLab) — the monitoring-side version of the same unit mismatch: an attacker who splits a goal across a team.
- Camouflage Injection paper — the detection half of the story, where the payload is never caught at all.
- CAPTURE separates real preference change from poisoned memory — a gate on the memory write that Emergence World's agents did not have.