Claw field notebook
last updated 2026-05-14 edit on GitHub colophon
Anthropic / Claude.ai / WEB.3 · 5 min read

Claude.ai Skills — Markdown instruction packs Claude loads on demand

Skills are Markdown instruction folders (SKILL.md plus optional scripts and resources) that Claude reads dynamically to do specialised tasks better. Available on paid Claude.ai plans. What they are, how they're created, the Skills Directory, and how they differ from Projects and MCP.

What a Skill is#

A Skill in Claude.ai is a folder of Markdown instructions, scripts, and resources that Claude loads dynamically when it’s working on a task that fits. The folder contains at minimum a SKILL.md file describing what the Skill is for and how Claude should use it; it can optionally include scripts (executed via the Code Execution Tool when needed) and reference files.

Key properties:

  • Markdown-first, not “callable tools with typed parameters.” You’re not defining function signatures; you’re writing instructions Claude reads.
  • Auto-invoked. Claude scans the available Skills, decides which (if any) are relevant to the current task, and loads them on demand. You can also nudge it explicitly (“use my repo-search skill”) but the default pattern is automatic.
  • Personal (your account) or organisation-provisioned (Team / Enterprise admins push Skills to all users).
  • Paid-plan only. Skills are available on Pro, Max, Team, and Enterprise — not the Free tier.

How Skills relate to other Claude.ai surfaces:

SkillMCP serverProject custom instructions
What it isMarkdown instruction folder (SKILL.md + optional scripts/resources)Local-process tool server speaking the MCP protocolPlain-text system prompt scoped to one Project
Auto-invoked?Yes — Claude picks Skills that fit the taskNo — Claude calls explicit toolsN/A — always applied within the Project
Code execution?Optional — runs in Claude.ai’s Code Execution Tool sandboxYes — runs as the MCP server process on your machineNone
Available inPro/Max/Team/Enterprise (paid)Any MCP-aware host (Claude Code, Claude.ai, others)One Project
SetupWrite SKILL.md + scripts, OR use the built-in skill-creatorConfig in ~/.claude.json + local processProject settings
Best forReusable workflows + domain knowledge applied across chatsHeavy integrations with external systems (DBs, GitHub, browsers)Persona + voice + project context

If you want Claude to follow a specific workflow across every chat (a reusable “do it this way” pattern), a Skill is the right tool. If you need Claude to call out to external systems with real-time data, an MCP server is the right tool. If you want a project-scoped persona, use Project instructions.

A real example#

Suppose you want Claude to convert prose into a 5-bullet executive summary in a specific format whenever it’s relevant. The Skill folder might look like:

exec-summary/
├── SKILL.md           # instructions: when to use, format rules, examples
└── examples/
    └── before-after.md  # optional reference material

SKILL.md (excerpt):

---
name: exec-summary
description: Convert long-form text into a 5-bullet executive summary. Use when the user asks for a TL;DR, an executive summary, or a quick brief on a long document.
---

## Format rules

- Always 5 bullets, no more, no fewer.
- Each bullet: one sentence, present tense, action-first.
- Lead each bullet with the verb. No "We are..." or "It is..."
- Markdown dashes, no numbered lists, no nested bullets.

## Examples

[Include 1–2 before/after examples to anchor Claude's output...]

Now in any chat: paste a long report, and Claude will recognise the task fits the Skill, load the instructions, and produce bullets in the format you defined. You can also be explicit: “use the exec-summary skill on this report.”

Common Skill patterns:

  • Format converters (prose → bullets, bullets → narrative, raw notes → meeting minutes)
  • Domain transforms (code → architecture description, error log → root-cause hypothesis)
  • Quick lookups (your team’s terminology, your style guide rules)
  • Multi-step workflows (research → critique → revise, baked into one Skill)
  • Personal aliases (my-voice, my-format, my-checklist)

How to create one#

In Claude.ai → Settings → Capabilities → Skills. Three creation paths:

  1. Use the built-in skill-creator. Anthropic ships a Skill called skill-creator. Start a chat, mention what you want, and it asks about your workflow + generates the folder structure, SKILL.md, and any supporting files for you. Easiest path.
  2. Write the Markdown yourself. Create a folder with a SKILL.md at minimum. Upload via the Skills UI.
  3. Have Claude write it in conversation. Describe what you want; ask Claude to produce a SKILL.md; copy the output into the Skills UI.

Worth investing in:

  • Specific descriptions in the frontmatter. Vague Skills don’t trigger when they should. Concrete examples of “use when X” anchor Claude’s decisions.
  • Explicit format rules + examples. “Do” + “don’t” guards stop the model from drifting.
  • Don’t over-Skill. If a behaviour only matters in one Project, use Project instructions, not a Skill.

The Skills Directory#

Anthropic added a Skills Directory (also called Connectors at claude.ai/connectors) featuring partner-built Skills from Notion, Figma, Atlassian, and others. You can install these into your account from the directory without writing your own SKILL.md.

This means three sources of Skills:

  • Built-in (skill-creator and a few utilities Anthropic ships)
  • Partner Skills from the Directory (vendor-maintained — Notion’s, Figma’s, etc.)
  • Your own personal or organisation Skills

Where Skills bite#

Scope-creep#

Once you have 30 Skills, you forget which one does what. Discipline: review your Skills monthly, delete unused ones, consolidate overlapping ones.

Discoverability#

Claude doesn’t always auto-pick the right Skill. Sometimes you need to be explicit (“use the exec-summary skill”) rather than rely on Claude to recognise that’s what you wanted. Sharp Skill descriptions help; vague ones get ignored.

Versioning#

When you edit a Skill, all future calls use the new version. Old chats still reference the old behaviour in transcript but don’t re-execute. There’s no built-in rollback.

Code execution#

If your Skill bundles scripts, those run in Claude.ai’s Code Execution Tool sandbox — not arbitrarily on your computer. The sandbox is restricted, and not every plan tier has the Code Execution Tool turned on. Check support docs for which features are available on your tier.

Free tier#

Skills are paid-plan only. If a teammate on Free can’t see your Skills shared via Workspace, that’s why.

When to NOT use a Skill#

  • You need filesystem / network / DB access on your local machine → MCP server instead
  • The “Skill” is just a longer prompt with no reusability → Project custom instructions instead
  • You’re building a product feature for end users → API + your own backend instead
  • You need code to execute on your computer (not Anthropic’s sandbox) → MCP server or Claude Code instead

Common pitfalls#

SymptomCauseFix
Claude doesn’t auto-pick my SkillDescription vague; “when to use” trigger conditions missingRewrite frontmatter description with concrete triggers + examples
Skill output is inconsistent across chatsSKILL.md instructions too open-endedAdd explicit format constraints + before/after examples
Workspace Skill not visible to meYou’re on Free, or admin hasn’t provisioned it for your roleVerify your plan tier; ask admin
Editing a Skill broke old workflowsOld chats reference the renamed SkillBe careful renaming; create v2 alongside v1 if needed
Skill seems to load but its bundled script does nothingCode Execution Tool not enabled on your plan tierCheck tier capabilities

What to do next#

Sources