Discussion about this post

User's avatar
JP's avatar

Compression degrading performance is the key insight here. Most context management approaches just throw data away. I've been using something that indexes tool output into a local FTS5 search engine instead. Full data stays searchable but only a summary enters the context window. Similar idea to delta updates but applied at the tool output level. Wrote about it: https://reading.sh/how-one-plugin-cuts-claude-codes-context-bloat-by-98-096355e68166?sk=e06168222a38a98d4bf6add2daa10973

Pawel Jozefiak's avatar

Context engineering is the unglamorous work that makes agents actually useful. I run an autonomous agent with a three-tier memory system - short-term (session), medium-term (weekly rollover), and long-term (permanent index). Without it, the agent forgets critical context between sessions.

The 'playbooks through incremental updates' approach matches what I built. My agent maintains its own memory files and updates them after every session. Outgrew a spreadsheet, then a flat file, then I had to build a native dashboard. https://thoughts.jock.pl/p/wiz-1-5-ai-agent-dashboard-native-app-2026

Context collapse is real. Seen it kill entire workflows.

No posts

Ready for more?