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.
~100 tokens. The skill name and description from YAML frontmatter. Claude uses this to decide if a skill is relevant.
The full SKILL.md body with procedures, workflows, and examples. Only read when the skill becomes relevant.
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.
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--- 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.
"Extract text and tables from PDFs. Use when working with PDF files or document extraction."
"Helps with documents"
Match specificity to fragility
Give Claude more or less freedom depending on how sensitive the operation is.
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.
| Technology | What it does | Persistence | Best for |
|---|---|---|---|
| Skills | Procedural knowledge and reusable expertise | Across conversations | Repeated workflows, domain expertise |
| MCP Servers | External system access via standardized protocol | Continuous connection | Real-time data, external APIs |
| Connectors | Pre-built integrations for popular services | Continuous connection | Quick setup for common tools |
| Prompts | One-time instructions for a single conversation | Single conversation | Ad-hoc tasks, one-off requests |
| Projects | Background context and reference documents | Project scope | Shared 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.
Official Documentation
Blog Posts & Tutorials
Official announcement and overview of Claude skills
Deep dive into how skills work under the hood
Step-by-step guide with examples and limitations
Specific guidance for Claude Code skill development
Using skills to enhance frontend development workflows
Engineering deep dive on agent skill architecture
Community & Tools
Ready to explore?
Browse our curated collection of skills and MCP servers for every workflow.