← Back to Lessons
Claude Skills 101

What Is a Claude Skill?

A skill is a small folder of instructions that teaches Claude Code one specific job. Claude loads it on its own when your request matches. Here is how they work and how to get one.
⏱ ~5 min read

The short version. A skill is a folder that lives on your machine and teaches Claude Code how to do one specific job well. You do not call it like a command. You just ask for the thing in plain language, and Claude loads the skill on its own when your request matches what the skill is for.

Why it matters. Out of the box, Claude is a strong generalist. A skill turns it into a specialist for a task you do often: pulling a YouTube transcript, building a slide deck, researching with citations. You teach it once, then it is there every session.

1
What a skill actually is
1 min

A skill is just a folder with one required file inside it called SKILL.md. That file has two parts:

Part 1: The frontmatter

A short block at the top with a name and a description. The description is the important part. It tells Claude what the skill does and when to use it. This is what Claude reads to decide whether the skill is relevant to your request.

Part 2: The instructions

Everything below the frontmatter. Plain Markdown that tells Claude how to do the job: the steps to follow, the commands to run, the format to return. This only gets loaded into Claude's context when the skill actually triggers, so a folder full of skills costs you nothing until one is needed.

A skill can also bundle extra files next to SKILL.md: a scripts/ folder for code Claude runs, or reference docs it reads only when needed. But the minimum is one folder and one SKILL.md.

2
Where skills live
1 min

There are two homes for skills, and the difference is just scope:

Global skills

Path: ~/.claude/skills/<name>/

Available in every Claude Code session, in any folder on your machine. This is where you put the skills you use everywhere. The YouTube Transcript skill installs here.

Project skills

Path: .claude/skills/<name>/ inside a specific project folder.

Only available when you are working in that project. Good for skills that only make sense for one codebase or one client.

For most people starting out, global is the right default. Put it in ~/.claude/skills/ and forget about it.

3
How Claude decides to use one
1 min

You never type a skill's name (though you can, with a slash). Here is the actual mechanism:

  1. Every skill's name and description are always visible to Claude in the background. The full instructions are not loaded yet, just that one-line summary.
  2. When you send a message, Claude checks your request against those descriptions.
  3. If your request matches a skill's description, Claude loads that skill's full instructions and follows them.

This is why a good description is everything. The Transcript skill triggers on phrases like "get the transcript of this video" because its description says exactly that.

One quirk worth knowing

Claude tends to reach for a skill on multi-step or specialized tasks. For something trivial it can already do in one move, it may just do it directly and skip the skill. That is normal. The skill is there for the jobs that actually benefit from it.

4
How to install a skill
1 min

Two ways, both easy:

Option A: Paste a prompt

The simplest path. A well-made skill ships as a single copy-paste prompt. You paste it into Claude Code, and Claude creates the folder, writes the files, installs any dependencies, and verifies it. The YouTube Transcript skill works exactly this way: one paste, about ten seconds.

Option B: Drop in a folder

If someone hands you a skill folder, just place it at ~/.claude/skills/<name>/. As long as it has a SKILL.md inside, Claude will find it. Restart Claude Code or start a new session so it picks up the new skill.

Restart after installing

New skills are detected when a session starts. After you install one, start a fresh Claude Code session so the skill loads.

5
See what skills you have
30 sec

To list the skills installed globally on your machine, open Claude Code and ask:

List the skills I have installed and what each one does.

Claude can read your ~/.claude/skills/ folder and tell you. Or check it yourself in the terminal:

ls ~/.claude/skills/

Each folder name is a skill. Look inside any one of them for its SKILL.md to see what it does.

6
Where to go next

Now you know what a skill is, where it lives, and how to get one. The natural next questions:

  • Want a real, useful one right now? Install the YouTube Transcript skill. It is the cleanest example of everything above: one paste, auto-triggers on a URL, no API keys.
  • Want to make your own? Once you have used a few skills, building one is the fun part. See Build Your Own Skill for the full walkthrough.

Questions?

Made by AI Service Engine · try the YouTube Transcript skill · build your own skill