Summary
Six of seven skills in the plugin-dev plugin have invalid name fields in their YAML frontmatter. Per the official Claude Code skills documentation:
Name: Must use lowercase letters, numbers, and hyphens only (max 64 characters)
The current skills use Title Case with spaces, which violates this specification.
Affected Skills
| Skill Directory |
Current name |
Correct name |
agent-development |
agent-development |
✅ Already correct |
command-development |
Command Development |
❌ → command-development |
mcp-integration |
MCP Integration |
❌ → mcp-integration |
plugin-structure |
Plugin Structure |
❌ → plugin-structure |
skill-development |
Skill Development |
❌ → skill-development |
plugin-settings |
Plugin Settings |
❌ → plugin-settings |
hook-development |
Hook Development |
❌ → hook-development |
Files to Update
Example Fix
# FROM:
---
name: Command Development
description: This skill should be used when...
---
# TO:
---
name: command-development
description: This skill should be used when...
---
Acceptance Criteria
Priority
Critical - Invalid name fields may cause skill discovery issues per official spec.
References
Summary
Six of seven skills in the plugin-dev plugin have invalid
namefields in their YAML frontmatter. Per the official Claude Code skills documentation:The current skills use Title Case with spaces, which violates this specification.
Affected Skills
namenameagent-developmentagent-developmentcommand-developmentCommand Developmentcommand-developmentmcp-integrationMCP Integrationmcp-integrationplugin-structurePlugin Structureplugin-structureskill-developmentSkill Developmentskill-developmentplugin-settingsPlugin Settingsplugin-settingshook-developmentHook Developmenthook-developmentFiles to Update
plugins/plugin-dev/skills/command-development/SKILL.mdplugins/plugin-dev/skills/mcp-integration/SKILL.mdplugins/plugin-dev/skills/plugin-structure/SKILL.mdplugins/plugin-dev/skills/skill-development/SKILL.mdplugins/plugin-dev/skills/plugin-settings/SKILL.mdplugins/plugin-dev/skills/hook-development/SKILL.mdExample Fix
Acceptance Criteria
namefields updated to kebab-casePriority
Critical - Invalid name fields may cause skill discovery issues per official spec.
References