Bug Description
The command-development skill in plugin-dev references scripts that don't exist in the plugin structure.
Location
skills/command-development/SKILL.md lines 638-640
Problem
The "Multi-script pattern" example references:
Build: !`bash ${CLAUDE_PLUGIN_ROOT}/scripts/build.sh`
Test: !`bash ${CLAUDE_PLUGIN_ROOT}/scripts/test.sh`
Package: !`bash ${CLAUDE_PLUGIN_ROOT}/scripts/package.sh`
These scripts don't exist in the plugin. The actual scripts are in skill-specific subdirectories:
skills/plugin-settings/scripts/
skills/hook-development/scripts/
skills/agent-development/scripts/
Impact
When the skill is invoked and the documentation is processed, bash execution fails with:
bash: /path/to/plugin-dev/scripts/package.sh: No such file or directory
Suggested Fix
Either:
- Create the referenced scripts in
scripts/ directory
- Update examples to use existing scripts from skill subdirectories
- Mark examples as hypothetical/theoretical with a note
Environment
- Claude Code version: latest
- Plugin installed via: claude-code-marketplace
Bug Description
The
command-developmentskill inplugin-devreferences scripts that don't exist in the plugin structure.Location
skills/command-development/SKILL.mdlines 638-640Problem
The "Multi-script pattern" example references:
These scripts don't exist in the plugin. The actual scripts are in skill-specific subdirectories:
skills/plugin-settings/scripts/skills/hook-development/scripts/skills/agent-development/scripts/Impact
When the skill is invoked and the documentation is processed, bash execution fails with:
Suggested Fix
Either:
scripts/directoryEnvironment