unclecode/toolshrink

unclecode★ 3TypeScriptLast synced: 2026-08-17

Open on GitHub

Cut large agent tool output by what it means, not by where it was cut. 9 content-aware reducers + DeepSeek Harness plugin.

README excerpt

toolshrink Cut large agent tool output by what it means, not by where it was cut. I use Claude Code every day, and I always wanted to intervene in how it manages context. In the early days you could edit the session JSONL directly. Then that door closed. When DeepSeek open-sourced Harness, where everything is a plugin, I looked inside. Tool output there is cut by size: keep the head, keep the tail, drop the middle. I read Codex and pi, and they do the same. None of them look at what the text contains. That fails in a predictable way. Your test suite prints 5,000 passing lines and 3 failures in the middle. A size cut keeps the passes and throws away the failures. The model reads it, believes the run, and answers wrong. So I built the shrinker I always wished Claude Code had. It reads the output first, recognizes its shape, and keeps the part that carries the information: Everything removed is counted in a marker the model can read, and the complete original is saved to disk with a locator. Nothing is lost silently. The cuts Each cut recognizes one shape of text. The first one that recognizes the input runs. When none does, the size fallback runs, so the result always fits the budget…

View full README on GitHub →
Agentsai-agentsclaude-codecontext-engineeringdeepseek-harnessdeveloper-toolsdsh-pluginllmagent

Category