Long-Context Isn't the Answer
01:00 · March 23, 2026 · HumanLayer Blog

Summary
The article examines why simply enlarging an LLM’s context window often fails to improve performance on complex tasks. In practice, Anthropic’s switch to a 1-million-token Opus 4.6 model produced noticeably weaker instruction adherence, even at token counts well below the previous 200 k limit. The model began to overlook design documents, misinterpret straightforward directives, and occasionally ignore them outright.
The root cause lies in the separation between context length and what the authors term the model’s “instruction budget.” Extending the context window is typically achieved through positional scaling methods such as YaRN rather than by increasing parameter count. Because instruction-following capacity scales primarily with model size and the quality of instruction tuning, the budget remains fixed while the volume of surrounding tokens grows. The result is a larger haystack in which the critical instructions become proportionally harder to locate.
The authors therefore advocate stricter context-management practices. Sub-agents are used to isolate subtasks so that only concise, relevant summaries return to the main context. This approach prevents the accumulation of intermediate tool outputs and stale documents that otherwise dilute attention. In their tooling they have also lowered the warning threshold for long-context models to 100 k tokens, encouraging earlier compaction or delegation rather than continued accumulation.
Taken together, the observations suggest that architectural techniques for context isolation remain more effective than raw window size for maintaining reliable agent behavior on large codebases.
Why it matters
It provides actionable insights for ML Engineers on managing LLM context windows in production, highlighting the hidden costs of long-context models. The proposed architectural solutions, like sub-agent orchestration, are highly relevant for Dutch enterprises building reliable and efficient AI systems.





