Hi there! Thank you for this great project — it's been very helpful.
I noticed that several skills in the sdd and mcp plugins may have frontmatter that doesn't conform to the official skill naming specification.
According to the Claude Code skills documentation, the name field in SKILL.md frontmatter must be:
Lowercase letters, numbers, and hyphens only (max 64 characters).
Skills with colon-based names (sdd plugin)
The following skills use sdd: as a namespace prefix, which may cause validation errors in Claude Code and Amp:
sdd:add-task → may need to be sdd-add-task
sdd:brainstorm → may need to be sdd-brainstorm
sdd:create-ideas → may need to be sdd-create-ideas
sdd:implement → may need to be sdd-implement
sdd:plan → may need to be sdd-plan
Skills missing the name field (mcp plugin)
These skills have a description but may be missing the name field in their frontmatter:
setup-codemap-cli/SKILL.md
setup-context7-mcp/SKILL.md
setup-serena-mcp/SKILL.md
Error messages observed
⚠ Invalid skill name
Frontmatter name "sdd:add-task" is invalid. Skill name must be lowercase
alphanumeric with hyphens, no trailing hyphen (e.g., "my-skill")
⚠ Missing required fields in frontmatter
Add both "name" and "description" fields to the frontmatter
It may be worth replacing colons with hyphens (e.g., sdd-add-task) and adding the missing name fields, so the skills load cleanly without warnings.
Thanks again for the excellent work!
Hi there! Thank you for this great project — it's been very helpful.
I noticed that several skills in the sdd and mcp plugins may have frontmatter that doesn't conform to the official skill naming specification.
According to the Claude Code skills documentation, the
namefield in SKILL.md frontmatter must be:Skills with colon-based names (sdd plugin)
The following skills use
sdd:as a namespace prefix, which may cause validation errors in Claude Code and Amp:sdd:add-task→ may need to besdd-add-tasksdd:brainstorm→ may need to besdd-brainstormsdd:create-ideas→ may need to besdd-create-ideassdd:implement→ may need to besdd-implementsdd:plan→ may need to besdd-planSkills missing the
namefield (mcp plugin)These skills have a
descriptionbut may be missing thenamefield in their frontmatter:setup-codemap-cli/SKILL.mdsetup-context7-mcp/SKILL.mdsetup-serena-mcp/SKILL.mdError messages observed
It may be worth replacing colons with hyphens (e.g.,
sdd-add-task) and adding the missingnamefields, so the skills load cleanly without warnings.Thanks again for the excellent work!