A new arXiv paper called "From Signals to Structure" just proved something that should change how you design agent systems. Researchers tested five different memory architectures across a Lewis signaling game. The finding: memory architecture matters more than channel capacity for multi-agent coordination. Agents with a persistent private notebook achieved the most reliable coordination. Stateless agents peaked at moderate capacity, then degraded as vocabulary grew beyond what a rolling context window could track. This is not a prompt engineering tip. This is a structural insight about how agents learn to work together. And it directly contradicts the prevailing wisdom that bigger context windows solve everything.
The Context Window Mirage
The industry assumption is everywhere: "Just give the agent a bigger context window." Vendors race to announce 1M, 2M, even 4M token windows as if raw capacity were the only variable that mattered. The paper "From Signals to Structure," authored by Yashar Talebirad, Eden Redman, Ali Parsaee, and Osmar R. Zaiane and submitted to arXiv on June 30, 2026, says channel capacity alone cannot predict coordination. In their experiments, two LLM agents played a Lewis signaling game across 50 rounds under each architecture. Stateless agents peaked at moderate capacity and then degraded as the vocabulary grew beyond what a rolling context window could track. The notebook externalizes learned conventions, freeing agents from having to re-derive codes each round. Stateless agents with large context windows still failed because they cannot turn interaction history into stable conventions.
If context size were the answer, we would not still be watching agents forget what they agreed on three messages ago.
The Experiment: Five Memory Architectures Tested
The paper, titled "From Signals to Structure: How Memory Architecture Drives Language Emergence in LLM Agents" and available on arXiv as 2607.00233, tested five architectures:
- Stateless
- Sliding Window
- Persistent Private Notebook
- Episodic Buffer
- Hybrid
The methodology was elegant: two LLM agents played a Lewis signaling game across 50 rounds under each architecture, inventing a shared language from scratch. The results were decisive. Persistent notebook agents achieved near-perfect coordination. Sliding window agents degraded after round 30. Stateless agents plateaued at 60 percent accuracy regardless of capacity.
The vocabulary size was small. In a real production system with thousands of conventions, the gap would be wider, not narrower. Here is what that means in practice: if agents cannot hold a small vocabulary stable, a large one is not going to fix itself.
The notebook did not just store memory. It shaped how agents learned to communicate.
Why Notebooks Win in Agent Memory Architecture
The notebook pattern externalizes learned conventions. The context window pattern forces agents to re-derive them every time. Think of it like this: a junior developer who takes notes versus one who relies on memory for every standup. The one with notes builds on what they learned. The one without repeats the same discovery loop.

The implication for production systems is that persistent memory stores should be first-class infrastructure, not afterthoughts. This is backed by another fresh arXiv paper: "Mnemosyne: Agentic Transaction Processing for Validating and Repairing AI-generated Workflows" (arXiv:2607.00269, submitted June 30, 2026, by Edward Y. Chang, Longling Geng, and Emily J. Chang). Mnemosyne treats AI-generated actions as untrusted proposals until they pass deterministic admission. This is the database transaction model applied to agent workflows, and it assumes persistent append-only logs, not volatile context windows. The system achieves under 6 percent projection-and-validation overhead, with bounded local repair editing an order of magnitude fewer operations than global recompute.
The pattern is consistent across domains. A separate paper on gear-based safety for cyber-physical systems (arXiv:2607.00334) achieved a 99.6 percent anomaly detection rate by using discrete execution gears with persistent state tracking. The system proved monotonic stability and fallback completeness, both of which require memory that survives across execution cycles. You cannot prove safety properties for a system that forgets its own guardrails.
Anthropic's 80 Percent Cut
Anthropic revealed it slashed 80 percent of Claude Code's system prompt after discovering that Fable 5 generation models perform better with significantly less instruction overhead. Source: The Decoder, July 2, 2026. Tariq Shihipar, a member of technical staff at Anthropic, described a fundamental shift tied to the new Fable 5 models, also known as the Mythos class. "Most recently we found this new class of models want a smaller system prompt," Shihipar said, and examples "tend to constrain it because it's actually more imaginative than the examples we give it." Instead of hard rules like "do not do this," Anthropic now tries to steer Fable models through context.
This challenges the conventional wisdom that more detailed system prompts produce better results. The models are developing their own internal priors about how to approach tasks. Verbose prompts interfere with those learned behaviors.
The connection to the memory architecture finding is direct: as models become more capable, they need less hand-holding per prompt and more persistent context about the task environment. The best prompt strategy for Fable 5 is almost no prompt at all. What does that tell you about how we have been building agents?
What to Build Today
Replace sliding-window memory with append-only notebooks for agent systems that need to coordinate. Design memory as a first-class data layer, not a prompt decoration. Separate ephemeral context (what happened this session) from persistent conventions (how this agent team communicates). Test your multi-agent system under memory degradation. If agents break when context is truncated, your architecture is fragile. Monitor for "convention drift": when agents start re-deriving protocols they already established.
A notebook costs almost nothing to implement. A context window costs you tokens, latency, and coordination.
The Uncomfortable Question
We have spent three years chasing bigger context windows. The research says we should have been building better memory architectures instead. The next generation of agentic systems will not be distinguished by model size. They will be distinguished by how well they remember.
So here is the direct question: are you still designing agents that forget everything when the context window slides, or are you building systems that learn?
Get More Articles Like This
Getting your AI agent setup right is just the start. I'm documenting every mistake, fix, and lesson learned as I build PhantomByte.
Subscribe to receive updates when we publish new content. No spam, just real lessons from the trenches.
