-
Notifications
You must be signed in to change notification settings - Fork 58
Description
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 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-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.mdsetup-context7-mcp/SKILL.mdsetup-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!