checkpoint
Installation
SKILL.md
Checkpoint Commit
Create a checkpoint commit that captures all current changes — but only after the code passes lint, type check, and build.
Instructions
Step 1: Analyze Changes
Run these commands to understand the full picture:
git status— see all tracked and untracked filesgit diff— see detailed changes in tracked filesgit diff --cached— see already-staged changesgit log -5 --oneline— understand this repo's commit message style
Step 2: Quality Checks
Run all three checks. If any fail, fix the issues before proceeding — do not skip or ignore failures.