Issue 012 organizations name it2026 evidence
Context is a finite budget, and long-running agents spend it without anyone watching
Every turn re-sends accumulated history. Cost grows with conversation length rather than with work done, and behaviour degrades as the window fills rather than failing cleanly.
How to fix it — 2 approaches, 5 steps
Set a context and turn budget per run
Cap the turns and the context an agent may consume in a single run, and make exceeding it a handled outcome rather than a surprise.
Done when Every production agent has explicit per-run limits on turns, context size and tool calls, a defined behaviour at the limit, and an alert on runs that hit the ceiling with the rate tracked over time.
- Set explicit per-run limits on turns, context size and tool calls for every production agent.
- Define what happens at the limit: summarise and continue, escalate, or stop.
- Alert on runs that hit the ceiling, and treat a rising rate as a design signal.
Compress on purpose rather than by truncation
Decide what survives a long run. Left alone, the system will drop whatever happens to be oldest, which is not the same as what matters least.
Done when What must persist across a long-running task is defined and stored outside the context window, and summarisation happens at named checkpoints rather than by whatever truncation drops first.
- Define what must persist across a long-running task and store it outside the context window.
- Summarise deliberately at checkpoints instead of relying on truncation.
The evidence — 4 documents
| Organization | Document | Position |
|---|---|---|
| AnthropicFrontier lab | Building multi-agent researchOur reading Describes subagents operating in parallel with their own context windows and condensing the most important tokens back to a lead agent, which is a context management strategy as much as a capability one.Subagents and context compression | names it |
| InfosysConsultancy · June 2026 | AI token economics for executivesOur reading Frames architectural decisions - how calls are routed and how retrieval is governed - rather than unit price as the determinant of spend.Token economics for executives | names it |
| DeloitteConsultancy | Navigating AI spend dynamicsOur reading Proposes context window limits and API usage caps alongside budget alerts as the practical control on runaway consumption.Guardrails: context window limits and usage caps | proposes a fix |
| UberEnterprise | Uber - Journey to Generative AIOur reading Proposes codifying the operational disciplines into the platform so they apply uniformly rather than per project.Platform-level practice | proposes a fix |