# Best Claude Code Plugins (2026): 15 Tested & Ranked

> The best Claude Code plugins for 2026, ranked with an install verdict, GitHub stars, and copy-paste commands each — official, partner, and community picks.

Source: https://designrevision.com/blog/best-claude-code-plugins

---

The best Claude Code plugins turn a capable coding agent into one tuned to your stack, your standards, and your memory — and with the official marketplace now past 200 plugins, the hard part is knowing which few are worth your time. This guide ranks 15 of the best Claude Code plugins for 2026, from Anthropic's first-party set to the community and partner plugins developers actually keep enabled, each with a source link, live GitHub star count, an install command, and an honest verdict.

*Last updated: July 2026. Star counts are pulled fresh from GitHub and move constantly — treat them as a snapshot.*

If you are new to how plugins work — what they bundle, and how they differ from skills — start with our guide to [Claude Code plugins](/blog/claude-code-plugins) and the [skills vs. plugins vs. agents vs. MCP breakdown](/blog/claude-code-skills-vs-plugins-vs-agents). Otherwise, straight to the rankings.

## The 15 Best Claude Code Plugins at a Glance

| # | Plugin | Type | Verdict | Best for |
|---|--------|------|---------|----------|
| 1 | Superpowers | Community | Install | A disciplined plan → spec → test workflow |
| 2 | Context7 | Partner (MCP) | Install | Up-to-date library documentation |
| 3 | frontend-design | Official | Install | Distinctive, non-generic UI |
| 4 | Claude Mem | Community | Install | Memory across sessions |
| 5 | security-guidance | Official | Keep on | Catching insecure code early |
| 6 | code-review | Official | Install | Fast multi-agent code review |
| 7 | typescript-lsp (+ LSPs) | Official | Install | Real-time type intelligence |
| 8 | GitHub | Partner (MCP) | Install | Repos, issues, and PRs in-session |
| 9 | planning-with-files | Community | Install | Plans that survive context loss |
| 10 | claude-code-setup | Official | Try once | Bootstrapping a repo's config |
| 11 | Caveman | Community | Situational | Cutting token cost on long runs |
| 12 | skill-creator | Official | Install | Building your own skills |
| 13 | Playwright | Partner (MCP) | Situational | Browser automation & E2E tests |
| 14 | ui-ux-pro-max | Community | Situational | Design-heavy frontend work |
| 15 | ECC | Community | Situational | Power users who want a full harness |

## Table of Contents

