commit
Installation
SKILL.md
Commit Changes
Create one focused commit for the work that is ready now.
Workflow
- Inspect the working tree with
git status --short. - Identify the files and hunks that belong to the requested unit of work.
- Leave unrelated, pre-existing, or uncertain changes unstaged. If the scope is ambiguous, ask before committing.
- Stage only the relevant files or hunks.
- Review the staged diff with
git diff --cached --statandgit diff --cached. - Write a concise imperative subject line that describes the change.
- Create a single commit with no body unless the user explicitly asks for one.