Loading...
Loading...
Write, review, and validate commit messages following the Conventional Commits v1.0.0 specification. Use when: (1) crafting a git commit message for any change, (2) reviewing or correcting an existing commit message, (3) choosing the right commit type for a change, (4) deciding how to mark a breaking change, (5) writing multi-line commits with body and footers, or (6) understanding how commits map to SemVer bumps (PATCH/MINOR/MAJOR). Covers all standard types: feat, fix, docs, chore, refactor, perf, test, build, ci, style, revert.
npx skill4agent add jgamaraalv/ts-dev-kit conventional-commits<type>[optional scope]: <description>
[optional body]
[optional footer(s)]feat(auth):": "Token: valueToken #value| Type | Use for | SemVer |
|---|---|---|
| New feature | MINOR |
| Bug fix | PATCH |
| Documentation only | none |
| Formatting, whitespace (no logic change) | none |
| Code restructure (not a fix or feature) | none |
| Performance improvement | none |
| Adding or fixing tests | none |
| Build system, dependencies (npm, gradle…) | none |
| CI configuration (GitHub Actions, CircleCI…) | none |
| Maintenance not fitting above types | none |
| Reverts a previous commit | none |
BREAKING CHANGE!feat(api)!: remove deprecated v1 endpointsBREAKING CHANGE:feat: allow config object to extend other configs
BREAKING CHANGE: `extends` key now used for extending config fileschore!: drop support for Node 6
BREAKING CHANGE: use JavaScript features not available in Node 6.fix: prevent racing of requestsfeat(lang): add Polish languagefix: prevent racing of requests
Introduce a request id and a reference to latest request. Dismiss
incoming responses other than from latest request.
Remove timeouts which were used to mitigate the racing issue but are
obsolete now.
Reviewed-by: Z
Refs: #123revert: let us never again speak of the noodle incident
Refs: 676104e, a215868docs: correct spelling of CHANGELOGCo-Authored-ByBREAKING CHANGEBREAKING-CHANGEBREAKING CHANGE-Reviewed-byBREAKING CHANGE": "" #"Refs #123Token: Token #Is it a new user-facing capability? → feat
Is it fixing incorrect behavior? → fix
Is it changing docs/comments only? → docs
Is it improving speed/memory? → perf
Is it reorganizing code (no behavior Δ)? → refactor
Is it adding/fixing tests only? → test
Is it CI pipeline config? → ci
Is it build tooling or dependency updates? → build
Is it undoing a previous commit? → revert
Everything else (scripts, config, etc.)? → chorefixfeatBREAKING CHANGE