plugins/skill-creator/ ships Anthropic’s official skill-creator skill
along with its supporting agents, scripts, eval viewer, and tests.
Manifest
What’s bundled
Skill
skill-creator
Creates new Claude Code skills and iteratively improves existing ones
through eval loops and variance analysis.
Trigger phrases: “create a skill”, “turn this into a skill”, “make a
skill for X”, “write a SKILL.md”, “run evals on my skill”, “benchmark
my skill”, “optimize my skill description”, “improve triggering”, “test
my skill”.
Workflow (high level):
Evaluate
Create test prompts, run them with the skill enabled, and review the
results both qualitatively and quantitatively.
Iterate
Adjust the description and content based on routing failures and
output quality. Re-run evals.
Subagents
| Agent | Purpose |
|---|---|
analyzer | Inspect skill structure and surface routing issues |
comparator | Compare two skill variants on the same eval set |
grader | Score eval outputs against rubrics |
Scripts
| Script | Purpose |
|---|---|
init_skill.py | Scaffold a new skill directory |
package_skill.py | Bundle a skill for distribution |
quick_validate.py | Validate SKILL.md frontmatter and structure |
run_eval.py | Run a single eval against a skill |
run_loop.py | Run an iterative improvement loop |
improve_description.py | Suggest description rewrites for better routing |
aggregate_benchmark.py | Aggregate benchmark results across runs |
generate_report.py | Render an eval report |
utils.py | Shared helpers |
Local cleanup
__pycache__/ and .pytest_cache/ are excluded by .gitignore. Do not
commit them back.
Sources
anthropics/claude-plugins-official—skill-creatorby Anthropic (Apache-2.0)
plugins/skill-creator/skills/skill-creator/LICENSE.txt.