Anthropic's app store moment for Claude Code
A curated marketplace where internal and third-party plugins extend Claude Code via MCP servers, slash commands, and skill bundles.

What it does
This repository is the official directory for Claude Code plugins — think of it as a package index, but for AI assistant extensions. Users install plugins with a single slash command (/plugin install {name}@claude-plugins-official), and developers submit them through a form for Anthropic’s approval. The directory splits cleanly between Anthropic-built plugins and vetted community submissions.
The interesting bit
The “skill-bundle” mechanism is the flexible part. A project can expose SKILL.md files from arbitrary subdirectories of its repo without adopting the full plugin manifest, letting library authors graft Claude Code skills onto existing codebases rather than maintaining separate plugin repositories. Anthropic registers them as <plugin-name>:<skill-name> — namespaced, version-pinned, and pulled by commit SHA.
Key highlights
- Plugins layer on MCP servers, slash commands, agents, or skills — mix and match
- External submissions face quality and security review before listing
- Skill bundles can cherry-pick
SKILL.mdfiles from nested directories across a repo - Every plugin carries its own license; Anthropic does not unify them
- Reference implementation lives at
/plugins/example-plugin
Caveats
- Anthropic explicitly disclaims verification: “Make sure you trust a plugin before installing” — they don’t control what MCP servers or files ship inside
- The README is a directory spec, not a catalog; you won’t browse available plugins here
Verdict Worth bookmarking if you extend Claude Code or want to publish skills without spinning up a dedicated plugin repo. Skip it if you’re hunting for a searchable plugin catalog — this is the plumbing, not the showroom.