Creates or verifies git checkpoints logging state and comparing changes, tests passed, coverage, build status. Also supports list and clear subcommands.
From everything-claude-codenpx claudepluginhub hatsune1212/claude-code-for-simpleasy/checkpointCreates or verifies git checkpoints logging state and comparing changes, tests passed, coverage, build status. Also supports list and clear subcommands.
/checkpointCreates or verifies git checkpoints logging state and comparing changes, tests passed, coverage, build status. Also supports list and clear subcommands.
/checkpointSaves session checkpoint summarizing progress, git state, open questions, and next steps to .claude/checkpoints/<timestamp>.md. Updates CLAUDE.md and commits changes.
/checkpointSaves or restores Git working state checkpoints (staged/unstaged patches, untracked files, metadata). Also supports list, diff, delete subcommands with optional --tag.
/checkpointVerifies Lean4 file compilations, project build, axioms, and sorries, then commits touched files as a safe checkpoint. Optional custom message.
/checkpointStages relevant changes, creates a descriptive git commit, and writes .claude/handoff.md with progress summary, pending tasks, and learnings.
Create or verify a checkpoint in your workflow.
/checkpoint [create|verify|list] [name]
When creating a checkpoint:
/verify quick to ensure current state is clean.claude/checkpoints.log:echo "$(date +%Y-%m-%d-%H:%M) | $CHECKPOINT_NAME | $(git rev-parse --short HEAD)" >> .claude/checkpoints.log
When verifying against a checkpoint:
Read checkpoint from log
Compare current state to checkpoint:
Report:
CHECKPOINT COMPARISON: $NAME
============================
Files changed: X
Tests: +Y passed / -Z failed
Coverage: +X% / -Y%
Build: [PASS/FAIL]
Show all checkpoints with:
Typical checkpoint flow:
[Start] --> /checkpoint create "feature-start"
|
[Implement] --> /checkpoint create "core-done"
|
[Test] --> /checkpoint verify "core-done"
|
[Refactor] --> /checkpoint create "refactor-done"
|
[PR] --> /checkpoint verify "feature-start"
$ARGUMENTS:
create <name> - Create named checkpointverify <name> - Verify against named checkpointlist - Show all checkpointsclear - Remove old checkpoints (keeps last 5)