From claude-scholar
Creates or verifies git checkpoints logging state and comparing changes, tests passed, coverage, build status. Also supports list and clear subcommands.
npx claudepluginhub xxm-2025/sciconsist --plugin claude-scholar# Checkpoint Command Create or verify a checkpoint in your workflow. ## Usage `/checkpoint [create|verify|list] [name]` ## Create Checkpoint When creating a checkpoint: 1. Run `/verify quick` to ensure current state is clean 2. Create a git stash or commit with checkpoint name 3. Log checkpoint to `.claude/checkpoints.log`: 4. Report checkpoint created ## Verify Checkpoint When verifying against a checkpoint: 1. Read checkpoint from log 2. Compare current state to checkpoint: - Files added since checkpoint - Files modified since checkpoint - Test pass rate now vs then ...
/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 a Markdown checkpoint capturing session progress, git state, open questions, and prioritized 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)