Checkpointing
SkillAI & modelsSave session activity, rebuild rolling PROGRESS.md, and compact stale working blocks in .claude/STATE.md.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Checkpointing skill
What this skill tells your AI
The instructions your AI receives, as published by del-taiseiozaki/claude-code-orchestra in .claude/skills/checkpointing/SKILL.md and read by ahel’s review.
Capture durable session context without growing the always-loaded root
CLAUDE.md. Canonical state and artifacts live under .claude/.
Owned Paths
.claude/checkpoints/: full timestamped checkpoints; never deleted by the compact phase..claude/checkpoints/INDEX.md: generated catalog of every checkpoint.PROGRESS.md: latest five checkpoint summaries..claude/STATE.md: one Progress Tracker link and current working blocks..claude/logs/: drafts, previews, work logs, and CLI activity..claude/docs/research/: research notes; inactive notes may be archived only after user approval.
Both scripts write nothing without --apply. Every default run produces preview
files under .claude/logs/ and leaves PROGRESS.md and .claude/STATE.md
untouched.
Full Checkpoint
-
Determine the time window from the newest checkpoint, or use all available history when none exists.
-
Gather the user requests and decisions from the current conversation, git changes, CLI logs, team work logs, and relevant design changes.
-
Write a Japanese five-part summary containing:
何をしたのか,どういうやり取りをユーザーと行ったのか,どうやったのか,途中でどういう課題が起こったのか, and将来のアクション. This is the irreducible judgment in the skill and is never generated: a missing, empty, stale, or incomplete summary aborts the run with exit2. -
Save the summary to
.claude/logs/pending-summary.md, then preview:python3 .claude/skills/checkpointing/checkpoint.py \ --summary-file .claude/logs/pending-summary.mdExit
0reportsresult: previewand four preview files (checkpoint-preview-*,index-preview-*,progress-preview-*,state-preview-*under.claude/logs/). Exit1is a bad--since/--now; exit2is a summary or shared-state contract violation; exit3is a timestamp collision, a concurrent modification, or a write failure.Add
--label <slug>when the session's commit messages would not name it well; the label becomes the checkpoint's slug in the frontmatter and the index. -
Review the four previews, then write for real:
python3 .claude/skills/checkpointing/checkpoint.py \ --summary-file .claude/logs/pending-summary.md \ --apply --consume-summary --json--consume-summarydeletes the draft on success, so the next session cannot silently embed this session's summary.--jsonemits the single payload{ok, result, checkpoint_path, prompt_path, index_path, slug, tags, progress_path, progress_entries, state_path, state_updated, summary_validated, summary_consumed, commits, files_changed, cli_consultations, agent_teams, work_logs, collector_errors, skipped_records, warnings, artifacts}; without it the same facts are printed as prose. Quotecollector_errorsandwarningsverbatim when reporting — a failed collector is not an empty session. -
Confirm the shared-state invariant mechanically rather than by reading:
python3 .claude/skills/checkpointing/refresh_guard.py --mode checkExit
0means exactly one# Agent Stateand one## Progress Trackerheading; exit2means the structure is invalid. -
Review whether durable architecture decisions belong in
.claude/docs/DESIGN.md; use/design-trackerwhen warranted. -
Run the Compact Phase below.
Finding a Past Checkpoint
Three layers make retrieval cheap, so a past session is found without reading the directory file by file:
.claude/checkpoints/INDEX.md— one table, newest first, with the branch, tags, counts, and headline for every checkpoint. Read this first and scan the tags and summary columns.- YAML frontmatter — each checkpoint opens with
id,timestamp,branch,slug,summary,tags, and the session counts. Reading the first ~14 lines settles relevance without parsing the document. PROGRESS.md— the five most recent summaries in full, for the common case of "what happened lately".
INDEX.md is regenerated from the checkpoints' frontmatter on every --apply,
so a deleted or hand-edited checkpoint is reflected on the next run rather than
advertised forever. Checkpoint filenames stay YYYY-MM-DD-HHMMSS.md: the slug
lives in the metadata, not the path, so PROGRESS.md links and
collect_repo_state.py keep working. Do not hand-edit INDEX.md.
Compact Phase
The compact phase keeps only the newest ## Current Project,
## Current Feature, and ## Current Bug Fix block of each category. Every
other section is preserved verbatim in document order — ## Main Agent,
## Repository Identity, ## Progress Tracker, and any manual notes, which
.claude/rules/agent-state.md explicitly sanctions. A section that would still
be lost is reported in sections_dropped and aborts the run with exit 2.
-
Inspect the state, the compaction preview, and the suggested archive moves:
python3 .claude/skills/checkpointing/refresh_guard.py --mode planReports
blocks_pruned,sections_preserved,sections_dropped,research_notes, andmove_plan.move_planentries carrysuggested: true: they come from a stem-mention heuristic and are never a decision. -
Write the candidate state to a draft:
python3 .claude/skills/checkpointing/refresh_guard.py --mode compose -
Review
.claude/logs/composed-state.mdand the reported move plan. -
Ask for approval before replacing
.claude/STATE.mdor moving research notes. Never delete checkpoint files or regeneratePROGRESS.mdhere. -
After approval, apply the compaction with the script — never by hand:
python3 .claude/skills/checkpointing/refresh_guard.py --mode apply python3 .claude/skills/checkpointing/refresh_guard.py --mode apply --applyThe first call previews to
.claude/logs/state-compaction-preview-*.mdand reportsstate_hash_before. The second writes atomically, refuses if.claude/STATE.mdchanged since it was read, and validates the composed bytes before replacing. Pass--expect-hash <state_hash_before>to pin the exact revision that was approved. -
Confirm the compaction landed:
python3 .claude/skills/checkpointing/refresh_guard.py --mode verifyverifycompares the on-disk state against a freshly composed candidate and reportscompaction_applied. Exit2means redundant work blocks remain.
Safety Gates
- Root
AGENTS.mdandCLAUDE.mdare never modified. INDEX.mdis generated, never hand-maintained; it is not a checkpoint and is never listed inPROGRESS.md.- State structure must contain exactly one
# Agent Stateheading and one## Progress Trackerheading. - Archive destinations use
.claude/docs/research/archive/; append when a destination already exists. - All destructive moves require an explicit preview and user approval.
- Report the checkpoint path, state blocks pruned, sections preserved, research notes archived, validation result, and remaining risks in Japanese.
Signals
- GitHub stars
- 195
- Forks
- 36
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
checkpointing- Source
- github.com/del-taiseiozaki/claude-code-orchestra