Claude Agent Skills Guide
Agent Skills are modular capabilities that extend Claude's functionality. Through a standardized filesystem structure, they equip agents with domain-specific expertise.
Modular
Create once, reuse infinitely. No need to repeat prompts in every conversation.
Filesystem-based
Runs on a virtual filesystem. Manage AI skills just like you manage project code.
Progressive Disclosure
Loads files on demand, significantly saving Context Window usage.
How it Works: Progressive Disclosure
Click the cards below to see how Claude loads information in stages.
Metadata
Always LoadedLoads only YAML frontmatter. Extremely low cost (~100 tokens).
desc: Extract text...
Instructions
On TriggerReads SKILL.md when user intent matches description.
## Steps...
Execution
On DemandReads reference docs only when needed. Code logic stays out of context.
> Output data
Skill File Structure
SKILL.md is the entry point. Split complex instructions into child files to avoid consuming too many tokens at once.
Templates & Best Practices
Best Practices
Use Gerunds (e.g., processing-data) to clearly state "what is happening".
Description is injected directly into System Prompt. Avoid "I help you...", use "Extracts data from..." instead.