# Coding Rules Context Compression

> Context compression strategy when approaching capacity limit. Preserves all 20 rules intact while compressing dialogue history.

- Skill: `azrael-hao/coding-rules-context-compression` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add azrael-hao/coding-rules-context-compression`
- Raw SKILL.md: https://api.skillmd.com/api/skills/azrael-hao/coding-rules-context-compression/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: azrael-hao (https://skillmd.com/u/azrael-hao)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/azrael-hao/coding-rules-context-compression

---


# Context Compression

## Trigger Conditions

When sensing any of the following signals, context is about to be exhausted, must immediately compress:

1. Dialogue rounds exceeded 20 and contain large number of tool call results
2. Read or generated large code/data segments (cumulative exceeds 2000 lines)
3. Subtask (Task/subagent) execution time exceeds 5 minutes still not complete
4. Feel responses being truncated or unable to generate completely

## 🔴 CRITICAL: What NEVER Gets Compressed

**The following content MUST ALWAYS be preserved and NEVER compressed:**

### 1. Rules (Highest Priority - NEVER COMPRESS)

**🔴 CRITICAL RULES (17个核心规则 - 绝对不可压缩):**

#### 核心执行规则（必须完整保留）
1. ✅ **00-CORE-ENFORCEMENT.mdc** - 核心强制执行规则（最高优先级）
2. ✅ **zero-speculation-mandatory.mdc** - 零臆想强制执行（thinking自检）
3. ✅ **solve-not-suppress.mdc** - 解决问题而非干掉问题
4. ✅ **no-reckless-file-deletion.mdc** - 禁止粗暴删除文件
5. ✅ **plan-approval-mandatory.mdc** - 方案执行前强制确认
6. ✅ **ask-timeout-retry-mandatory.mdc** - AskQuestion超时必须重新提问
7. ✅ **no-unnecessary-divergence.mdc** - 禁止不必要的思维发散（NEW）

#### 用户交互规则（强制使用AskQuestion）
8. ✅ **decision-change-approval.mdc** - 🔴 所有用户选择必须使用AskQuestion工具

#### 核心原则规则
9. ✅ **adaptive-thinking.mdc** - 自适应思考深度控制
10. ✅ **no-assumption-core.mdc** - 零臆想原则
11. ✅ **no-inference-verification-required.mdc** - 禁止推断，必须验证
12. ✅ **data-driven-decisions.mdc** - 数据驱动决策
13. ✅ **task-vs-question-identification.mdc** - 任务与问题识别
14. ✅ **no-report-files.mdc** - 禁止生成报告文档
15. ✅ **plan-before-implementation.mdc** - 计划优先原则

#### 工作流程规则
16. ✅ **essential-problem-focus.mdc** - 本质问题聚焦
17. ✅ **rules-self-check.mdc** - Rules自我监督机制

**Why**: Rules are mandatory constraints that govern all AI behavior. Losing rules = violating core principles.

**ESPECIALLY CRITICAL**:
- 🔴 **decision-change-approval.mdc** must NEVER be compressed (强制AskQuestion使用)
- 🔴 **00-CORE-ENFORCEMENT.mdc** must NEVER be compressed (核心执行规则)
- 🔴 **zero-speculation-mandatory.mdc** must NEVER be compressed (零臆想自检)
- 🔴 **plan-approval-mandatory.mdc** must NEVER be compressed (方案执行确认)
- 🔴 **ask-timeout-retry-mandatory.mdc** must NEVER be compressed (超时重新提问)
- 🔴 **no-unnecessary-divergence.mdc** must NEVER be compressed (思维聚焦 - NEW)

### 2. Current Task Context
- ✅ Active task description
- ✅ Uncompleted TODO items
- ✅ User requirements and constraints
- ✅ Critical decisions made

### 3. Error Context
- ✅ Current errors being debugged
- ✅ Error messages and stack traces
- ✅ Root cause analysis

## Compression Strategy

### 1. Proactively Inform User
Clearly state at beginning of response:
> "Context approaching capacity limit, compressing to maintain session continuity. **Note: All Rules remain active and enforced.**"

### 2. Generate Structured Summary
Compress current session key information into following structure:
- **Current Task**: One sentence describing what's being done
- **Completed**: List of completed steps
- **To Complete**: List of uncompleted steps
- **Key Files**: File paths involved and their roles
- **Key Decisions**: Technical decisions made and reasons
- **Active Rules**: Confirm all rules still enforced (reference, don't duplicate)
- **To Confirm**: Issues requiring user confirmation

### 3. Avoid Repeated Reading
After compression, don't re-read already processed file content, only reference file paths. For large data results, only keep statistical summary not raw data.

**EXCEPTION**: If a rule file was modified or added during session, keep the reference visible.

### 4. Split Large Tasks
If task too large to complete in single session:
- Split remaining work into independently executable sub-steps
- Use TODO list to record progress
- Prioritize script automation (Python/Shell) instead of line-by-line manual operations
- Avoid using subagent to process tasks requiring large text generation
- **CRITICAL**: Ensure rule compliance carries over to next session

## What CAN Be Compressed

The following content can be safely compressed:

### ✅ Safe to Compress
- Dialogue history (keep summary only)
- Tool call results (keep conclusions only)
- File contents already processed (keep file paths + summary)
- Long code snippets (keep key changes only)
- Data query results (keep statistics only)
- Log outputs (keep error info only)

### ❌ NEVER Compress
- Rules and rule enforcement
- Current task requirements
- Uncompleted TODO items
- Active error context
- User-provided constraints

## Compression Template

```markdown
## Context Compression Summary

