Everything you need to know about installing and using Claude Code skills.
Get a skill running in under 60 seconds:
# 1. Download the skill (you'll get a .zip after purchase) # 2. Extract to your skills directory unzip transcript-agent.zip -d ~/.claude/skills/ # 3. That's it. Use Claude Code normally. claude "analyze this YouTube video: https://..." ✓ Skill loaded: transcript-agent
Skills work with any Claude Code installation — free tier or Pro.
mkdir -p ~/.claude/skills
After purchase, you'll receive a .zip file. Extract it to the skills directory:
unzip skill-name.zip -d ~/.claude/skills/
Your skills directory should look like this:
~/.claude/skills/ ├── transcript-agent/ │ └── SKILL.md ├── x-tweet-generator/ │ └── SKILL.md └── ... (other skills)
That's it! Claude Code automatically detects and loads skills when they're relevant to your task.
Skills are instruction files that teach Claude Code how to handle specific tasks. When you ask Claude to do something, it checks your skills directory and automatically loads relevant skills based on:
You'll see ✓ Skill loaded: skill-name in the output when a skill activates.
Each skill is a folder containing at minimum a SKILL.md file:
skill-name/ ├── SKILL.md ← Required: The "brain" of the skill ├── scripts/ ← Optional: Python/Bash helpers │ └── helper.py ├── references/ ← Optional: Additional docs │ └── api-docs.md └── assets/ ← Optional: Templates, images └── template.md
This is where all the magic happens. It contains:
Some skills include scripts that need execute permissions:
chmod +x ~/.claude/skills/skill-name/scripts/*.sh
Email [email protected] with:
Skills themselves are local files and work offline. However, some skills call external APIs (like YouTube transcripts) which require internet.
Yes! Skills are just markdown files. Feel free to customize them for your workflow. We recommend keeping a backup of the original.
Individual purchases include 12 months of updates. All-Access members get lifetime updates. When we release an update, you'll receive an email with download links.
Absolutely! Check out the skill-creator-plus skill which teaches you how to build effective skills with a philosophy-first framework.