Claude-project-skills-template create-skill
Scaffold a new skill directory using the multi-YAML pattern. Use when user says /create-skill.
install
source · Clone the upstream repo
git clone https://github.com/dohernandez/claude-project-skills-template
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/dohernandez/claude-project-skills-template "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/create-skill" ~/.claude/skills/dohernandez-claude-project-skills-template-create-skill && rm -rf "$T"
manifest:
.claude/skills/create-skill/SKILL.mdsource content
Create Skill
Purpose
Create a new
.claude/skills/{folder-name}/ skill scaffold that follows the multi-YAML pattern.
This skill produces the canonical file set for a new skill in the ci-core-e2e-runner project.
Quick Reference
- Creates: SKILL.md, skill.yaml, collaboration.yaml, sharp-edges.yaml
- Requires: folder name, kind, description
- No task runner or hooks -- this is a shell/YAML project
Procedure
-
Gather inputs from the user:
-- directory name underfolder_name.claude/skills/
-- human title for H1 header in SKILL.mdtitle
-- one-line description for trigger matching (frontmatter)description
-- 2-3 sentences for the SKILL.md purpose sectionpurpose
-- one of: action, workflow, gate, helper, metakind
-- true or falseuser_invocable
-- list of tools the skill needsallowed_tools
-
Create folder:
mkdir -p .claude/skills/{folder-name}/ -
Write SKILL.md (thin wrapper):
- Frontmatter: name, description, user-invocable, allowed-tools
- Purpose section (2-3 sentences)
- Quick Reference (creates/requires pointers)
- Automation section pointing to skill.yaml / sharp-edges.yaml / collaboration.yaml
-
Write skill.yaml:
- Canonical patterns, anti-patterns, ownership, procedure
- All rule details live here, not in SKILL.md
-
Write collaboration.yaml:
- Dependencies, composition sequences, triggers
-
Write sharp-edges.yaml:
- Common gotchas with detection hints, impact, and fixes
-
Document in CLAUDE.md:
- Add the skill to the skills table in CLAUDE.md
- Format: appropriate section with skill name and description
File Layout
.claude/skills/{folder-name}/ SKILL.md # Thin wrapper with frontmatter + pointers skill.yaml # Canonical patterns, procedure, ownership collaboration.yaml # Dependencies, triggers, composition sharp-edges.yaml # Common failure modes and fixes
Automation
See
skill.yaml for the full procedure and patterns.
See sharp-edges.yaml for common failure modes.