commit

Installation
SKILL.md

Commit

Goal: small commits. Easy review wins.

Start:

  • git status --short
  • git diff --stat
  • git diff
  • git 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.

Stage:

  • Prefer explicit paths: git add path/to/file.
Related skills
Installs
9
GitHub Stars
1
First Seen
Mar 18, 2026