Skill Template (empty scaffold)
OfficialThe minimal SKILL.md scaffold from Anthropic's official skills repo, meant to be copied as the starting point for your own Claude Code skill.
UtilitiesBeginner★ 167,132⑂ 19,920AI score 3/10Last updated: Aug 7, 2026
What it does
This is not a functional skill — it is an empty template that you copy to start authoring a new skill.
- Provides a bare
SKILL.mdwith the two required frontmatter fields:nameanddescription. - The body contains only a placeholder heading, so you fill in your own instructions.
- Matches the exact convention used by Anthropic's official
skillsrepository, reducing format mistakes that prevent a skill from loading.
Who it's for
- Anyone writing their first custom Claude Code skill.
- Teams packaging internal conventions, style guides, or review checklists as a skill.
- Developers maintaining many skills who want a consistent structure.
Examples
- Commit convention skill — copy the template, set
name: commit-convention, describe it as "use when writing or reviewing commit messages", and list your team's rules in the body. - Report formatting skill — set the description to "use when drafting the weekly report" and define required sections and table layout in the body.
- Reference for learning the format — read this file first to understand the minimum frontmatter requirements before studying larger, more complex skills.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the template folder from the GitHub repo anthropics/skills into my ~/.claude/skills/template-skill/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/anthropics/skills.git && mkdir -p ~/.claude/skills/template-skill && cp skills/template/SKILL.md ~/.claude/skills/template-skill/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the official repo:
git clone https://github.com/anthropics/skills.git - Create your skill folder:
mkdir -p ~/.claude/skills/my-new-skill - Copy the template:
cp skills/template/SKILL.md ~/.claude/skills/my-new-skill/ - Open
~/.claude/skills/my-new-skill/SKILL.md, changenameto match the folder (my-new-skill), and write adescriptionthat states what the skill does and when Claude should trigger it. - Replace
# Insert instructions belowwith the actual instructions you want Claude to follow. - Restart Claude Code and check your skill list to confirm the new skill is detected.