Conventional commits
Skill pablonification/grok-build-consult-claude/skills/conventional-commits
Grok Build skill: read-only second opinions from Claude Code (plan, review, advice)
npx -y skills add pablonification/grok-build-consult-claude --skill conventional-commitsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Write git commit messages using Conventional Commits v1.0.0. Invoke when committing, staging for commit, amending, rebasing commit messages, or when the user asks for feat:/fix:/docs: format. Do NOT load for unrelated coding tasks.
SKILL.md
1.7 KB, 373 tokens by cl100k_base, as published. Nobody here has run it
Conventional Commits
Use Conventional Commits v1.0.0 for every git commit you create.
Format
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Types
| Type | Use for |
|---|---|
feat | New feature or capability |
fix | Bug fix |
docs | Documentation only |
style | Formatting, no logic change |
refactor | Restructure without feat/fix |
perf | Performance improvement |
test | Tests |
chore | Build, deps, tooling |
ci | CI/CD changes |
Rules
- Imperative mood:
add handlernotadded handler - No trailing period on the subject line
- Subject ≤ 72 characters
- Scope when helpful:
fix(consult):,feat(auth): - Breaking changes: footer
BREAKING CHANGE: <description>
Examples
feat: add consult-claude skill
fix(consult): block Bash via allow-list tools
docs: add install instructions to README
chore: bump dependency
Workflow
- Review staged changes (
git diff --cachedorgit status) - Pick type and optional scope from the diff
- Write subject that states what changed, not how you feel about it
- Add body only if context helps future readers
- Run
git commit -m "type(scope): subject"or heredoc for body
When amending or rebasing, rewrite messages to match this format.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.