Meta-skill that creates project-specific Claude Code skills based on recurring workflows discovered during project analysis. Creates a conformant SKILL.md following Anthropic's official guide (trigger phrases, progressive disclosure, references/ folder). Use when genius-specs or genius-architect identify a recurring workflow, or when user says "create a skill for X", "new project skill", "make a skill that handles Y". Do NOT use for general implementation tasks.
Skills that spawn skills. Automate the automator.
Create a skill when you observe:
Examples that warrant a skill:
Gather requirements by analyzing:
# Read existing skills for patterns
ls .claude/skills/
cat .claude/skills/*/SKILL.md | grep -A3 "^## " # Scan section headers
# Check CLAUDE.md for existing skill references
grep -i "skill\|when.*use\|invoke" CLAUDE.md
# Look for repeated patterns in recent work
git log --oneline -20
Answer these questions:
Follow the Anthropic Claude Code skill specification exactly:
---