commit
Installation
SKILL.md
Commit
Goal: small commits. Easy review wins.
Start:
git status --shortgit diff --statgit diffgit log --oneline -n 20- If needed:
git log --oneline -- <path>
Slice:
- One concern per commit.
- Split unrelated edits.
- If diff feels big, split more.
- Do not mix refactor + behavior change unless tiny and inseparable.
- Leave unrelated work unstaged.