Skip to content

Updated August 2026

Best Claude Code Skills Directories in 2026: Where to Find Agent Skills

Last updated: August 2026Maintained by ToolChaseHow we review

The bottom line

Start with Anthropic's own repository, then use a registry for breadth and a curated list for judgment. Nobody has solved discovery for Agent Skills yet. The catalogs that are big are automatically scraped and cannot tell you what is good; the lists that exercise taste are hand-maintained and cannot cover the field. Using one of each is not a workaround, it is currently the correct approach.

Every option below is free. None of them have paid tiers, and ToolChase has no commercial relationship with any of them.

What a skill actually is

A skill is a markdown file with YAML frontmatter that teaches an agent a workflow or a domain: instructions, conventions, examples. It contains no code and runs no process. You place it in your agent's skills directory and it changes how the agent behaves.

The most common confusion worth clearing up first: skills are not MCP servers. A skill changes how the agent works. An MCP server lets the agent reach a live system, such as a database or a ticket tracker. Teaching the agent your team's commit conventions is a skill. Letting it read your actual Jira board needs an MCP server. They live in separate registries, and searching the wrong one is the usual reason people decide nothing exists for their use case.

Because the format is plain markdown, skills are portable across Claude Code, Codex, GitHub Copilot and other assistants, and you can always fork one into your own repo and stop depending on any registry.

1. Anthropic's official skills repository, the canonical reference

github.com/anthropics/skills is the first-party repository, and it is the right place to begin even though it is by far the smallest option here. It holds a deliberately limited set of demonstration skills across creative, technical and enterprise work, plus the format specification in /spec and a starter template in /template. The document skills (docx, pdf, pptx, xlsx) are the same family that powers Claude's own document handling.

In Claude Code it installs with one command: /plugin marketplace add anthropics/skills. Most skills carry Apache 2.0; the document skills are source-available rather than open source, which Anthropic states plainly.

Use it for: learning what a well-formed skill looks like before you try to evaluate a stranger's. Limitation: it is a reference set, not a catalog, so you will outgrow it quickly.

2. AgentSkills.codes, the broadest scraped index

AgentSkills.codes indexes 19,296 installable skills across nine categories, Coding being the largest at 6,343. Everything is scraped from public GitHub repositories rather than vendor-submitted, and the site re-scans the whole catalog daily for freshness and safety signals.

The part that earns its place is per-listing provenance: source repo, stars, license and last commit date on the card, so an abandoned skill is obvious before you open it. It is MIT licensed, free, has no accounts and no paid tier, and lists compatibility beyond Claude Code including Codex, GitHub Copilot and Antigravity.

Use it for: answering "has anyone already built this" fast. Limitation: scraping means inclusion proves existence, not quality, and at nearly 20,000 entries the hard part becomes judgment. Our full AgentSkills.codes review sets out the security posture worth adopting before you install anything from it.

3. SkillsMP, aggregation at extreme scale

SkillsMP describes itself as the largest community-driven marketplace for agent skills, and says it indexes more than 2 million open-source skills across 12 domains, 50-plus categories and nine languages. That figure is the vendor's own claim and is an order of magnitude beyond anything else here, which tells you the aggregation is extremely wide rather than filtered.

It is free with no paid tiers, and offers an API: 50 requests a day anonymously, 500 with a free key. Like AgentSkills.codes it pulls from GitHub repositories and exposes search, categories and occupation filters.

Use it for: programmatic access, and for long-tail searches where a smaller index returns nothing. Limitation: at that scale the signal-to-noise problem is at its most acute, and the site does not identify who operates it.

4. awesome-claude-skills, the curated shortlist

ComposioHQ/awesome-claude-skills is a hand-picked list rather than a catalog, and that is exactly its value. It carries roughly 72,000 GitHub stars, which is a meaningful signal that a lot of practitioners have found it useful. Last updated late July 2026 at the time of writing.

Use it for: the judgment layer the scraped registries cannot provide. Limitation: curation moves at human speed, so recent publications lag, and "awesome list" inclusion still reflects one maintainer's taste. It is maintained by Composio, a commercial company in the agent tooling space, which is worth knowing even though the list itself is open.

5. awesome-claude-code, skills in the context of everything else

