| name | git |
| description | Applies project Git commit message conventions. Use when writing commit messages, reviewing staged changes, or when the user asks for git commit help. |
Git Commit Rules
Open and apply the reference files for the relevant section before working.
Core Rules
- Use one of these types:
update, docs, refactor, or chore.
- Write commit messages in English.
- Keep the subject under 80 characters, present tense, imperative mood, and without a trailing period.
- Add a body only when it clarifies what changed and why; wrap body lines at 72 characters.
- For changes too broad for one short subject, use a short subject plus bullet list body.
- Use blank lines to separate the subject from the body.
- See ./examples/commit-message.md for short and multi-change examples.