← スキル一覧に戻る

checkpoint
by RustyLindquist
An AI-Enhanced Online Academy for HR
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: checkpoint description: Save mid-session state for recovery without clearing context. Use after major milestones, before risky operations, or periodically during long sessions. allowed-tools: Read, Write
Checkpoint
Save session state at key points to enable recovery without losing progress. Unlike /compact (clears context), checkpoint preserves everything.
When to Use
- After completing significant work
- Before attempting something risky
- Every 30-45 minutes in long sessions
- Before spawning multiple parallel agents
- When user takes a break
Checkpoint Types
| Type | Trigger | Depth |
|---|---|---|
| Milestone | Major work completed | Full |
| Periodic | Time-based (30-45 min) | Standard |
| Pre-risk | About to try uncertain operation | Full + rollback plan |
| Quick | User stepping away | Minimal |
What Gets Saved
- Current objective and task in progress
- Position in workflow (which steps complete)
- Files changed and decisions made
- Active agents and pending results
- Docs loaded and key facts established
Process
- Determine checkpoint type (milestone/periodic/pre-risk/quick)
- Write to
.context/checkpoints/checkpoint-[timestamp].md - Update
.context/checkpoints/INDEX.md - Confirm to user and continue work
Output Location
.context/checkpoints/checkpoint-[timestamp].md
Quick Checkpoint
For rapid saves:
# Quick Checkpoint - [timestamp]
**Task**: [current]
**Position**: [where]
**Next**: [next action]
**Files**: [changed]
Comparison
| Skill | When | Context | Purpose |
|---|---|---|---|
| /checkpoint | Mid-session | Preserved | Recovery point |
| /compact | Context saturated | Cleared | Continue working |
| /handoff | Session ending | N/A | Pass to next session |
Related
- Full checkpoint template: See reference/full-template.md
- Pre-risk template: See reference/pre-risk-template.md
- Recovery instructions: See reference/recovery.md
- To resume:
/session-start --checkpoint [timestamp]
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です