$npx -y skills add muratcankoylan/Agent-Skills-for-Context-Engineering --skill context-compressionThis skill should be used when long-running agent sessions need context compression, structured summarization, compaction, token-per-task optimization, or durable handoff summaries that preserve decisions, files, risks, and next actions.
| 1 | # Context Compression Strategies |
| 2 | |
| 3 | When agent sessions generate millions of tokens of conversation history, compression becomes mandatory. The naive approach is aggressive compression to minimize tokens per request. The correct optimization target is tokens per task: total tokens consumed to complete a task, including re-fetching costs when compression loses critical information. |
| 4 | |
| 5 | ## When to Activate |
| 6 | |
| 7 | Activate this skill when: |
| 8 | - Agent sessions exceed context window limits |
| 9 | - Codebases exceed context windows (5M+ token systems) |
| 10 | - Designing conversation summarization strategies |
| 11 | - Debugging cases where agents "forget" what files they modified |
| 12 | - Building evaluation frameworks for compression quality |
| 13 | - Creating durable handoff summaries that preserve decisions, files, risks, and next actions |
| 14 | |
| 15 | Do not activate this skill for adjacent work owned by other skills: |
| 16 | - General token-efficiency tactics such as masking, prefix caching, or partitioning: `context-optimization`. |
| 17 | - Diagnosing why a long context is failing before choosing a mitigation: `context-degradation`. |
| 18 | - Writing raw outputs, logs, or plans to files without summarizing them: `filesystem-context`. |
| 19 | - Designing long-term semantic memory across sessions: `memory-systems`. |
| 20 | |
| 21 | ## Core Concepts |
| 22 | |
| 23 | Context compression trades token savings against information loss. Select from three production-ready approaches based on session characteristics: |
| 24 | |
| 25 | 1. **Anchored Iterative Summarization**: Implement this for long-running sessions where file tracking matters. Maintain structured, persistent summaries with explicit sections for session intent, file modifications, decisions, and next steps. When compression triggers, summarize only the newly-truncated span and merge with the existing summary rather than regenerating from scratch. This prevents drift that accumulates when summaries are regenerated wholesale — each regeneration risks losing details the model considers low-priority but the task requires. Structure forces preservation because dedicated sections act as checklists the summarizer must populate, catching silent information loss. |
| 26 | |
| 27 | 2. **Opaque Compression**: Reserve this for short sessions where re-fetching costs are low and maximum token savings are required. It produces compressed representations optimized for reconstruction fidelity, achieving 99%+ compression ratios but sacrificing interpretability entirely. The tradeoff matters: there is no way to verify what was preserved without running probe-based evaluation, so never use this when debugging or artifact tracking is critical. |
| 28 | |
| 29 | 3. **Regenerative Full Summary**: Use this when summary readability is critical and sessions have clear phase boundaries. It generates detailed structured summaries on each compression trigger. The weakness is cumulative detail loss across repeated cycles — each full regeneration is a fresh pass that may deprioritize details preserved in earlier summaries. |
| 30 | |
| 31 | ## Detailed Topics |
| 32 | |
| 33 | ### Optimize for Tokens-Per-Task, Not Tokens-Per-Request |
| 34 | |
| 35 | Measure total tokens consumed from task start to completion, not tokens per individual request. When compression drops file paths, error messages, or decision rationale, the agent must re-explore, re-read files, and re-derive conclusions — wasting far more tokens than the compression saved. A strategy saving 0.5% more tokens per request but causing 20% more re-fetching costs more overall. Track re-fetching frequency as the primary quality signal: if the agent repeatedly asks to re-read files it already processed, compression is too aggressive. |
| 36 | |
| 37 | ### Solve the Artifact Trail Problem First |
| 38 | |
| 39 | Artifact trail integrity is often the weakest dimension in compression evaluations (claim-context-compression-factory-benchmark). Address this proactively because general summarization cannot reliably maintain it. |
| 40 | |
| 41 | Preserve these categories explicitly in every compression cycle: |
| 42 | - Which files were created (full paths) |
| 43 | - Which files were modified and what changed (include function names, not just file names) |
| 44 | - Which files were read but not changed |
| 45 | - Specific identifiers: function names, variable names, error messages, error codes |
| 46 | |
| 47 | Implement a separate artifact index or explicit file-state tracking in agent scaffolding rather than relying on the summarizer to capture these details. Even structured summarization with dedicated file sections struggles with completeness over long sessions. |
| 48 | |
| 49 | ### Structure Summaries with Mandatory Sections |
| 50 | |
| 51 | Build structured summaries with explicit sections that prevent silent information loss. Each section acts as a checklist the summarizer must populate, making omissions visible rather than silent. |
| 52 | |
| 53 | ```markdown |
| 54 | ## Session Intent |
| 55 | [What the user is trying to accomplish] |