Are bigger context windows actually the wrong direction for agents?

Reddit r/AI_Agents News

Summary

The author questions whether the focus on expanding context windows for AI agents is counterproductive, arguing that accumulated junk slows down long sessions and suggests keeping working context small with external memory.

I've been building a coding agent for a few months, and I keep coming back to the same weird thought. What if we're solving the wrong problem with agent memory? A lot of the effort seems to go into making context windows bigger. More history, more summaries, more replay, more stuff in the prompt. And to be clear, bigger context is useful. But every long-running agent I've worked on eventually starts dragging around junk too. Old debugging attempts, plans that were abandoned hours ago, assumptions that stopped being true, random conversation that no longer matters. At some point it feels less like memory and more like clutter. So lately I've been wondering if the better approach is almost the opposite. Keep the working context small, store memory somewhere else, and only pull in what the agent actually needs right now. Basically treat the model like it's stateless, because it is. Maybe I'm missing something obvious, but my gut says some long-session failures come from accumulated junk, not from lack of context. For people who run agents for hundreds or thousands of turns, where do you think this idea falls apart? What's the first thing that breaks?
Original Article

Similar Articles

I think long context agents are failing in a very boring way

Reddit r/artificial

An opinion piece arguing that long context windows don't equate to memory and that agent failures are often mundane, like forgetting constraints or rereading files, emphasizing that reliability depends on context architecture decisions.

Don't trust large context windows

Hacker News Top

An analysis of why advertised large context windows for LLMs are misleading, as effective attention drops off around 100k tokens, and practical advice for developers to keep sessions in the 'smart zone' by using artifacts and handoffs.

Bigger context windows aren't solving the enterprise memory problem. Here's why

Reddit r/ArtificialInteligence

This article critiques the trend of ever-larger context windows in LLMs, arguing they don't solve enterprise knowledge problems due to retrieval degradation, data volume, and lack of structure. It advocates for knowledge modeling layers that map relationships and intent before retrieval.