hesreallyhim/awesome-claude-code is broader than skills alone: it collects commands, hooks, workflows and configuration patterns for Claude Code generally, with skills as one section. Around 52,000 stars, and it was updated the same week we published this guide, which makes it one of the more actively maintained resources in the space.

Use it for: the case where a skill is not actually what you need and a hook or slash command solves the problem better. Limitation: skills are a subsection, so the depth per category is shallower than a dedicated index.

6. Claude Code Templates, skills bundled with agents and commands

aitmpl.com packages more than 1,000 components spanning skills, agents, commands, settings, hooks and MCP integrations, with a stack builder for assembling a configuration rather than picking files one at a time. It is free and open source, supported by sponsorships from developer-tool companies.

Use it for: setting up a new project configuration end to end instead of hunting individual skills. Limitation: the component counts are self-reported and the browsing experience is dynamic, so it is harder to audit what is actually there than a plain repository listing.

7. claude-code-plugins-plus-skills, plugin-first packaging

jeremylongshore/claude-code-plugins-plus-skills advertises 471 plugins, 3,069 skills and 347 agents, MIT licensed, and was pushed to the same week as publication. It leans on Claude Code's plugin marketplace mechanism rather than manual file placement.

Use it for: installing groups of related skills through the plugin system. Limitation: single-maintainer bundles concentrate risk, so the security reading below matters more here, not less.

How to judge a skill before you install it

This is the part every directory leaves to you, so it is worth being systematic. A skill is instructions your agent will follow, which is a materially different risk profile from a library you import and never read.

  • Read the markdown. Skills are short by design. This is the rare case where reading the whole dependency takes two minutes.
  • Watch for shell, credentials and deletion. A skill that instructs the agent to run commands, touch secrets or remove files deserves real scrutiny.
  • Check the commit date, not just the stars. Star counts are lagging indicators; an unmaintained skill written against an older agent version can quietly misfire.
  • Find the upstream original. Scraped catalogs surface forks, so the first result is not always the source. Compare stars and dates.
  • Prefer forking to depending. Copy what you use into your own repo. The format is portable precisely so you can.

Which one should you use

If you are new to skills: Anthropic's repository, then a curated list. If you know what you want and need to find it: a scraped registry, AgentSkills.codes for readable provenance or SkillsMP when you need the widest possible net. If you are configuring a project from scratch: Claude Code Templates. In practice most people end up with a curated list bookmarked and a registry open in another tab, because no single source currently does both jobs.

Related reading: our Claude Code review, the best AI coding agents, and Claude Code vs Cursor.

FAQ

What is a Claude Code skill?

A skill is a markdown file with YAML frontmatter that teaches an agent a workflow or a body of domain knowledge. It contains instructions, conventions and examples, not code. You drop it into the agent's skills directory and it shapes how the agent behaves. Because it is just markdown, the same file works across Claude Code, Codex, GitHub Copilot and other assistants that adopted the format.

Are skills the same as MCP servers?

No, and confusing the two sends people to the wrong registry. A skill is instructions that change how the agent works and runs nothing. An MCP server is software you connect so the agent can reach a live system such as a database or a ticketing tool. Team commit conventions are a skill; reading your actual Jira tickets needs an MCP server.

Where should I start if I have never installed a skill?

Anthropic's own repository. It is small, first-party, and shows the format the way it was intended, and it installs in Claude Code with a single plugin marketplace command. Once you know what a good skill looks like, the larger community registries become far easier to judge.

Is it safe to install skills from a public registry?

Apply package-registry caution. A skill is instructions your agent will follow, so a malicious or careless one can direct it to exfiltrate credentials, delete files or run shell commands. The mitigation is unusually easy here: skills are short markdown files, so read one before installing it, and treat scraped catalog inclusion as evidence a skill exists rather than evidence it is any good.

Do these directories cost anything?

Every option in this guide is free at the time of writing. Most are open-source repositories or free registries with no paid tiers and no accounts required to browse. That is normal for an ecosystem this young, and it means the real cost of a bad choice is your time, not a subscription.

Skill counts, star counts, licenses and update dates verified August 2026 from each project's own site or the GitHub API. Star counts move; treat them as a snapshot. ToolChase has no commercial relationship with any resource listed here and none of these links are affiliate links.