fix: use lowercase-hyphen skill names#562
Open
kankunnawat wants to merge 1 commit into
Open
Conversation
Skill name: fields used Title Case (e.g. 'Review Changes'), which diverged from the lowercase-hyphen skill-name convention and from the repo's own build-graph skill (name: build-graph). The skill dir names (and invocation slugs) were already kebab-case, so the picker label was inconsistent with the slug. Set every skill name: to its kebab-case slug in both _SKILLS (skills.py) and the skills/*/SKILL.md files. build-graph already correct. Closes tirth8205#561
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Set every skill
name:frontmatter field to its kebab-case slug.Explore Codebaseexplore-codebaseReview Changesreview-changesDebug Issuedebug-issueRefactor Safelyrefactor-safelyChanged in both
code_review_graph/skills.py(_SKILLS) and the checked-inskills/*/SKILL.mdfiles.build-graphwas alreadyname: build-graphand is left as-is.Why
The skill directory names — and therefore the invocation slugs (e.g.
/review-changes) — are already kebab-case, but thename:field rendered as Title Case, so the picker label was inconsistent with the slug and with the repo's own newerbuild-graphskill. This aligns all skills with the lowercase-hyphen naming convention.Cosmetic only: invocation already resolves on the directory slug, so no behavior changes.
Test
git diffshows only the 7name:lines changed across 4 files; no body/description/logic edits.code-review-graph init) now emitname: review-changesetc., matching their directory slug.Closes #561