How to Add Skills to Claude
The four real ways to add skills to Claude — download from Agensi, clone from GitHub, connect the MCP server, or write your own.
Quick Answer: To add a skill to Claude, drop a
SKILL.mdfile (with optional supporting files) into~/.claude/skills/SKILL_NAME/. Claude Code, Claude Desktop, and the Claude API all read from this directory. The fastest source: download a ready-made skill ZIP from agensi.io, unzip it, and restart Claude. Verify with/skills.
Adding skills is the single highest-leverage thing you can do with Claude. A well-written SKILL.md turns a one-paragraph prompt into a permanent capability. This guide covers all three Claude surfaces — Code, Desktop, and API — and the four real ways to source skills.
Where Claude looks for skills
All Claude products read from the same location:
~/.claude/skills/
├── code-reviewer/
│ └── SKILL.md
├── git-commit-writer/
│ └── SKILL.md
└── README.md (optional)
For project-scoped skills committed to a repo, use .claude/skills/ instead.
Recommended skills
Cross-Agent Skill Porting with Grok (v1.5)
by Markus Isaksson
Port your AI agent skills across Grok, Claude, Cursor, and Copilot using a profe…
Skill Safety Scanner
by karim hammoumi
Scan AI agent skill definitions for malicious instructions, prompt injections, a…
designing-hybrid-context-layers
by Loreto.io · 12
Architects the right retrieval strategy for every query — teaching your agent wh…
Method 1: Download from Agensi
Go to agensi.io/skills, pick a skill, click Download, then:
unzip code-reviewer.zip -d ~/.claude/skills/
Every Agensi skill goes through an 8-point automated security scan before listing.
Method 2: Clone from GitHub
git clone https://github.com/author/skill-name.git ~/.claude/skills/skill-name
GitHub skills are not vetted — read the SKILL.md and any scripts before installing.
Method 3: One-liner curl install
Skip the manual unzip step. From any agensi.io skill page, grab the slug and run:
mkdir -p ~/.claude/skills && curl -sL https://www.agensi.io/api/install/<slug> | tar xz -C ~/.claude/skills/
The command creates the skills directory if needed, downloads the archive, and unpacks it in one step. Free skills install directly; paid skills require purchase first.
On Windows PowerShell:
New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills" | Out-Null
irm https://www.agensi.io/api/install/<slug> -OutFile skill.tar.gz; tar -xzf skill.tar.gz -C "$HOME\.claude\skills"; del skill.tar.gz
Method 4: Write your own
mkdir -p ~/.claude/skills/my-skill
cat > ~/.claude/skills/my-skill/SKILL.md <<'EOF'
---
name: my-skill
description: One-sentence description of what this does and when to use it.
---
# My Skill
Instructions for Claude here.
EOF
Comparison: where each method shines
| Method | Best for | Vetted | Cost |
|---|---|---|---|
| Agensi download | Curated quality | Yes (8-point scan) | Free or one-time |
| Curl one-liner | Single command install | Yes (8-point scan) | Free or one-time |
| GitHub clone | Bleeding-edge / experimental | No | Free |
| Write your own | Team-specific workflows | N/A | Free |
Verify the install
Inside Claude Code, run /skills. The list shows every loaded skill with name and description. Press t to sort by token cost.
Common mistakes
- Putting
SKILL.mddirectly in~/.claude/skills/instead of inside a named folder - Tabs in the YAML frontmatter (must be spaces)
- Forgetting to restart Claude Code after dropping in a new skill folder
- Identical
descriptionfields across two skills — Claude can't tell them apart
What's next
- How to install skills in Claude Code — full installation methods
- SKILL.md format reference — every frontmatter field
- Where are Claude skills stored? — paths across OS and surfaces
Frequently Asked Questions
Skills you might need
consumer-motivation-analyzer
$19Go beyond surface-level feedback to uncover the psychological drivers and hidden…
keyword-research
$7Transform URLs or product lists into SEO keyword research packs with Google Ads…
Bounty Security Pattern Master Library — 399 Vulnerability Patterns
$75A premium library of 399 vulnerability patterns and DeFi attack vectors for AI-d…
Related Articles
Best AI Agent Skills for Solo Developers (2026)
The best SKILL.md skills for solo developers and indie hackers. Multiply your output without hiring.
5 min read
Best AI Agent Skills for Code Quality (2026)
The best SKILL.md skills for writing cleaner code, catching bugs earlier, and maintaining quality across your codebase.
5 min read