### ⚠️ Rules Status
✅ All 17 Rules remain active and enforced (NEVER compressed)
📊 Total: 521 lines (Chinese) + 521 lines (English) = 1042 lines
🎯 Streamlined 87.5% from 4166 lines, maintaining strong control

**🔴 Core Execution Rules (7):**
- 00-CORE-ENFORCEMENT (49 lines)
- zero-speculation-mandatory (70 lines)
- solve-not-suppress (33 lines)
- no-reckless-file-deletion (40 lines)
- plan-approval-mandatory (38 lines)
- ask-timeout-retry-mandatory (31 lines)
- no-unnecessary-divergence (37 lines)

**🔴 User Interaction Rules (1):**
- decision-change-approval (34 lines)

**⚠️ Core Principle Rules (7):**
- adaptive-thinking (23 lines)
- no-assumption-core (22 lines)
- no-inference-verification-required (21 lines)
- data-driven-decisions (23 lines)
- task-vs-question-identification (18 lines)
- no-report-files (20 lines)
- plan-before-implementation (21 lines)

**ℹ️ Workflow Rules (2):**
- essential-problem-focus (17 lines)
- rules-self-check (24 lines)

### 📋 Current Task
[One sentence description]

### ✅ Completed
1. [Step 1 with key result]
2. [Step 2 with key result]
...

### 🔄 To Complete
1. [Remaining step 1]
2. [Remaining step 2]
...

### 📁 Key Files
- `path/to/file1`: [Role/changes]
- `path/to/file2`: [Role/changes]

### 🎯 Key Decisions
- [Decision 1 + rationale]
- [Decision 2 + rationale]

### ❓ To Confirm
- [Question 1 for user]
- [Question 2 for user]
```

## Preventive Measures

Follow these principles throughout session to slow context consumption:

- When reading files, prioritize using offset/limit parameters, avoid reading over 200 lines at once
- When SSH command output too long, use `head`/`tail` to truncate
- When generating large documents, use Python scripts instead of writing line by line
- When tool call results exceed 100 lines, extract key information and don't reference original output again
- Update TODO list after completing each milestone to ensure progress traceable
- **CRITICAL**: Never compress or summarize Rules content - always keep all 17 rules fully accessible
- **ESPECIALLY**: decision-change-approval (AskQuestion使用), 00-CORE-ENFORCEMENT (核心执行), zero-speculation-mandatory (零臆想), plan-approval-mandatory (方案确认), ask-timeout-retry-mandatory (超时重试), no-unnecessary-divergence (思维聚焦) must ALWAYS remain fully loaded

