From developer
Generates semantic commit messages following the Conventional Commits specification with proper types, scopes, breaking changes, and footers. Use when users request "write commit message", "conventional commit", "semantic commit", or "format commit".
How this skill is triggered — by the user, by Claude, or both
Slash command
/developer:conventional-commitsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Write standardized, semantic commit messages that enable automated versioning and changelog generation.
Write standardized, semantic commit messages that enable automated versioning and changelog generation.
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
| Type | Description | Semver | Example |
|---|---|---|---|
feat | New feature | MINOR | feat: add user authentication |
fix | Bug fix | PATCH | fix: resolve login redirect loop |
docs | Documentation only | - | docs: update API reference |
style | Formatting, whitespace | - | style: fix indentation in utils |
refactor | Code change, no feature/fix | - | refactor: extract validation logic |
perf | Performance improvement | PATCH | perf: optimize database queries |
test | Adding/fixing tests | - | test: add unit tests for auth |
build | Build system, dependencies | - | build: upgrade to Node 20 |
ci | CI/CD configuration | - | ci: add GitHub Actions workflow |
chore | Maintenance tasks | - | chore: update .gitignore |
revert | Revert previous commit | - | revert: undo feature flag change |
Scopes indicate the area of the codebase affected:
# Component/module scopes
feat(auth): add OAuth2 support
fix(api): handle timeout errors
docs(readme): add installation steps
# File-based scopes
style(eslint): update linting rules
build(docker): optimize image size
# Layer scopes
refactor(service): extract user service
test(e2e): add checkout flow tests
Mark breaking changes with ! or BREAKING CHANGE footer:
# Using ! notation
feat(api)!: change response format to JSON:API
# Using footer
feat(api): change response format
BREAKING CHANGE: Response now follows JSON:API specification.
Clients must update their parsers.
feat: add dark mode toggle
feat(ui): add dark mode toggle to settings page
fix(auth): resolve session expiration race condition
The session refresh was racing with the expiration check,
causing intermittent logouts.
Fixes #234
feat(api)!: migrate to v2 response format
BREAKING CHANGE: All API responses now use camelCase keys
instead of snake_case. Update client parsers accordingly.
Migration guide: https://docs.example.com/v2-migration
fix(payments): correct tax calculation for EU customers
Updated tax calculation to use customer's billing country
instead of shipping country for digital goods.
Fixes #456
Reviewed-by: Alice
Co-authored-by: Bob <[email protected]>
revert: feat(auth): add OAuth2 support
This reverts commit abc123def456.
Reason: OAuth provider has rate limiting issues in production.
Will re-implement with proper caching.
feat: add email verification flow
fix: prevent duplicate form submissions
refactor: extract payment processing to service
perf: cache user preferences in memory
docs: add API authentication examples
# Too vague
fix: fixed it
update: updates
# Wrong tense
feat: added new feature
fix: fixes the bug
# Too long
feat: add a new feature that allows users to export their data in multiple formats including CSV, JSON, and XML
When to include a body:
fix(cache): invalidate user cache on profile update
Previously, profile updates were not reflected until cache expiry.
This caused confusion when users updated their avatar and didn't
see the change immediately.
The fix adds cache invalidation after successful profile updates
and ensures CDN purge for static assets.
| Token | Purpose | Example |
|---|---|---|
Fixes | Closes issue | Fixes #123 |
Closes | Closes issue | Closes #456 |
Refs | References issue | Refs #789 |
BREAKING CHANGE | Breaking change | BREAKING CHANGE: description |
Reviewed-by | Reviewer credit | Reviewed-by: Name |
Co-authored-by | Co-author credit | Co-authored-by: Name <email> |
// commitlint.config.js
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'feat', 'fix', 'docs', 'style', 'refactor',
'perf', 'test', 'build', 'ci', 'chore', 'revert'
]
],
'scope-case': [2, 'always', 'kebab-case'],
'subject-case': [2, 'always', 'lower-case'],
'subject-max-length': [2, 'always', 72],
'body-max-line-length': [2, 'always', 100]
}
};
# .husky/commit-msg
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx --no-install commitlint --edit "$1"
{
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"husky": "^8.0.0"
},
"scripts": {
"prepare": "husky install"
}
}
Conventional commits enable automated versioning:
# .releaserc.yml
branches:
- main
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "@semantic-release/npm"
- "@semantic-release/git"
| Commit Type | Version Bump | Example |
|---|---|---|
feat | Minor (0.X.0) | 1.2.0 → 1.3.0 |
fix | Patch (0.0.X) | 1.2.0 → 1.2.1 |
perf | Patch (0.0.X) | 1.2.0 → 1.2.1 |
BREAKING CHANGE | Major (X.0.0) | 1.2.0 → 2.0.0 |
| Others | No bump | 1.2.0 → 1.2.0 |
When analyzing changes, generate a commit message:
# 1. Check staged changes
git diff --cached --name-only
# 2. Analyze change type
# - New files = likely feat
# - Modified test files = test
# - Modified docs = docs
# - Bug-related keywords = fix
# 3. Identify scope from path
# src/components/Button.tsx → components or ui
# src/services/auth.ts → auth or services
# 4. Generate message
feat(ui): add loading state to Button component
git diff --cached to verify changesEvery commit message should:
! or footerCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub thimslugga/thimslugga-cc-plugins --plugin developer