| name | write-conventional-commit |
| description | Use when preparing a git commit message to enforce conventional-commit format and repository commit hygiene. |
Write Conventional Commit
Format
<type>(<scope>): <short description>
Checklist
- Pick type:
feat|fix|docs|style|refactor|perf|test|chore|ci|revert.
- Add scope when useful (e.g.,
auth, api, web).
- Write imperative short subject, no trailing period.
- Add body only for context (
what and why).
- Never include AI attribution in commit message/footer.
Examples
feat(auth): add session logout endpoint
fix(web): handle null profile response
docs: update deployment guide