| name | commit-format |
| description | Formats GitHub commit messages following Conventional Commits style with a title and optional description. Use when proposing or implementing code changes, writing commit messages, or when the user asks for commit message suggestions. |
Commit Format
Template
Title only:
> **Commit title:** `type(scope): short description here`
Title with description:
> **Commit title:** `type(scope): short description here`
>
> Description sentence one. Description sentence two with `codeRef()` references.
Rules
- Use markdown blockquote (
> prefix).
- Title goes after
**Commit title:** wrapped in exactly one backtick pair.
- Do not put backticks inside the title.
- Description may use backticks for code references.
- Types:
fix, feat, perf, refactor, docs, chore, build, test.
- Use a short scope such as
challenge, schema, tests, docs, release, or tooling.
- Description is optional and should be 2-3 concise sentences.
Self-check
- Lines start with
>.
- Title is wrapped in exactly one backtick pair.
- No nested backticks appear inside the title.