What problem does it solve? Long coding sessions exhaust the LLM context window because full files are repeatedly loaded and kept in memory, degrading performance and increasing token costs. ## Core Features & Use Cases - Five Compression Strategies: Summary, Outline, Diff-Only, Reference, and Progressive Disclosure modes for representing files at different fidelity levels. - Automatic Compression Triggers: Threshold-based rules that compress context at 50% and 70% token budget usage or when switching tasks. - Decompression Protocol: A controlled process for reloading only the specific sections needed, then re-compressing afterward. - Use Case: While debugging a large codebase, an agent summarizes each file after understanding it, tracks files in a reference table, and reloads only the relevant function when a bug appears instead of re-reading entire files. ## Quick Start Ask the agent to apply context compression strategies to summarize the files it has already read and track them in a reference table.