From plugin
Use when the user wants to add a new skill to an existing Claude Code plugin. Creates SKILL.md with proper frontmatter inside the plugin's skills directory.
How this skill is triggered — by the user, by Claude, or both
Slash command
/plugin:create-plugin-skillThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add a new skill to an existing plugin in a marketplace.
Add a new skill to an existing plugin in a marketplace.
Ask the user (use AskUserQuestion):
~/.claude/plugins/marketplaces/ (exclude claude-plugins-official).plugins/ subdirs in chosen marketplace./<plugin>:<skill-name>).MP="$HOME/.claude/plugins/marketplaces/<marketplace>"
PLUGIN_DIR="$MP/plugins/<plugin>/skills/<skill-name>"
$PLUGIN_DIR/
└── SKILL.md
---
name: <skill-name>
description: <description starting with "Use when...">
user-invocable: true
allowed-tools: Read, Write, Edit, Bash, Glob, AskUserQuestion
---
# <Skill Title>
<Body content based on user's description. Structure with:>
## When to Use
<Triggering conditions, symptoms, use cases>
## <Core sections based on skill type>
<Concrete commands, patterns, examples>
## Gotchas
<Common mistakes, edge cases>
Frontmatter rules (from agentskills.io spec):
name: letters, numbers, hyphens only. No parens or special chars.description: max 1024 chars total frontmatter. Start with "Use when...". Third person. Do NOT summarize workflow — only triggering conditions.user-invocable: true if user can call directly via /.allowed-tools: list tools the skill needs.Body guidelines:
cd "$MP"
git add -A
git commit -m "feat(<plugin>): add <skill-name> skill"
git push
Tell user:
/plugin update <plugin>@<marketplace>
/reload-plugins
Print: skill path, invocation (/<plugin>:<skill-name>), description.
npx claudepluginhub dawnbreather/won-plugins --plugin pluginCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.