1. [How We Picked](#how-we-picked)
2. [The 15 Best Claude Code Plugins](#the-15-best-claude-code-plugins)
3. [Official Integrations Worth Adding](#official-integrations-worth-adding)
4. [Best Claude Code Plugins for Developers](#best-claude-code-plugins-for-developers)
5. [Best Claude Code Plugins on Reddit](#best-claude-code-plugins-on-reddit)
6. [How to Install a Claude Code Plugin](#how-to-install-a-claude-code-plugin)
7. [Conclusion](#conclusion)

## How We Picked

Our list of the top Claude Code plugins is a curated, opinionated ranking rather than a lab benchmark. We weighed four signals: **provenance** (Anthropic's official plugins and plugins from reputable teams earn trust), **adoption** (GitHub stars and marketplace presence), **documented behavior** (what each plugin's manifest and README actually do), and **breadth of use case** (the list should cover workflow, memory, docs, code intelligence, security, design, and integrations — not fifteen variations on one idea).

Every star count was pulled from the GitHub API in July 2026 and is rounded. Official first-party plugins are bundled inside Anthropic's marketplace and have **no standalone star count**, so we don't invent one. Community marketplace names in the install commands come from each repo's README — confirm them in the `/plugin` browser before you install. Each entry carries a plain **verdict** — *Install*, *Situational*, *Keep on*, or *Try once* — plus a note on who should skip it. We deliberately left off a few high-star repositories that are not actually plugins (a lone `CLAUDE.md` file, an unrelated project that a scraper mislabeled), because a rankings page is only as trustworthy as its worst entry.

## The 15 Best Claude Code Plugins

### 1. Superpowers

**Type:** Community · **Source:** [obra/superpowers](https://github.com/obra/superpowers) (~248k⭐) · **Install:** `/plugin marketplace add obra/superpowers-marketplace` then `/plugin install superpowers@superpowers-marketplace`

**Verdict: Install.** The most-starred entry in the ecosystem, and effectively a development methodology in a box. Superpowers bundles a chain of skills that walk Claude from brainstorming to a written spec to isolated git worktrees to test-driven implementation. If you have watched Claude charge ahead and build the wrong thing, this is the guardrail that forces a plan-and-confirm rhythm first. Our [Superpowers plugin guide](/blog/claude-code-superpowers-plugin) walks through its full workflow. *Skip if* you only make small, one-off edits — the ceremony is overkill for a two-line fix.

### 2. Context7

**Type:** Partner (MCP) · **Source:** [upstash/context7](https://github.com/upstash/context7) (~59k⭐) · **Install:** `/plugin marketplace add upstash/context7` then `/plugin install context7@context7-marketplace`

**Verdict: Install.** The fix for Claude confidently calling a library's old API. Context7 pulls **version-specific, up-to-date documentation** for thousands of packages into context on demand, so generated code matches the version you actually have installed. For anyone on fast-moving frameworks it removes a whole class of hallucinated method calls. *Skip if* you work almost entirely in the standard library or a frozen internal stack.

### 3. frontend-design

**Type:** Official · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install frontend-design@claude-plugins-official`

**Verdict: Install (for any UI work).** Anthropic's answer to generic "AI slop" interfaces. It pushes Claude toward distinctive, production-grade UI — considered typography, real layout hierarchy, restrained effects — instead of the default purple-gradient template. It is the single highest-impact plugin for anyone shipping user-facing work; our [Frontend Design plugin guide](/blog/claude-code-frontend-design-plugin) covers exactly what it changes. *Skip if* you only ever work on backend or CLI code.

### 4. Claude Mem

**Type:** Community · **Source:** [thedotmack/claude-mem](https://github.com/thedotmack/claude-mem) (~86k⭐) · **Install:** `npx claude-mem install`

**Verdict: Install.** Persistent memory across sessions. Claude Mem compresses each session into typed observations and re-injects the relevant ones next time, so Claude remembers your architecture decisions and past dead-ends instead of relearning them every conversation. On a long-running project the difference is dramatic. *Skip if* your work is mostly short, disposable one-off sessions.

### 5. security-guidance

**Type:** Official (enabled by default) · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install security-guidance@claude-plugins-official`

**Verdict: Keep it on.** Anthropic's first-party security reviewer quietly checks Claude's diffs for injection, XSS, SSRF, exposed secrets, IDOR, and auth-bypass patterns before the code reaches you. It ships enabled by default in recent Claude Code, so many users already have it — the right move is simply to leave it on. *Skip if*… there is no good reason to; the overhead is negligible.

### 6. code-review

**Type:** Official · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install code-review@claude-plugins-official`

**Verdict: Install.** Anthropic's official reviewer runs parallel agents over a change set to catch bugs, missed edge cases, and style issues before you commit. It is the fastest way to add a second pair of eyes inside the editor, and it pairs naturally with security-guidance. *Skip if* you already run a heavy automated review in CI and prefer to keep review out of the session. See our dedicated guide to [Claude Code for code review](/blog/claude-code-code-review) for the deep dive.

### 7. typescript-lsp (and the language servers)

**Type:** Official · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install typescript-lsp@claude-plugins-official`

**Verdict: Install (match your language).** Language-server plugins give Claude real-time go-to-definition, find-references, and type errors instead of guessing from text. Anthropic ships around a dozen — TypeScript, Python (pyright), Go, Rust, C#, Java, Kotlin, PHP, Lua, Swift, and more. Installing the one for your stack measurably reduces wrong-symbol edits. *Skip only if* your language has no server yet. Our [LSP plugins guide](/blog/claude-code-lsp-plugins) covers setup.

### 8. GitHub

**Type:** Partner (MCP) · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install github@claude-plugins-official`

**Verdict: Install (if you live on GitHub).** A pre-configured MCP plugin that gives Claude first-class access to repositories, issues, and pull requests, so it can read context and act where your work already happens. It is the most broadly useful of the official integrations. *Skip if* your team is on GitLab or Bitbucket — install the equivalent (`gitlab@claude-plugins-official`) instead.

### 9. planning-with-files

**Type:** Community · **Source:** [OthmanAdi/planning-with-files](https://github.com/OthmanAdi/planning-with-files) (~25k⭐) · **Install:** `/plugin marketplace add OthmanAdi/planning-with-files` then `/plugin install planning-with-files@planning-with-files`

**Verdict: Install.** Crash-proof planning: Claude writes its plan to markdown files and checks items off as it goes, so the work survives a `/clear`, a context overflow, or a crash mid-task. The completion gate — it will not declare victory until every tracked step is done — makes it more reliable than keeping the plan in chat. *Skip if* you already run Superpowers, which covers similar ground.

### 10. claude-code-setup

**Type:** Official · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install claude-code-setup@claude-plugins-official`

**Verdict: Try once (per repo).** A first-party plugin that scans a codebase read-only and recommends the hooks, skills, MCP servers, and subagents worth adding for that project. It is the fastest way to go from "fresh clone" to "sensibly configured." *Skip after* you have your setup dialed in — it is a bootstrapping tool, not a daily driver.

### 11. Caveman

**Type:** Community · **Source:** [JuliusBrussee/caveman](https://github.com/JuliusBrussee/caveman) (~86k⭐) · **Install:** `/plugin marketplace add JuliusBrussee/caveman` then `/plugin install caveman@caveman`

**Verdict: Situational.** The most unusual pick, and a genuinely useful one: Caveman makes Claude reply in terse "caveman-speak" prose while keeping all code, commands, and errors byte-exact, cutting output tokens by around 65% on long agentic runs. On big multi-step tasks that is real cost and speed savings. *Skip if* you rely on Claude's prose explanations to follow its reasoning.

### 12. skill-creator

**Type:** Official · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install skill-creator@claude-plugins-official`

**Verdict: Install (if you extend Claude Code).** The meta-plugin: it interviews you about a workflow and scaffolds a well-formed skill — with a description tuned so Claude actually triggers it — and can evaluate and improve existing ones. Once you feel the value of the plugins above, this is how you package your own repeated prompts into permanent capabilities. *Skip if* you only ever consume other people's plugins.

### 13. Playwright

**Type:** Partner (MCP) · **Source:** [claude-plugins-official](https://github.com/anthropics/claude-plugins-official) · **Install:** `/plugin install playwright@claude-plugins-official`

**Verdict: Situational.** Wraps the Playwright browser-automation toolset so Claude can navigate, click, fill forms, screenshot, and assert against a real browser — ideal for end-to-end tests and verifying a UI it just built. (Confirm the exact install name in the `/plugin` browser, as the official catalog evolves.) *Skip if* you do not build or test web interfaces.

### 14. ui-ux-pro-max

**Type:** Community · **Source:** [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) (~102k⭐) · **Install:** `/plugin marketplace add nextlevelbuilder/ui-ux-pro-max-skill` then `/plugin install ui-ux-pro-max@ui-ux-pro-max-skill`

**Verdict: Situational.** A heavily-starred community design-intelligence plugin that layers detailed UI/UX guidance on top of Claude's output — useful if design quality is your bottleneck and you want more opinionated direction than the official frontend-design plugin gives. *Skip if* frontend-design already covers your needs; running both is redundant.

### 15. ECC

**Type:** Community · **Source:** [affaan-m/ECC](https://github.com/affaan-m/ECC) (~227k⭐) · **Install:** `/plugin marketplace add https://github.com/affaan-m/ECC` then `/plugin install ecc@ecc`

**Verdict: Situational (power users).** One of the most-starred harnesses in the space — a large "operator" system bundling dozens of agents and hundreds of skills with hooks. It is powerful and highly opinionated, which is exactly why it is a situational pick: brilliant if you want a maximal, all-in setup, overkill if you want a lean toolbox. *Skip if* you prefer to assemble a few focused plugins yourself.

## Official Integrations Worth Adding

Beyond GitHub, Anthropic's official marketplace ships pre-configured MCP plugins for the tools most teams already use. They are not "ranked" here because their value depends entirely on your stack, but each installs with the same one-liner and is worth adding where relevant:

- **Supabase** — `/plugin install supabase@claude-plugins-official` (database + backend)
- **Vercel** — `/plugin install vercel@claude-plugins-official` (deploys + infra)
- **Linear** — `/plugin install linear@claude-plugins-official` (issues + project management)
- **Sentry** — `/plugin install sentry@claude-plugins-official` (error monitoring)
- **Figma** — `/plugin install figma@claude-plugins-official` (design handoff)
- **Notion** — `/plugin install notion@claude-plugins-official` (docs + knowledge base)

Install the ones your team lives in; skip the rest. For the full first-party catalog, see our guide to the [official Claude Code plugins](/blog/official-claude-code-plugins). An honorable mention among community plugins: [DietrichGebert/ponytail](https://github.com/DietrichGebert/ponytail) (~76k⭐), which pushes Claude toward minimal, "laziest-senior-dev" code — worth a look if over-engineering is your problem.

## Best Claude Code Plugins for Developers

If you are optimizing purely for shipping code, the best Claude Code plugins for developers cluster into four jobs. For **code quality**, install security-guidance and code-review so every change is checked by default. For **workflow discipline**, Superpowers and planning-with-files stop Claude from running ahead and losing the thread. For **accuracy**, Context7 and your language's LSP plugin keep it current on your libraries and honest about types. And for **memory**, Claude Mem keeps it consistent with past decisions. That five-to-six plugin stack is a strong default for most development setups; layer design and integration plugins on top as your work demands. Many of these bundle skills, so pair this with our tested [best Claude Code skills](/blog/best-claude-code-skills) roundup for the full picture.

## Best Claude Code Plugins on Reddit

Search *best Claude Code plugins Reddit* and you land in r/ClaudeAI threads where a few names come up again and again. Among community tools, **Superpowers**, **Context7**, and **Claude Mem** dominate the "what do you actually keep installed" threads, while Anthropic's own **security-guidance** and **code-review** are the default recommendations for anyone starting out. A recurring, sensible piece of Reddit advice is to begin with the official marketplace's 200-plus plugins before reaching for community ones, since the official set is vetted. Treat Reddit as a discovery signal — the enthusiasm is real, but always check a plugin's repo and star count (as we've done above) before installing.

## How to Install a Claude Code Plugin

Installing is a one-liner. For Anthropic's official plugins, the marketplace is registered automatically:

```text
/plugin install frontend-design@claude-plugins-official
```

For a community plugin, add its marketplace first, then install:

```text
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
```

Run `/plugin` on its own to open the interactive manager (browse, enable, disable, update), and `/reload-plugins` to apply changes without restarting. If an install fails with "not found," your marketplace is usually stale — run `/plugin marketplace update <name>` and retry. For the full walkthrough with troubleshooting, see [how to install Claude Code plugins](/blog/how-to-install-claude-code-plugins), and to browse the wider landscape, the [Claude Code plugins marketplace guide](/blog/claude-code-plugins-marketplace).

## Conclusion

The best Claude Code plugins in 2026 are the ones that close a real gap: disciplined workflow (Superpowers, planning-with-files), current docs and memory (Context7, Claude Mem), code intelligence and safety (the LSP servers, security-guidance, code-review), distinctive design (frontend-design), and the integrations for wherever your team already works. Start with the four or five that match your biggest pain point, add your stack's official integrations, and resist the urge to install all 200. When your own configuration proves its worth, [skill-creator](/blog/claude-code-plugins) turns it into a plugin of your own.

From here, the [Claude Code plugins guide](/blog/claude-code-plugins) and the tested [best Claude Code skills](/blog/best-claude-code-skills) are the natural next reads — most of these plugins are really bundles of skills, so the two lists reinforce each other.

---

## Related Resources

- [Claude Code Plugins: The Complete Guide](/blog/claude-code-plugins)
- [How to Install Claude Code Plugins](/blog/how-to-install-claude-code-plugins)
- [Official Claude Code Plugins: The Complete List](/blog/official-claude-code-plugins)
- [Best Claude Code Skills (2026): Tested & Ranked](/blog/best-claude-code-skills)
- [Claude Code Skills vs. Plugins vs. Agents vs. MCP](/blog/claude-code-skills-vs-plugins-vs-agents)
