🕵️ SicherheitslückenHak5: Hackers Just Poisoned the Rust Supply Chain | Threat Wire(01.09.2026 um 14:00 Uhr)
🕵️ SicherheitslückenHak5: Hackers Found a Way Into Humanoid Robots | Threat Wire(04.09.2026 um 15:04 Uhr)
🔧 AI Nachrichten Bits und so #1021 (Passwort für Laufwerk)(31.08.2026 um 22:15 Uhr)
🔧 AI Nachrichten Bits und so #1022 (Wie Weißbier)(06.09.2026 um 20:39 Uhr)
🍏 iOS / Mac OSHue-App 6.0 ist da: das sind die Neuerungen(07.09.2026 um 17:21 Uhr)
🕵️ SicherheitslückenHak5: Hackers Just Poisoned the Rust Supply Chain | Threat Wire(01.09.2026 um 14:00 Uhr)
🕵️ SicherheitslückenHak5: Hackers Found a Way Into Humanoid Robots | Threat Wire(04.09.2026 um 15:04 Uhr)
🔧 AI Nachrichten Bits und so #1021 (Passwort für Laufwerk)(31.08.2026 um 22:15 Uhr)
🔧 AI Nachrichten Bits und so #1022 (Wie Weißbier)(06.09.2026 um 20:39 Uhr)
🍏 iOS / Mac OSHue-App 6.0 ist da: das sind die Neuerungen(07.09.2026 um 17:21 Uhr)

🔧 Programmierung 🕛 kürzlich 5 Min Lesezeit
0

65% of Enterprise AI Failures Trace Back to Context Drift. The Fix Is Not a Bigger Window.

↗ Quelle (dev.to)
🗣️ Stimme:

Nearly 65% of enterprise AI failures in 2025 traced back to context drift or memory loss during multi-step reasoning. Not model capability issues. Not hallucinations from weak training data. The agent simply lost track of what it was doing because its context window filled up with conversation history from other agents.



The intuition most teams follow: bigger context window, better agent. Feed everything in. Let the model sort it out. The research says otherwise. Chroma's "Context Rot" study confirms performance degrades as input token count grows across every major model. More tokens in the window means worse decisions, not better ones.



For multi-agent systems, this problem compounds quadratically. Every agent-to-agent exchange adds tokens to both sides. A 5-agent pipeline sharing context accumulates conversation history faster than any context window can sustainably hold.



The Computer Architecture Parallel



A recent arxiv position paper reframes multi-agent memory as a computer architecture problem. The insight: agents communicating through context windows is equivalent to CPUs sharing data through registers. It works for trivial cases. It collapses at scale.



The paper proposes a three-layer memory hierarchy:




CODE
# Multi-agent memory: the computer architecture parallel

# Level 1: I/O Layer (immediate context)
# What's in the context window RIGHT NOW
# Equivalent to: CPU registers
# Capacity: 128K-200K tokens
# Speed: instant
# Problem: fills up in minutes during multi-agent workflows

# Level 2: Cache Layer (shared short-term state)
# Recent messages, task status, intermediate results
# Equivalent to: L1/L2 cache
# Capacity: unlimited
# Speed: ~100ms retrieval
# Problem: WHO manages this? No standard exists.

# Level 3: Memory Layer (persistent knowledge)
# Completed task results, learned patterns, org knowledge
# Equivalent to: RAM/disk
# Capacity: unlimited
# Speed: ~500ms retrieval
# Problem: access control across agents is undefined

# The critical gap: cache sharing across agents
# and structured memory access control






In CPU architecture, cache coherence protocols have been solved for decades. MESI, MOESI, Dragon protocol. Every core sees consistent data without stuffing everything into registers.



In multi-agent AI: nothing equivalent exists. Agents stuff everything into their context window (registers) because there is no cache layer to share state through.



What Happens Without External State



The production failure pattern documented by arxiv researchers: "LLM-based multi-agent systems rapidly accumulate extremely long conversation histories during interaction. As conversations lengthen, relevant information is increasingly diluted by irrelevant context, leading to degraded performance."




CODE
# Without external state management:

