git-commit-workflow
Installation
SKILL.md
Git Commit Workflow
Overview
Standardize staging and conventional commits. Favor minimal, clear steps and ask for missing details (scope, type) only when needed.
Conventional commits
- Format:
type(scope): short description(lowercase, imperative) - Group logical changes into separate commits
- Stage related files together
Common types: feat, fix, refactor, chore, docs, test, build, ci, perf, style
Multi-line commit (heredoc):
git commit -m "$(cat <<'EOF'
feat(ui): add new button component