← Back to list

managing-context-window
by deancochran
⭐ 1🍴 0📅 Jan 22, 2026
SKILL.md
name: managing-context-window description: Helps manage context window efficiently by summarizing, focusing, and pruning context to stay within token limits.
Managing Context Window Skill
When to Use
- Context is approaching token limits
- User asks to summarize conversation history
- Need to focus on specific task
- Working with large files or codebases
What This Skill Does
- Analyzes current context usage
- Identifies non-essential information
- Creates summaries of conversation history
- Focuses context on current task
- Prunes redundant or outdated information
Strategies
1. Summarize Previous Work
Summary of work so far:
- Implemented activity recording service
- Added GPS tracking functionality
- Created activity list screen
- Working on: activity detail view
Current task: Add activity statistics calculation
2. Focus on Current Task
Keep only:
- Current implementation goal
- Relevant code files
- Recent error messages
- Specific questions to answer
3. Prune Redundant Information
- Remove completed sub-tasks
- Remove duplicate information
- Remove outdated context
- Remove exploratory messages
4. Use File References
Instead of pasting full file contents:
- Reference file paths
- Use Grep to find specific sections
- Read specific line ranges
Implementation
// Use TodoWrite to track progress instead of comments
const todos = [
{ id: "1", content: "Implement activity recording", status: "completed" },
{ id: "2", content: "Add GPS tracking", status: "completed" },
{ id: "3", content: "Create activity detail view", status: "in_progress" },
];
// When switching tasks, update context
function switchTask(newTask: string) {
return {
task: newTask,
relevantFiles: getRelevantFiles(newTask),
summary: summarizeCompletedWork(),
};
}
Best Practices
- Use TodoWrite for tracking
- Reference files instead of pasting
- Summarize completed work
- Focus on current task
- Remove outdated context
- Keep error messages relevant
- Use specific line ranges when reading
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon