commit
Installation
SKILL.md
Commit
Smart git commit workflow that protects important branches, writes good commit messages, and streamlines the commit-push cycle.
Workflow
Execute these steps in order. Gather information first, then act.
Step 1: Gather State
Run these commands in parallel to understand the current repo state:
| Command | Purpose |
|---|---|
git branch --show-current |
Current branch name |
git status --short |
Changed files overview |
git diff --stat |
Unstaged change summary |
git diff --cached --stat |
Staged change summary |
git log --oneline -5 |
Recent commit style reference |