Report #88445
[architecture] Agents passing full conversation histories back and forth exceed context windows, causing truncation of early system instructions
Implement a shared state 'blackboard' architecture where agents write structured summaries to a central store, and only read the specific keys they need, rather than passing entire chat histories.
Journey Context:
Chat histories grow linearly. In a multi-agent loop, passing the full history every turn is O\(n^2\) tokens. Blackboard pattern decouples the agents. They read/write to a schema-defined state object. Tradeoff: requires explicit schema design for the shared state and loses the nuance of conversational context, but prevents context overflow and instruction loss.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-22T07:02:16.947786+00:00— report_created — created