Alexander 232f201dfa
fix(plugin): register all 7 skills in the Claude Code plugin (#385)
Two issues caused Claude Code plugin users to see only 1 (or 0) of the
7 bundled skills:

- .claude-plugin/plugin.json declared `"skills": ["./.claude/skills/ui-ux-pro-max"]`
  — an array pointing at a single subfolder. With a marketplace-root
  source this replaces the default scan, so the other 6 skills never
  load. Point it at the parent directory ("./.claude/skills/") so the
  loader scans all 7 <name>/SKILL.md subfolders. (#360)

- The 6 sub-skill SKILL.md `name:` fields kept a `ckm-` prefix
  (e.g. `ckm-brand` in dir `brand`) that no longer matched their
  directory names, tripping loaders that require name == directory.
  Strip the prefix so each name equals its folder. (#266)

Closes #360
Closes #266
2026-06-25 16:43:46 +07:00
..