All instructional content in this skill comes from Anthropic. It is a community-built interactive packaging of "The Complete Guide to Building Skills for Claude" (Anthropic, January 2026). Every concept, example, pattern, and best practice originates from that guide. This repository is not affiliated with, endorsed by, or sponsored by Anthropic. Please read the original PDF for the canonical, authoritative material.
An interactive Claude Skill that walks you through designing, writing, testing, and distributing your own Skill for Claude - the way most "guides" should work now that you have a world-class educator in your pocket.
Instead of reading a 33-page PDF, you load this skill and your agent teaches you conversationally: it asks what you want to build, helps you nail down use cases, drafts the YAML frontmatter and instructions with you, walks you through testing, and runs a pre-flight checklist before you ship.
Mid-tutorial: the agent walks you through the concepts and checks understanding with multiple-choice prompts before moving on.
- Source material — owned by Anthropic: "The Complete Guide to Building Skills for Claude" (January 2026). All conceptual content, examples, patterns, and best practices in this skill come from that guide.
- Idea to convert the PDF into a skill: Ali Yahya (@alive_eth) — "Why is this a PDF?? We now all have a genius world class educator in our pocket. This 'guide' should be a skill file that gets your agent to walk you through everything you need to know interactively. That is how most education should work going forward."
- This packaging: a transformative derivative work under MIT license. It does not re-license Anthropic's underlying guide, which remains their property.
build-a-skill/
├── SKILL.md # The interactive tutorial flow
└── references/
├── fundamentals.md
├── planning-and-design.md
├── technical-requirements.md
├── writing-instructions.md
├── testing-and-iteration.md
├── distribution.md
├── patterns.md
├── troubleshooting.md
├── checklist.md
└── resources.md
The skill itself is a small example of progressive disclosure: SKILL.md is the lean entry point, and the chapter-by-chapter material lives in references/ so Claude only loads what's needed for the user's current stage.
Two-step install (this is the path the official guide recommends):
- From Releases (recommended): grab the latest
build-a-skill-vX.Y.Z.zipfrom github.com/egalano/build-a-skill/releases/latest. The zip extracts to abuild-a-skill/folder containingSKILL.md. - Or clone the repo:
git clone https://github.com/egalano/build-a-skill.git.
For Claude.ai (web or desktop):
- Open Claude.ai → Settings → Capabilities → Skills.
- Click Upload skill.
- Select
build-a-skill-vX.Y.Z.zip(or zip thebuild-a-skill/folder yourself if you cloned). - Toggle the skill on.
For Claude Code:
# After cloning or unzipping
cp -r build-a-skill ~/.claude/skills/Start a new conversation and say one of:
- "Walk me through building a skill"
- "Teach me how to make a Claude skill"
- "/build-a-skill"
The skill should load automatically and the tutorial will begin.
If you'd rather skim the source material than be tutored through it, the chapter files under build-a-skill/references/ are condensed, human-readable summaries of the original guide.
Total time: about 15-30 minutes for a working first skill. The agent will:
- Ask what you want to build.
- Cover fundamentals (what a skill is, progressive disclosure, how it composes with MCP) - briefly, and only the parts you don't already know.
- Help you write 1-3 concrete use cases.
- Pick a success signal you actually care about.
- Draft your YAML frontmatter with you (especially the
descriptionfield, which is the single most important thing). - Co-write the body of
SKILL.md. - Pick the workflow pattern that fits your category.
- Walk you through triggering tests, functional tests, and a quick before/after comparison.
- Show you how to distribute it (just yourself, your team, the world, or via API).
- Run a pre-flight checklist before declaring you done.
At the end you'll have a real folder on disk with a real SKILL.md you can upload immediately.
MIT. See LICENSE. Adapt freely.
If you find a chapter that's missing, a pattern that's wrong, or a question the tutorial doesn't handle well, open an issue or a PR.