Agent skill
checkpoint
Capture current session progress as a structured checkpoint
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/checkpoint-eysenfalk-git-review
SKILL.md
When the user invokes /checkpoint, follow these steps:
1. Gather Current State
- Get current git branch and status (
git status,git log --oneline -5) - List files modified in the last 30 minutes:
find . -name '*.rs' -o -name '*.sh' -o -name '*.md' -o -name '*.json' -o -name '*.toml' -mmin -30 -not -path './.git/*' -not -path './target/*' - Check TaskList for in-progress and completed tasks (if a team exists)
2. Check Linear Status
- Get the current Linear ticket status for the active branch's ticket
3. Build Checkpoint
Create a JSON checkpoint file at .claude/checkpoints/<ISO-timestamp>.json:
{
"timestamp": "<ISO-8601>",
"branch": "<current-branch>",
"ticket": "<ENG-XX>",
"recent_commits": ["<last 5 commit subjects>"],
"modified_files": ["<files changed in last 30 min>"],
"tasks": {
"completed": ["<completed task subjects>"],
"in_progress": ["<in-progress task subjects>"],
"pending": ["<pending task subjects>"]
},
"summary": "<1-2 sentence summary of current state>"
}
4. Save to Cross-Session Memory
Save a brief observation to claude-mem with:
- What was accomplished
- What's in progress
- Any blockers or decisions made
5. Print Summary
Display the checkpoint contents in a readable format.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?