commit
Installation
SKILL.md
Instructions
- Run
git statusandgit diffto inspect changes - Run
git log --oneline -5to see recent commit style - Draft a conventional commit message (
type(scope): description) - Stage files:
git add <files> - Commit:
git commit -m "<message>" - Show final
git status
Rules
- Do NOT commit .env, credentials.json, or secrets
- Do NOT use --no-verify or --no-gpg-sign
- Only commit when user explicitly requests it