Back to Home
Skill Start Guide

Skill Start Guide

Everything you need to know to discover, install, and create skills for Claude AI.

What Are Skills?

Skills are modular, folder-based capabilities that extend what Claude can do. Think of them as expertise packages — collections of instructions, scripts, and resources that Claude automatically discovers and uses when they are relevant to your task.

How Skills Load: Progressive Disclosure

Skills use a three-tier system to stay efficient — only loading what each task requires.

1
Metadata — Always loaded

~100 tokens. The skill name and description from YAML frontmatter. Claude uses this to decide if a skill is relevant.

2
Main Instructions — Loaded when triggered

The full SKILL.md body with procedures, workflows, and examples. Only read when the skill becomes relevant.

3
Additional Resources — Loaded as needed

Reference files, scripts, templates, and data. Zero context cost until accessed.

Key benefit: You can bundle comprehensive documentation without penalty. Claude only loads what each specific task requires — keeping conversations fast and focused.

Skill Structure

Every skill needs at minimum a single SKILL.md file. Additional files are optional and loaded on demand.

File structure
your-skill/
├── SKILL.md          # Required — instructions & metadata
├── reference.md      # Optional — detailed reference docs
├── examples.md       # Optional — usage examples
└── scripts/          # Optional — executable utilities
    ├── analyze.py
    └── validate.py
SKILL.md format
---
name: my-skill-name
description: What this skill does and when to use it
---

# My Skill Name

## Instructions
Your procedures, workflows, and guidance here.

## References
See [reference.md](reference.md) for advanced content.

Name

Max 64 characters. Lowercase letters, numbers, and hyphens only. Use gerund form when possible: processing-pdfs

Description

Max 1024 characters. Must describe both what it does and when to use it. This is the activation mechanism.

Best Practices

Keep it concise

Aim for under 500 lines in SKILL.md. Claude is already smart — only add context it does not have. Use progressive disclosure by referencing separate files for advanced content.

Write effective descriptions

The description determines when Claude activates your skill. Be specific about both purpose and trigger conditions.

Good

"Extract text and tables from PDFs. Use when working with PDF files or document extraction."

Too vague

"Helps with documents"

Match specificity to fragility

Give Claude more or less freedom depending on how sensitive the operation is.

High freedom
Code reviews, analysis, creative tasks — multiple approaches are valid
Medium
Templated tasks with customization — some variation is acceptable
Low freedom
Database migrations, critical sequences — use exact scripts

Test across models

What works for Opus may need more detail for Haiku. Test your skill with all models you plan to use it with: Haiku (needs more guidance), Sonnet (balanced), and Opus (handles less explanation).

Skills Ecosystem

Skills are one part of a broader toolkit. Here is how they compare to related technologies.

TechnologyWhat it doesPersistenceBest for
SkillsProcedural knowledge and reusable expertiseAcross conversationsRepeated workflows, domain expertise
MCP ServersExternal system access via standardized protocolContinuous connectionReal-time data, external APIs
ConnectorsPre-built integrations for popular servicesContinuous connectionQuick setup for common tools
PromptsOne-time instructions for a single conversationSingle conversationAd-hoc tasks, one-off requests
ProjectsBackground context and reference documentsProject scopeShared context across team conversations

Skills + MCP are complementary: Skills provide internal procedures and expertise, while MCP connects to external systems. You can combine both for powerful capabilities — for example, a skill that knows how to analyze data paired with an MCP server that provides the data.

Resources

Curated links to official documentation, tutorials, and community resources.

Ready to explore?

Browse our curated collection of skills and MCP servers for every workflow.