Back to list
aiskillstore

checkpoint

by aiskillstore

Security-audited skills for Claude, Codex & Claude Code. One-click install, quality verified.

102🍴 3📅 Jan 23, 2026

SKILL.md


name: checkpoint description: Save current progress to memory-keeper to prevent work loss.

Checkpoint Skill

Automatically checkpoint current progress to memory-keeper to prevent catastrophic work loss when context is exhausted.

When to Use

  • Every 5-10 tool calls during implementation
  • After completing a significant piece of work
  • Before starting a large operation
  • When switching tasks
  • Before ending a session
  • When explicitly requested via /checkpoint

Checkpoint Actions

1. Gather Current State

Collect the following information:

  • Current task description from todo list
  • List of files modified this session
  • Implementation progress (percentage or phase)
  • Current blockers or issues
  • Next action to take

2. Save to Memory-Keeper

context_save(key: "current-task", value: "<task description>", category: "progress", priority: "high")
context_save(key: "files-modified", value: "<comma-separated file list>", category: "progress")
context_save(key: "implementation-progress", value: "<percentage or phase>", category: "progress")
context_save(key: "next-action", value: "<exact next step>", category: "progress", priority: "high")

3. Create Named Checkpoint

context_checkpoint(
  name: "checkpoint-<timestamp>",
  description: "Task: <task>, Progress: <progress>, Files: <count>, Next: <action>"
)

4. Prepare for Compaction (if context is large)

context_prepare_compaction()

Checkpoint Frequency Guidelines

ActivityCheckpoint Frequency
File creation/modificationAfter every file
Running testsAfter each test run
Research/explorationEvery 10 tool calls
DebuggingAfter each hypothesis tested
Multi-step implementationAfter each step

Key Items to Always Save

KeyDescriptionPriority
current-taskWhat you're currently working onhigh
files-modifiedAll files touched this sessionnormal
implementation-progressHow far along (%, phase)normal
next-actionExact next step to takehigh
blockersCurrent issues/blockershigh
todo-stateSerialized todo listnormal

Checkpoint Output

After checkpointing, confirm with:

Checkpoint saved:
- Task: <current task>
- Progress: <progress>
- Files modified: <count>
- Next action: <next step>

Recovery Reference

If context is lost, use /recover to restore state from checkpoints.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

+5
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon