Claude Code Skills·Claude Skills·The open SKILL.md registry for Claude
ClaudSkills › Install Guide

How to Install Claude Skills & Claude Code Skills

Three ways to add a Claude Skill (also called a Claude Code Skill) to Claude Code: the official CLI, a manual git clone, or one click in the ClaudSkills desktop app. Two minutes, no rebuild.

What is a Claude skill?

A Claude skill — also called a Claude Code skill — is a single Markdown file (SKILL.md) that gives Claude specialised instructions for a domain: security audits, SEO analysis, sales prospecting, content generation, code review, and so on. The file has YAML frontmatter (name, description, optional tools, model hints) followed by the prompt body.

Claude Code automatically discovers every SKILL.md in your skills directory at startup and exposes them as slash commands. Claude Skills are plain text — not executable code — so installing one means dropping a Markdown file in the right folder.

Note: ClaudSkills (a.k.a. the Claude Code Skills Catalog) crawls the public GitHub ecosystem nightly and applies an admission threshold to filter out empty or malformed entries. Beyond that, the catalog is presented unrated. Treat skills like any open-source dependency: read the SKILL.md before installing.

Where Claude skills live on your computer

Claude Code looks for skills in a single root folder, with one sub-folder per skill:

OSSkills folder
macOS / Linux~/.claude/skills/{slug}/SKILL.md
Windows%USERPROFILE%\.claude\skills\{slug}\SKILL.md

The folder name (the slug) becomes the slash command. A skill at ~/.claude/skills/seo-audit/SKILL.md is invoked as /seo-audit.

Step 1 — Pick a skill

Browse claudskills.com or jump to a category:

Or skim our curated top 100. When you've picked a skill, copy its slug from the URL — for example, seo-audit from claudskills.com/skills/seo-audit/.

Step 2 — Install — three methods

Method 1 — recommended

Official Claude Code CLI

If you have Claude Code 2.0+ with skill management built in, run:

claude skills install <slug>

The CLI fetches the SKILL.md, drops it in ~/.claude/skills/{slug}/, and reloads automatically.

Method 2 — universal

Manual git clone

Works on any version of Claude Code. Copy the SKILL.md from the source repo into your skills folder:

# macOS / Linux
mkdir -p ~/.claude/skills/<slug>
curl -L https://claudskills.com/skills/<slug>/SKILL.md \
  -o ~/.claude/skills/<slug>/SKILL.md

Or clone the entire ClaudSkills mirror once and symlink:

git clone https://github.com/kinkyb/claudskills ~/claudskills-mirror
ln -s ~/claudskills-mirror/skills/<slug> ~/.claude/skills/<slug>
Method 3 — one click

ClaudSkills desktop app

Download the desktop app (macOS DMG / Windows installer, signed and notarized). Browse the full 117,000+ catalog with live search, click Install, done. The app handles the file copy and reload for you.

Free tier installs are rate-limited; Pro ($9/month or $79/year) or Lifetime ($149) unlock unlimited one-click installs and the curated theme packs.

Step 3 — Verify the install

  1. Fully quit Claude Code (don't just close the window — Claude Code scans skills only at startup).
  2. Reopen Claude Code in the directory you want to use the skill in.
  3. Type / — your new skill should appear in the slash-command auto-complete list as /{slug}.
  4. Or run /help to list every available skill.

If the skill shows up, you're done. If it doesn't, jump to troubleshooting.

Troubleshooting

Skill doesn't appear in /help

Permission denied on ~/.claude/skills/

chmod -R u+rw ~/.claude/skills/

If ~/.claude/ doesn't exist yet, Claude Code creates it on first launch. Run Claude Code at least once before installing skills manually.

Skill runs but produces unexpected output

Read the SKILL.md body — every skill in our catalog is open and human-readable. The "Trigger on" or "When to use" section at the top tells you the intended invocation pattern.

FAQ

Where do Claude Code skills live on my computer?

macOS / Linux: ~/.claude/skills/{slug}/SKILL.md. Windows: %USERPROFILE%\.claude\skills\{slug}\SKILL.md. One folder per skill, named after its slug.

Do I need to restart Claude Code after installing?

Yes — Claude Code scans the skills folder only at startup. Quit fully and relaunch.

Are ClaudSkills installs free?

Browsing and manual install are 100% free, forever. The Pro tier ($9/month or $79/year) and Lifetime ($149) unlock the multi-signal Quality Score on every skill, one-click install in the desktop app, and curated theme packs.

Can I trust skills mined from random GitHub repos?

The catalog applies an admission threshold that filters out empty or malformed SKILL.md files, but beyond that it is presented unrated — every admitted skill appears equally. Always read the SKILL.md before running — skills are plain Markdown, not executable code, so the entire instruction set is auditable in seconds.

How do I uninstall a skill?

Delete the folder at ~/.claude/skills/{slug}/ and restart Claude Code. The desktop app has an uninstall button on every skill detail panel.

Do skills work in the Claude API or only Claude Code?

SKILL.md is a Claude Code convention. The same instructions can be loaded as system prompts via the Claude API or Agent SDK, but the auto-discovery and slash-command surface are Claude Code features.

Browse 117,000+ skills →