Skill Template
Overview
This is the minimal starting point for any new Claude skill. It contains only the required YAML frontmatter fields (name and description) and a placeholder for the instruction body. Use this as a reference when creating skills from scratch without the init_skill.py scaffolding tool.
Template Structure
---
name: your-skill-name-kebab-case
description: Replace with a description of the skill and when Claude should use it.
---
# Skill Title
Insert instructions below.
Required Fields
| Field | Format | Purpose |
|---|---|---|
name |
kebab-case string | Unique identifier for the skill |
description |
One or more sentences | Determines when Claude activates the skill; be specific about triggers |
Usage
- Copy this template into a new directory named after the skill
- Replace the
nameanddescriptionfields - Write the instruction body in Markdown
- Optionally add
scripts/,references/, andassets/subdirectories
For a more complete scaffolding experience with generated example files, use the init_skill.py script from the Skill Creator skill instead.