Skill Creator Guide 2026: How to Build Claude Skills That Actually Trigger
Complete guide to Anthropic's Skill Creator: install steps, the guided creation flow, v2 evals with the HTML viewer, and the five mistakes that stop skills from ever triggering.

TL;DR — Skill Creator, the Skill That Builds Skills
Skill Creator is Anthropic's official meta skill: install it in Claude Code and it turns skill authoring from folder archaeology into a guided workflow. It interviews you about the task, writes the SKILL.md with a trigger-optimized description, structures reference files, and since v2 it generates eval suites so you can test skills the way you test code, complete with an HTML viewer comparing versions. If you maintain more than one skill, or your hand-written skills never seem to trigger, this is the first thing to install. Free and open source from the anthropics/skills repo.
Official Anthropic skill · Free · The fastest path from workflow to installable expertise
Table of Contents
- What Is Skill Creator?
- Why a Meta Skill Matters
- Installing Skill Creator
- Creating Your First Skill
- Anatomy of a Good Skill
- Evals: Testing Skills Like Code
- Improving an Existing Skill
- Skill Creator vs the Alternatives
- Five Common Mistakes
- Frequently Asked Questions
What Is Skill Creator?
Skill Creator is the meta skill in Anthropic's open-source skills repository: a skill whose entire job is creating, evaluating, and improving other skills. Agent Skills are the folder-based capability format used by Claude Code and a growing list of compatible clients; each one is a SKILL.md manifest plus optional scripts, templates, and reference files that load into the agent's context on demand.
Writing those folders by hand is easy to do badly. The frontmatter has rules, descriptions decide whether the skill ever triggers, and bloated instructions silently eat your context window. Skill Creator encodes Anthropic's own authoring guidance into a workflow the agent executes with you, in three modes:
- Create: a guided interview that turns "here's a workflow I keep repeating" into a properly structured skill.
- Eval: generate and run test prompts against the skill, scoring trigger accuracy and output quality.
- Improve: audit and upgrade an existing skill, with before/after comparison.
Why a Meta Skill Matters
The skills ecosystem crossed from novelty to infrastructure in 2025-2026. Directories like Skiln now index tens of thousands of skills alongside MCP servers, and teams treat private skills as the way to encode tribal knowledge: deploy protocols, review checklists, brand systems like the one in our UI/UX Pro Max review.
That scale creates a quality problem. Registry data shows the same failure patterns everywhere: skills that never trigger because their descriptions are vague, skills that dump 4,000 lines into context up front, skills that contradict their own instructions. A meta skill that institutionalizes good structure is how the ecosystem keeps its floor high, the same way linters and test frameworks did for code.
Installing Skill Creator
Two common paths. Direct from the repo:
git clone https://github.com/anthropics/skills.git cp -r skills/skills/skill-creator ~/.claude/skills/
Or via the plugin marketplace inside Claude Code, which keeps it updated automatically:
/plugin marketplace add anthropics/skills /plugin install skill-creator@anthropic-agent-skills
Restart Claude Code and confirm it appears in the skills list. Community republished copies exist (the OpenClaw mirror, the SkillsDirectory listing), but prefer the canonical anthropics/skills source for updates.
Claude Code itself is free to install; model usage is the cost. Our Claude Code pricing breakdown covers what Pro and Max subscriptions actually include.
Creating Your First Skill
Invoke it with a plain request: "Use skill-creator to build a skill for our release-notes process." The flow looks like this:
- Interview. It asks what the task is, when it should trigger, what good output looks like, and what resources (templates, scripts, examples) already exist.
- Draft. It writes the SKILL.md: name, a description engineered around your trigger phrases, then the procedure itself in concise imperative steps.
- Resource split. Anything long (style guides, schemas, example outputs) moves into separate reference files loaded only when needed, keeping the always-loaded core small.
- Dry run. It simulates a triggering request and walks the skill end to end, fixing gaps it finds.
- Eval scaffold (v2). Optionally, it writes test cases now so future edits can be regression-tested.
A first skill takes 10 to 20 minutes this way, most of it spent answering the interview honestly rather than fighting format.
Anatomy of a Good Skill
The structure Skill Creator produces follows a few firm rules worth knowing even if you never write one by hand:
- The description is the API. It must name explicit triggers ("use when the user mentions X, Y, /command Z") because Claude selects skills by scanning names and descriptions only.
- Core stays short, references load on demand. The SKILL.md should be a procedure, not an encyclopedia. Deep material belongs in reference files the agent opens when the step requires it.
- Imperative voice, numbered phases, verification steps. Skills that read like runbooks outperform skills that read like essays.
- Scripts for determinism. Anything that must happen exactly the same way every time (API calls, file moves, format validation) belongs in a bundled script the skill shells out to, not in prose the model might paraphrase.
Evals: Testing Skills Like Code
The v2 eval system is the feature that moved Skill Creator from convenience to necessity. It works like a lightweight test framework:
- You (or the skill) define eval cases: a prompt, plus expectations about whether the skill should trigger and what the output must contain.
- The runner executes each case in a fresh context and scores the results.
- An HTML eval viewer renders old-vs-new comparisons, so an "improvement" that quietly breaks triggering shows up red before you ship it.
This matters because skill edits have invisible blast radius. Rewording a description can stop a skill from ever firing again, and without evals you find out weeks later. Teams now gate skill PRs on eval passes exactly like unit tests.
Improving an Existing Skill
Point Skill Creator at any skill folder and ask for an audit. Typical findings, in order of frequency:
- Vague description, rewritten with concrete trigger phrases and negative cases ("do NOT use for...").
- Context bloat, with long sections split into on-demand references.
- Missing verification, adding explicit "confirm the output before declaring success" steps.
- Stale facts, flagging hardcoded versions, URLs, and dates for review.
Run the eval suite before and after, keep the version that scores higher. That loop, audit, edit, eval, is the whole discipline of skill maintenance in four words.
Skill Creator vs the Alternatives
The honest summary: hand-writing remains fine for trivial single-file skills, and Skill Creator wins everywhere else, especially once evals enter the picture. Community generators indexed on Skiln are worth a look when you need a niche house style, but most are create-only and skip testing entirely.
Five Common Mistakes
- Writing the skill for yourself instead of the model. The agent has no memory of your intentions; if a step is implicit, it will be skipped.
- Stuffing everything into SKILL.md. Context is a budget. Reference files exist; use them.
- Descriptions without trigger phrases. "Helps with deployments" never fires. "Use when the user says deploy, ship, release, or /deploy" fires.
- No negative scope. Skills that do not say what they are NOT for end up triggering on adjacent tasks and making messes.
- Shipping edits without evals. The eval viewer exists so you stop discovering broken triggers in production conversations.
Explore thousands of skills already indexed on Skiln, then build the one that's missing.
Browse Now →Frequently Asked Questions
What is the Skill Creator skill?
Skill Creator is Anthropic's official meta skill for building other skills. Installed in Claude Code, it walks you through a guided creation flow: it interviews you about the task, drafts the SKILL.md with correct frontmatter, structures supporting files, and in v2 it can also generate eval suites that test whether the skill actually triggers and performs as intended.
Is Skill Creator free?
Yes. It lives in the open-source anthropics/skills repository on GitHub under a permissive license. You pay only your normal Claude usage. There is no separate subscription or API product attached to it.
What changed in Skill Creator v2?
The headline addition is evaluations. v2 can generate test prompts with expected behaviors, run your skill against them, and render an HTML eval viewer comparing old and new versions side by side. It also got better at optimizing skill descriptions, which control when Claude decides to trigger a skill.
Do I need to know how to code to use Skill Creator?
No. Skills are primarily markdown instructions, and Skill Creator's guided Q&A handles structure for you. Coding knowledge only matters if your skill bundles executable scripts or templates, which is optional. Many of the most useful skills are pure process documentation.
What makes a skill trigger reliably?
The description field in the SKILL.md frontmatter. Claude scans available skill names and descriptions when deciding what to load, so descriptions need explicit trigger phrases, contexts, and example requests. Skill Creator's description-optimization step exists precisely because vague descriptions are the number one reason skills never fire.
Can Skill Creator improve skills I wrote by hand?
Yes, and that is arguably its best use. Point it at an existing skill folder and ask for an improvement pass: it audits the structure, tightens the description, splits oversized instructions into on-demand reference files, and can generate an eval suite to prove the new version beats the old one.
Where should I publish a finished skill?
GitHub is the canonical home, and from there registries pick it up. Skiln indexes skills from 13 sources including SkillsDirectory, OpenClaw, Smithery, and LobeHub, so a public repo with a clear README and SKILL.md typically appears in search within days.
How is a skill different from a custom GPT or a prompt template?
Skills are modular, versioned, and load on demand inside an agent that also has tools, files, and shell access. A prompt template is static text you paste; a skill is a folder the agent consults mid-task, can include scripts and references, and composes with other skills. Think of skills as installable expertise rather than canned prompts.
Last updated: June 12, 2026 · Skiln tracks skill releases daily across 13 source registries.