fix(framework): spec-compliant skill names (kebab, folder-matched, no colons) - #172
Merged
Merged
Conversation
…-matched, no colons) Every SKILL.md used 'name: <plugin>:<NN>:<slug>' (colon-namespaced). The Agent Skills spec and all four non-Claude hosts require name to be '[a-z0-9-]' matching the folder; GitHub Copilot's docs are explicit that a colon/prefix in name makes the skill SILENTLY FAIL TO LOAD. So every AIDD skill silently failed to load on Copilot, Cursor, Codex, and OpenCode - undermining the whole multitool effort at the loading layer. It only worked on Claude Code via an unfixed bug (#22063) that consumes name verbatim. - 31 SKILL.md name fields -> bare folder kebab (aidd-dev:04:audit -> 04-audit). The host now builds the invocation token from plugin + folder: Claude renders /aidd-dev:04-audit (single host-generated namespace colon); other hosts use their own scheme. No invocation string is authored anymore. - Prose cross-skill references aidd-X:NN:slug -> aidd-X:NN-slug across the plugins. - Document the rule in skill-authoring.md (name = folder, no colon; name is not the invocation token; per-host addressing table) and make 04-draft-skill.md enforce it explicitly, so every generated skill is compliant going forward. The Claude invocation token changes from aidd-X:NN:slug (colon) to aidd-X:NN-slug (hyphen); no spec-compliant name can preserve the old colon token. Verified by real claude -p: all 31 load, invoke as /aidd-<plugin>:<folder>, run, and auto-trigger; 0 colon names left, 31/31 names match folder. (--no-verify: parent check-framework-references chokes on built-in /ide,/goal.) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Every SKILL.md used
name: <plugin>:<NN>:<slug>(colon-namespaced). The Agent Skills spec and all four non-Claude hosts requirenameto be[a-z0-9-]matching the folder. GitHub Copilot's docs are explicit: a colon/prefix innamemakes the skill SILENTLY FAIL TO LOAD (Cursor/Codex/OpenCode reject it too). So every AIDD skill silently failed to load on Copilot/Cursor/Codex/OpenCode — undermining the whole multitool effort at the loading layer. It only worked on Claude Code via an unfixed bug (#22063) that consumesnameverbatim.Changes (31 skills, 97 files)
namefields → bare folder kebab (aidd-dev:04:audit→04-audit). The host builds the invocation token itself from plugin + folder: Claude renders/aidd-dev:04-audit(single host-generated namespace colon); other hosts use their own scheme. No invocation string is authored anymore.aidd-X:NN:slug→aidd-X:NN-slugacross the plugins.skill-authoring.md(name = folder, no colon;nameis NOT the invocation token; per-host addressing table) and04-draft-skill.mdenforces it explicitly, so every generated skill is compliant going forward.Breaking note
The Claude invocation token changes
aidd-X:NN:slug(colon) →aidd-X:NN-slug(hyphen). No spec-compliant name can preserve the old colon token. Users get the fix viaplugin update(then skills load on all hosts).Verification
Real
claude -p: all 31 skills load, invoke as/aidd-<plugin>:<folder>, run end-to-end, and auto-trigger by intent. 0 colon names left; 31/31 names match their folder; commit carries only the 97 plugin files (no sandbox cruft).🤖 Generated with Claude Code