From workflow
Use this skill when the user asks to write, generate, draft, or format a git commit message. It enforces the Conventional Commits specification with mandatory emojis and strict formatting rules.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:commit-styleThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides the mandatory rules for formatting git commit messages according to the project's Conventional Commits specification.
This skill provides the mandatory rules for formatting git commit messages according to the project's Conventional Commits specification.
Every commit message MUST follow this exact format:
<emoji> <type>(<scope>): <description>
[optional body]
[optional footer(s)]
type(scope): description.<type> must be in lowercase.| Emoji | Type | Meaning | SemVer |
|---|---|---|---|
| ✨ | feat | New feature | MINOR |
| 🐛 | fix | Bug fix | PATCH |
| 📝 | docs | Documentation changes | None |
| 🎨 | style | Formatting, missing semi-colons, etc. | None |
| ♻️ | refactor | Code change that neither fixes a bug nor adds a feature | None |
| ⚡️ | perf | Code change that improves performance | PATCH |
| ✅ | test | Adding missing tests or correcting existing tests | None |
| 👷 | build | Changes that affect the build system or external dependencies | None |
| 💚 | ci | Changes to CI configuration files and scripts | None |
| 🔧 | chore | Other changes that don't modify src or test files | None |
| ⏪ | revert | Reverts a previous commit | None |
Note: A BREAKING CHANGE (which triggers a MAJOR version bump) is signaled by adding a ! after the type/scope or by including BREAKING CHANGE: in the footer.
✅ Correct Format:
✨ feat(auth): add OAuth2 login flow🐛 fix(api): resolve memory leak in worker📝 docs(readme): update installation guide⚡️ perf(db)!: optimized query for user lookup❌ Incorrect Format:
feat: add something (Missing scope and emoji)✨ feat: add something (Missing scope)feat(ui): add something (Missing emoji)✨ fix memory leak (Missing type/scope format)⚡️ fix(stock): very long description that exceeds the character limit of eighty characters per line (Over 80 chars)🐛 fix(api): first line\nsecond line (Contains multiple lines in header)Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub nguyenhuy158/skills --plugin workflow