Skip to content

Commit 936be68

Browse files
sjnimsclaude
andauthored
fix: correct invalid skill name fields to kebab-case (#6)
## Summary - Fix 6 skill SKILL.md files with invalid `name` fields that used Title Case instead of kebab-case - Update names to match directory names exactly per official Claude Code skills documentation ## Problem Fixes #1 Per the [official Claude Code skills documentation](https://code.claude.com/docs/en/skills.md): > **Name**: Must use lowercase letters, numbers, and hyphens only (max 64 characters) Six skills violated this specification with Title Case names. ## Solution Changed the `name` field in each affected SKILL.md to kebab-case: | Skill Directory | Before | After | |-----------------|--------|-------| | `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` | ### Alternatives Considered None - this is a straightforward spec compliance fix. The correct names are the directory names themselves. ## Changes - `plugins/plugin-dev/skills/command-development/SKILL.md`: name field updated - `plugins/plugin-dev/skills/mcp-integration/SKILL.md`: name field updated - `plugins/plugin-dev/skills/plugin-structure/SKILL.md`: name field updated - `plugins/plugin-dev/skills/skill-development/SKILL.md`: name field updated - `plugins/plugin-dev/skills/plugin-settings/SKILL.md`: name field updated - `plugins/plugin-dev/skills/hook-development/SKILL.md`: name field updated ## Testing - [x] All 6 affected skill `name` fields updated to kebab-case - [x] Names match their directory names exactly - [x] No other changes to SKILL.md files - [x] Linting passes (`markdownlint`) --- 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent a466607 commit 936be68

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

plugins/plugin-dev/skills/command-development/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Command Development
2+
name: command-development
33
description: This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
44
version: 0.1.0
55
---

plugins/plugin-dev/skills/hook-development/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Hook Development
2+
name: hook-development
33
description: This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.
44
version: 0.1.0
55
---

plugins/plugin-dev/skills/mcp-integration/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: MCP Integration
2+
name: mcp-integration
33
description: This skill should be used when the user asks to "add MCP server", "integrate MCP", "configure MCP in plugin", "use .mcp.json", "set up Model Context Protocol", "connect external service", mentions "${CLAUDE_PLUGIN_ROOT} with MCP", or discusses MCP server types (SSE, stdio, HTTP, WebSocket). Provides comprehensive guidance for integrating Model Context Protocol servers into Claude Code plugins for external tool and service integration.
44
version: 0.1.0
55
---

plugins/plugin-dev/skills/plugin-settings/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Plugin Settings
2+
name: plugin-settings
33
description: This skill should be used when the user asks about "plugin settings", "store plugin configuration", "user-configurable plugin", ".local.md files", "plugin state files", "read YAML frontmatter", "per-project plugin settings", or wants to make plugin behavior configurable. Documents the .claude/plugin-name.local.md pattern for storing plugin-specific configuration with YAML frontmatter and markdown content.
44
version: 0.1.0
55
---

plugins/plugin-dev/skills/plugin-structure/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Plugin Structure
2+
name: plugin-structure
33
description: This skill should be used when the user asks to "create a plugin", "scaffold a plugin", "understand plugin structure", "organize plugin components", "set up plugin.json", "use ${CLAUDE_PLUGIN_ROOT}", "add commands/agents/skills/hooks", "configure auto-discovery", or needs guidance on plugin directory layout, manifest configuration, component organization, file naming conventions, or Claude Code plugin architecture best practices.
44
version: 0.1.0
55
---

plugins/plugin-dev/skills/skill-development/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Skill Development
2+
name: skill-development
33
description: This skill should be used when the user asks to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.
44
version: 0.1.0
55
---

0 commit comments

Comments
 (0)