unpopular opinion: cursor and claude code arent getting dumber, their agent loops are structurally blind and suffocating your context window
Summary
The author argues that coding agents like Cursor and Claude Code aren't getting dumber but suffer from structurally blind agent loops that bloat context windows with redundant file reads and tool outputs, degrading reasoning and causing architectural damage. They call for open-source agents that parse code into ASTs or graph databases for efficient understanding.
Similar Articles
@mvanhorn: https://x.com/mvanhorn/status/2070966613994795489
The author argues that AI agent memory bloat degrades performance, and recommends keeping memory and CLAUDE.md files under 200 lines, using on-demand retrieval instead of loading everything into context.
Why is every agent ever made just a worse Claude Code?
A developer questions the value of building specialized AI agents when general-purpose tools like Claude Code can accomplish the same tasks, suggesting that current agentic approaches are just less capable versions of Claude with extra guardrails.
@dair_ai: If you maintain an AGENTS.md or a CLAUDE.md, this is worth a read. (bookmark it) 288 gold-test evaluated runs across Cl…
This paper presents a controlled ablation study across Claude Code and Codex, 17 real tasks, and 288 runs, finding that context files like AGENTS.md/CLAUDE.md do not measurably improve correctness; agents fail on implementation skill, not missing repository knowledge.
Codegraphs are solving the wrong problem for coding agents.
The article argues that codegraphs address the wrong aspects for improving AI coding agents, suggesting a misdirection in current development efforts.
How I stopped context window bloat in continuous Anthropic agent loops (Opus + Sonnet architecture)
A developer shares an architectural pattern to manage context window bloat in continuous Anthropic agent loops, using KV caching, dynamic tool schema loading, and decoupling executor/advisor roles with Claude 3.5 Sonnet and Claude 3 Opus.