Claude skills · directory
Claude skills marketplace: where skills actually live.
People search for a Claude skills marketplace; what exists is a short list of real discovery surfaces. This page maps them — and shows how to install a skill, write your own, and pick the best ones for Claude Code.
Free to start · no credit card.
There is no single official Claude skills marketplace as of June 2026. Anthropic ships built-in skills inside Claude and maintains a public skills repository on GitHub; everything else is shared through Claude Code plugin marketplaces and community collections. A skill itself is just a folder of instructions — a SKILL.md file plus optional scripts — that Claude loads on demand.
The format
What Claude skills are
A skill is a folder of instructions Claude reads when a task calls for it — your checklists, templates, and conventions, packaged so Claude applies them without being re-told every chat.
A folder, not an app
A skill is a directory with one required file — SKILL.md — plus any helper scripts or templates. No build step, no install wizard.
Loaded on demand
Claude reads only each skill’s name and description up front. The full instructions load when a task actually matches — so skills don’t eat your context.
Works across surfaces
As of June 2026, the same skill format runs in the Claude apps, in Claude Code, and via the Claude API’s code-execution tooling, per Anthropic’s docs.
Yours to version
Because a skill is just files, it lives in Git, gets code-reviewed, and ships to your whole team like any other part of the repo.
Marketplace & directory
Is there a marketplace? Here’s the real directory
No single storefront — four real surfaces. These are where skills are actually published and found today.
Built into Claude
Anthropic ships first-party skills with Claude itself — as of June 2026 that includes document skills for spreadsheets, slides, and PDFs. You toggle them in the app’s settings.
Anthropic’s skills repo on GitHub
The closest thing to an official directory: a public anthropics/skills repository with example and ready-to-use skills you can copy straight into your own setup.
Claude Code plugin marketplaces
Any Git repository can act as a marketplace for Claude Code plugins — bundles of skills, commands, and connectors. Teams and communities run their own.
Community collections
Curated lists and skill packs maintained by the community. Quality varies widely — read a skill’s SKILL.md and scripts before installing it, like any code.
Skills vs connectors
Skills are instructions. Connectors are tools.
A skill tells Claude how to work — your steps, your format. A connector (an MCP server) gives Claude new abilities that reach outside the chat, like publishing a page to the web. The strongest setups pair them: a skill that knows exactly when to call a connector’s tools.
Hands on
Install or create a skill
Installing is copying a folder. Creating one is writing a Markdown file. The whole format fits on a screen.
Pick your surface
In the Claude apps, skills are enabled in settings on paid plans. In Claude Code, skills are folders the agent discovers automatically.
Add the folder
For Claude Code, drop the skill into ~/.claude/skills/ (personal) or .claude/skills/ inside a repo (shared with the team via Git).
Write SKILL.md
YAML frontmatter with a name and a description, then plain-Markdown instructions. The description is the trigger — it’s what Claude reads to decide when to load the skill.
Test the trigger
Ask for a task that matches the description and confirm Claude loads the skill. If it doesn’t fire, sharpen the description — that line does the routing.
my-skill/
├── SKILL.md ← the only required file
└── scripts/ ← optional helpers
---
name: review-checklist
description: Run our code-review checklist. Use when
the user asks for a review or opens a PR.
---
# Review checklist
1. Security — inputs, auth, secrets.
2. Tests — every new path has one.
3. Naming — follow docs/conventions.md.Curated by job
The best skills for Claude Code, by job
Honest take: the best Claude Code skills are mostly written, not downloaded — they encode how your team works. These four jobs are where a skill pays for itself fastest.
Code review
Encode your team’s review checklist — security checks, naming rules, test-coverage expectations — so every review runs the same way, on every PR.
Testing
Teach Claude your house conventions: which framework, how fixtures are built, what coverage counts. Generated tests stop looking like a stranger wrote them.
Docs & changelogs
Carry your templates and tone in a skill so READMEs, changelogs, and release notes come out in your voice — not generic boilerplate.
Deploy & publish
The last mile: a publish skill that ships finished HTML as a live, tracked link via the Pagelive connector — password optional, noindex by default.
Example: a publish-to-web skill
Claude Code builds the HTML; this skill ships it. It pairs the instructions with Pagelive’s connector, so “publish this” becomes a live, branded link on pagelive.site — noindex by default, password optional, with opens, viewers, and time-on-page tracked. The connector is free to start: 10 pages on the free tier; custom domains and unlimited password-protected pages are Pro.
Set up the Pagelive connector →---
name: publish-to-web
description: Ship finished HTML as a live, tracked
link. Use when the user says "publish this",
"ship it", or "send it to the client".
---
When asked to publish:
1. Confirm the HTML is final.
2. Call Pagelive's publish_page tool —
title, html, optional password.
3. Reply with the live link. Stats come
later via get_page_stats.FAQ
Claude skills FAQ
Is there an official Claude skills marketplace? +
Not a single one, as of June 2026. Anthropic ships built-in skills inside Claude and maintains a public skills repository on GitHub. Claude Code adds plugin marketplaces — any Git repository can serve as one — and the community curates collections. There’s no app-store-style storefront.
Where can I find a Claude skills directory? +
Start with Anthropic’s skills repository on GitHub, which holds example and ready-to-use skills. From there, look at plugin marketplaces published for Claude Code and at community-curated collections. Quality varies — read a skill before installing it.
Do skills work in Claude Code, the Claude apps, and the API? +
Yes — as of June 2026, skills run in the Claude apps (on paid plans), in Claude Code, and through the Claude API’s code-execution tooling, per Anthropic’s docs. The same folder format works across all three.
What’s the difference between a skill and an MCP connector? +
A skill is instructions — a folder that tells Claude how to do something with the abilities it already has. A connector adds abilities — live tools that reach outside the chat, like Pagelive’s publish_page. They pair well: a skill can spell out when and how to use a connector’s tools.
Are third-party skills safe to install? +
Treat them like code, because they can bundle scripts Claude may run. Read SKILL.md and any included files first, prefer sources you trust, and keep shared skills in a repo where teammates can review changes.
Related: Claude MCP servers · Claude connectors
Give Claude one more skill: shipping.
Pair a publish skill with the Pagelive connector and every build ends as a live, tracked link. Free to start · noindex by default.