Summary
The skill name: frontmatter fields use Title Case (e.g. name: Review Changes) instead of the lowercase-hyphen convention used for Agent Skill names — and used by this repo's own newer build-graph skill (name: build-graph).
Details
code_review_graph/skills.py (_SKILLS) generates:
| skill dir / slug |
current name: |
explore-codebase |
Explore Codebase |
review-changes |
Review Changes |
debug-issue |
Debug Issue |
refactor-safely |
Refactor Safely |
The checked-in skills/*/SKILL.md files match, except skills/build-graph/SKILL.md, which already uses name: build-graph.
The skill directory name — and therefore the invocation slug (e.g. /review-changes) — is already kebab-case, so this is cosmetic. But the picker label ends up inconsistent with the slug and with build-graph, and diverges from the lowercase-hyphen convention for skill name fields.
Proposed fix
Set every skill name: to its kebab-case slug, in both code_review_graph/skills.py and the skills/*/SKILL.md files:
Explore Codebase → explore-codebase
Review Changes → review-changes
Debug Issue → debug-issue
Refactor Safely → refactor-safely
(build-graph is already correct.)
PR to follow.
Environment
code-review-graph 2.3.5 (also present on main / v2.3.6).
Summary
The skill
name:frontmatter fields use Title Case (e.g.name: Review Changes) instead of the lowercase-hyphen convention used for Agent Skill names — and used by this repo's own newerbuild-graphskill (name: build-graph).Details
code_review_graph/skills.py(_SKILLS) generates:name:explore-codebaseExplore Codebasereview-changesReview Changesdebug-issueDebug Issuerefactor-safelyRefactor SafelyThe checked-in
skills/*/SKILL.mdfiles match, exceptskills/build-graph/SKILL.md, which already usesname: build-graph.The skill directory name — and therefore the invocation slug (e.g.
/review-changes) — is already kebab-case, so this is cosmetic. But the picker label ends up inconsistent with the slug and withbuild-graph, and diverges from the lowercase-hyphen convention for skillnamefields.Proposed fix
Set every skill
name:to its kebab-case slug, in bothcode_review_graph/skills.pyand theskills/*/SKILL.mdfiles:Explore Codebase→explore-codebaseReview Changes→review-changesDebug Issue→debug-issueRefactor Safely→refactor-safely(
build-graphis already correct.)PR to follow.
Environment
code-review-graph 2.3.5 (also present on
main/ v2.3.6).