Commit Message Skill
Purpose: Generate consistent Conventional Commit messages from staged changes.
Trigger
When: User stages files and requests commit
Context Needed: git diff --staged, file paths
MCP Tools: mcp_gitkraken_git_add_or_commit
Format
code
type(scope): description
Types
| Change | Type |
|---|---|
| New feature | feat |
| Bug fix | fix |
| Documentation | docs |
| Refactor | refactor |
| Tests | test |
| Build/deps | chore |
Scope Detection
| Path | Scope |
|---|---|
apps/api/** | api |
apps/web/** | web |
prisma/** | db |
docs/** | docs |
libs/ui/** | ui |
Examples
code
feat(api): add payment webhook endpoint fix(web): resolve signal update in product list docs(api): update authentication API documentation chore(db): add index for merchant lookup