Add name field to SKILL.md frontmatter so skills load via npx skills add - #179
Open
Konstantin (dudelis) wants to merge 1 commit into
Open
Add name field to SKILL.md frontmatter so skills load via npx skills add#179Konstantin (dudelis) wants to merge 1 commit into
Konstantin (dudelis) wants to merge 1 commit into
Conversation
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.
Summary
Adds a
namefield to the YAML frontmatter of everySKILL.mdthat was missing one (28 skills). Previously only the threeint-*skills declaredname.Why
The
skillsCLI (skills.sh,npx skills add) only discovers a skill when itsSKILL.mdfrontmatter contains bothnameanddescription. Because 28 skills declared onlydescription, running:found just 3 skills. After this change it finds all 31.
This matters because
npx skills addlets you install the same skills into many coding agents at once — not only GitHub Copilot, but simultaneously Claude Code, Codex, Cursor, and 60+ other supported agents. Without anamefield in each skill, those skills simply cannot be loaded through that command.Change
name: <folder-name>to the frontmatter of the 28 affectedSKILL.mdfiles. The value matches each skill's folder name (consistent with the existingint-*skills).Verification
npx skills add . --listnow reportsFound 31 skills(previously 3), and everynamematches its folder.