commit
Installation
SKILL.md
Commit
Analyze unstaged changes and organize them into atomic, well-documented commits.
When to Use This Skill
- After completing work that spans multiple logical changes
- When working tree has mixed changes (features, fixes, refactors)
- To ensure clean, reviewable git history
- Before creating a pull request
Workflow
- Analyze current state:
- Check
git statusto see all staged and unstaged changes - Review
git diffto understand what changed
- Check