commit
Installation
SKILL.md
Commit Skill
Commit staged changes with a conventional commits message.
Instructions
-
git status— see staged changes (never use -uall) -
git diff --cached— see actual staged changes -
git log --oneline -5— recent commit style -
Create message following Conventional Commits:
- Format:
type(scope): description - Types:
feat,fix,refactor,docs,style,test,chore,perf,ci,build - Scope: optional but recommended
- Description: concise, imperative mood, lowercase, no period
- Format: