Commit 936be68
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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
0 commit comments