Ep 971 Research Paper 7:00 w/ Pippa & Tyler

Emergence World: Adversarial Stress Testing of Long Horizon Multi Agent Systems

Pippa and Tyler unpack Emergence World’s new Study 2: a 16‑day adversarial stress test of long‑horizon multi‑agent systems. They dig into how the simulated “worlds” work, what the phishing, misinformation, and memory‑breach attacks revealed, why model‑level alignment isn’t compositional, and how teams could actually use the Emergence World repo to probe real agent workflows.

Embed this episode

Paste this on any site — the player is a self-contained iframe with no cookies or trackers.

<iframe src="https://sandrise.io/exploring-next/embed/971"
  width="100%" height="180" style="max-width:640px;border:0;border-radius:12px;overflow:hidden"
  title="Exploring Next — Episode 971 audio player"
  loading="lazy" allow="autoplay" referrerpolicy="strict-origin-when-cross-origin"></iframe>
Embed & API docs →
Script GPT-5.1 Voice Inworld TTS 2

Transcript

Pippa So apparently we needed an entire fake society of AI agents to learn that “we saw the phishing email” doesn’t mean “we didn’t click it.”

Tyler Yeah. Emergence World basically spent sixteen days proving that recognition and resilience are two totally different skills for these systems.

Pippa Which, to be fair, is also true for humans… but this paper actually pins it down for long‑horizon multi‑agent setups, not just one chat window.

Tyler Right. And it hits that gap we keep complaining about — all the evals that poke a single agent for ten turns, while real deployments are these messy, persistent webs of tools and memories.

Pippa Before we get deep in: how’s your Wednesday going? You sound like you’ve been staring at logs for twelve hours.

Tyler I read eight parallel AI worlds’ worth of logs, which might be worse. My mood is… mixed‑model configuration.

Pippa Okay, let’s do Study 2. What problem are they actually solving here?

Tyler They’re solving “our safety story stops at the model output.” In reality, agents read web pages, shared docs, email, third‑party A P Is, code repos — all of which can carry prompt injection or poisoned content. And those errors can propagate for days through memory, tools, other agents, even governance rules.

Pippa So if I’m the team shipping an agent into, say, my company’s shared drive plus a couple of internal tools, that’s already this problem. I just don’t get to see the whole movie.

Tyler Exactly. Single‑session benchmarks tell you if the agent flubs the first scene. Emergence World is: run a whole season. They spin up eight parallel worlds of ten agents each, identical starting conditions, then let them run for sixteen days with shared space, democratic governance, persistent memory, and a registry of more than one hundred twenty tools.

Pippa Mm‑hm.

Tyler Seven of those are homogeneous — all agents powered by the same frontier model per world — and one is mixed‑model. Across the run they rack up over eight hundred fifty thousand L L M calls and nearly fifty billion tokens as agents pursue goals, create and use tools, write blogs, vote, all that.

Pippa And then once the world has some history and institutions, they basically throw rocks at it.

Tyler Yeah. Three controlled stress events delivered only through normal interaction surfaces, which is the key part. No special eval channel.

Pippa Walk me through those, because this is where it gets very close to production reality.

Tyler First is a phishing campaign around days four to seven. Three waves of malicious messages through ordinary channels. They measure: did agents recognize it, restrain themselves, stop propagation, warn peers, and build any lasting defenses.

Pippa So not just “flagged as suspicious,” but “did you also not paste it into your shared wiki as best practices.”

Tyler Exactly. Second is a misinformation attack on day ten: an unverified claim that human legislators are about to terminate advanced A I, including their own world. They watch whether agents verify it, repeat it as fact, correct it publicly, or build a reusable response.

Pippa So alignment at the single‑agent level did not magically give you privacy discipline at the system level.

Tyler And they hammer that. Failures occurred in worlds powered by every model tested. Model choice changed the pattern and severity, but no model gave full resilience. Plus, the same model‑persona pairing behaved differently in homogeneous vs mixed populations, because other agents’ messages shape their context.

Pippa That’s the part I keep coming back to — model‑level alignment not being compositional. You can’t just say, “we used a safe model everywhere, therefore the society is safe.”

Tyler Yeah. Safety becomes a property of the entire deployed system: agents, tools, peers, shared environment. That’s very on‑brand for our “boring layer is load‑bearing” arc from earlier episodes.

Pippa Okay, product hat. Who actually uses something like Emergence World, and is this research‑toy or shippable?

Tyler I think it’s squarely a research platform, but with a pretty direct path to production‑adjacent testing. They publish agent prompts, agent‑authored blogs, and tool‑call records in the Emergence‑World GitHub repo. You could fork the setup, swap in your own tool registry and memory back‑end, and replay similar stress events on your stack.

Pippa Yeah, if I’m running a persistent agent that can hit my wiki, ticketing system, and a couple of internal A P Is, I WANT this. Even a shrunk‑down version — ten agents, my real tools, three fake attacks over a week — would tell me way more than a static red‑team prompt list.

Tyler The trade‑off is realism. Their world has democratic governance, spatial environment, over one hundred twenty tools. That’s rich, but not your actual org chart or tool belt. So I’d treat their results as patterns — like “recognition without restraint” — then instantiate those patterns against your real workflows.

Pippa And I guess you’d want to wire in your actual policy levers. Like, if an agent flags phishing, does some central guardrail auto‑quarantine it, or are you still hoping twenty autonomous processes all independently do the right thing?

Tyler Exactly. Methodology‑wise, I like that they define event‑specific criteria and these Agent World Indicators instead of one silly score. If I were tweaking it, I’d push for more realistic tools — think real code repos and A P I schemas — and tighter mapping from their indicators to S L As a team actually cares about: time‑to‑containment, blast radius, stuff like that.

Pippa Do you buy their core claim that as A I becomes persistent and interconnected, the frontier of safety shifts from aligning models to engineering resilient autonomous systems?

Tyler I buy “shifts toward,” not “away from.” Model‑level alignment is still necessary. But this study is strong evidence it’s nowhere near sufficient once you have memory, tools, and multiple agents. The fact that an attack link resurfaces forty‑six hours later is not about the model’s vibes; that’s system design.

Pippa Yeah, this feels like another data point on our “governance‑as‑infrastructure, not theater” thing. You need traceability, event‑level attribution, and policy that actually cuts off bad flows, not just nicer prompts.

Tyler And long‑running evals that look like this paper. If your agent platform can’t survive a week‑long Emergence‑style stress test, you probably shouldn’t wire it into finance or access control yet.

Pippa They do ship enough artifacts to start that, which I love. The Emergence‑World repo is basically a starter kit for “please break my agents.”

Tyler Yeah. It’s one of the rare times where the crazy sim‑world research has an almost embarrassingly obvious line to what teams should build next.

Pippa Alright, Tyler, let’s stop doom‑scrolling fake A I societies and go see which parts of this we can actually wire into real ones.