Skill Template

入门 Starter 参考型 Reference ⚡ Claude Code 专属 ⚡ Claude Code Optimized
1 min read · 42 lines

Minimal skill starter template: YAML frontmatter placeholders + Markdown instruction body

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

  1. Copy this template into a new directory named after the skill
  2. Replace the name and description fields
  3. Write the instruction body in Markdown
  4. Optionally add scripts/, references/, and assets/ subdirectories

For a more complete scaffolding experience with generated example files, use the init_skill.py script from the Skill Creator skill instead.

相关技能 Related Skills