dev:commit
Installation
SKILL.md
Compatibility: If
AskUserQuestionis unavailable, present options as a numbered list and wait for the user's reply. IfTaskis unavailable, run parallel steps sequentially. Thecontext: forkandagent:frontmatter fields are Claude Code-specific — on OpenCode and VS Code Copilot they are ignored and the skill runs inline using the current model.
Create a git commit following conventional commit standards with a professional, concise message.
Rules
Choosing the right type
- Does it add new functionality users can use? →
feat - Does it fix broken behavior? →
fix - Does it change existing behavior (breaking)? →
feat!orfix! - Does it only improve code structure? →
refactor - Does it only update documentation? →
docs - Does it only affect tests? →
test - Does it only affect build/CI? →
chore
Bump behavior is determined by your project's release config (
.releaserc.*,commitizen.config.*,[tool.commitizen]). Do not predict version bumps — check those files if needed.