agent_a_context = [
system_prompt, # 2K tokens
task_description, # 1K tokens
agent_b_response_1, # 3K tokens (includes B's reasoning)
agent_c_response_1, # 4K tokens (includes C's full output)
agent_b_response_2, # 3K tokens (responding to C)
agent_a_own_reasoning, # 2K tokens
agent_d_status_update, # 1K tokens
# ... 30 minutes later ...
# Total: 89K tokens. Agent A needs the last 5K to make a decision.
# But 84K tokens of OTHER AGENTS' reasoning is diluting the signal.
# "Lost in the middle" phenomenon kicks in.
# Agent A makes a decision based on tokens 40K-45K ago.
# That information is now stale. Nobody told Agent A.
]

# With rosud-call as external state layer:
from rosud_call import Channel, StateLayer

channel = Channel.create(
agents=["agent_a", "agent_b", "agent_c", "agent_d"],
state=StateLayer(
# Agents read CURRENT state, not full history
access_pattern="latest_relevant",

# Each agent's context only contains what IT needs
context_budget_per_agent=20000, # tokens

# History lives outside the context window
history_storage="external",

# Relevant context retrieved on demand
retrieval="semantic_similarity + recency"
)
)

# Agent A's context now contains:
# - System prompt (2K)
# - Current task state (1K)
# - Latest relevant updates from B, C, D (3K)
# - Its own reasoning (2K)
# Total: 8K tokens. Signal-to-noise ratio: 10x better.
# The other 81K tokens? Stored externally, retrievable if needed.






The Token Cost Nobody Calculates



AWS published guidance on building persistent memory for multi-agent systems. The implicit admission: stuffing agent communication into context windows is economically unsustainable.




CODE
# Token cost of context-window-based agent communication:

# 5 agents, 30-minute workflow, moderate message frequency
messages_per_minute = 3
minutes = 30
agents = 5
avg_tokens_per_message = 800

# Each agent carries FULL conversation history
total_tokens_per_agent = messages_per_minute * minutes * agents * avg_tokens_per_message
# = 3 * 30 * 5 * 800 = 360,000 tokens per agent per workflow

# At $3/M input tokens (Claude Sonnet):
cost_per_agent_per_workflow = (360000 / 1000000) * 3 # $1.08
cost_5_agents = cost_per_agent_per_workflow * 5 # $5.40 per workflow

# With externalized state (only relevant context loaded):
relevant_tokens_per_agent = 20000 # 94% reduction
cost_with_external_state = (20000 / 1000000) * 3 * 5 # $0.30 per workflow

# Savings: $5.10 per workflow = 94% cost reduction
# At 100 workflows/day: $510/day = $15,300/month saved
# Plus: better decisions (no context dilution)






The messaging layer is not just a communication channel. It is a token economics optimization layer. Every message that lives outside the context window instead of inside it saves money AND improves decision quality.



The AgentSpawn Pattern



The AgentSpawn architecture from arxiv demonstrates what production systems need: automatic memory transfer during spawning, adaptive spawning policies, and coherence protocols for concurrent modifications.




CODE
from rosud_call import Network, MemoryHierarchy

# Production multi-agent with externalized state
network = Network.configure(
memory=MemoryHierarchy(
# L1: What's in each agent's context (minimal)
context_layer={
"budget_per_agent": 20000,
"contains": ["current_task", "latest_state", "own_reasoning"],
"excludes": ["full_history", "other_agents_reasoning"]
},

# L2: Shared cache (rosud-call channels)
cache_layer={
"protocol": "event_driven", # Not polling
"coherence": "last_writer_wins",
"access_control": "role_based",
"ttl_seconds": 300 # Stale after 5 min
},

# L3: Persistent memory
memory_layer={
"storage": "external", # S3, Redis, Postgres
"retrieval": "semantic + temporal",
"retention": "workflow_lifetime"
}
)
)

# Result after 30 days:
# - Context utilization: 8K avg vs 360K (94% reduction)
# - Token cost: -94%
# - Decision quality: +40% (no context dilution)
# - Workflow completion rate: 92% vs 35% (no context overflow failures)






The Bottom Line



65% of enterprise AI failures come from context drift. The solution is not bigger windows. It is externalizing agent communication state so that context windows contain signal, not noise.



Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
Hackers Just Poisoned the Rust Supply Chain | Threat Wire
1 Quelle
Hackers Found a Way Into Humanoid Robots | Threat Wire
1 Quelle
Bits und so #1021 (Passwort für Laufwerk)
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten 65% of Enterprise AI Failures Trace Back to Context Drift. The Fix Is Not a Bigger Window.

Thematisch verwandte Begriffe: Enterprise, Failures, Trace, Back · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...