Przemek Mroczek’s skepticism of RTK lands on the one thing most “token savings” tools dodge: the only metric that matters for an agent is whether it still finished the task.

RTK compresses terminal output before it reaches the LLM, and the headline “60-90% savings” has earned it 60k GitHub stars. But that number is the percentage of stdout stripped, not the drop in your actual API bill — and stdout is rarely where the tokens live. In every agent loop I’ve profiled, the weight sits in file reads, repo context, system prompts, and the model’s own reasoning tokens. Trimming bash output optimizes the cheap part.

This is the LLM-ops lesson that keeps repeating: cost and accuracy are a joint optimization, and any layer that improves one while hiding its effect on the other is a liability you debug at 2am. The HN discussion splits on whether lossy context compression can ever be safe inside a synchronous agent path.

My bet: the durable version of this isn’t a stdout scrubber but structured, model-native tool output — and the CLIs themselves end up owning it. Would you let a lossy compressor sit in the critical path between your agent and your shell without a task-success eval gating it?