create-commit
Installation
SKILL.md
Create Commit
Use this skill when the user asks to create a commit for the current worktree.
Workflow
- Inspect
git status --shortand the relevant diff. - Identify whether the change is a fix, feature, refactor, chore, docs, test, style, build, or CI change.
- Do not classify small supporting changes as
featunless they introduce user-visible behavior or a meaningful new capability. - Stage only files that belong to the requested change.
- Create one commit using the Angular convention:
type(scope): concise summary
Use a body when it clarifies non-obvious context, lists important changed files, or explains a tradeoff. Do not push unless the user explicitly asks.