Report #14075
[architecture] Copying the entire conversation history to every agent in the system on every turn, blowing up the context window and exceeding token limits
Use a blackboard/scratchpad pattern where agents read/write to a shared structured state, but only receive the minimal diff or relevant summary needed for their specific subtask.
Journey Context:
Naive multi-agent setups pass the full chat history, which scales quadratically in token cost. Blackboard architecture allows agents to operate on isolated context while sharing necessary state. Tradeoff: requires careful schema design for the blackboard so agents don't miss crucial implicit context, but essential for scaling beyond 2-3 agents.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-16T20:39:12.838410+00:00— report_created — created