Remote OpenClaw Blog
Best Claude Code Plugins in 2026: Ranked From 3,687
8 min read ·
Superpowers is the best Claude Code plugin in 2026. We ranked all 3,687 Claude Code plugins indexed across 1,462 marketplaces in the Remote OpenClaw plugin directory, and Superpowers leads every signal we can verify: its repo passed 245,000 GitHub stars, it is actively maintained, and Anthropic distributes it through the official marketplace that is pre-registered in every Claude Code install. The full top 11, with verified install commands, is below.
This post is the ranked list. If you want the mechanics first, what plugins are, how marketplaces work, and how /plugin install behaves, read our Claude plugins explainer and come back.
How We Ranked 3,687 Plugins
The Remote OpenClaw directory indexes 3,687 Claude Code plugins across 1,462 marketplaces, and this ranking uses three verifiable signals: the source repo's GitHub stars (checked July 3, 2026), commit activity, and whether the plugin ships through Anthropic's pre-registered official marketplaces. Anthropic launched the plugin system in public beta on October 9, 2025, per the launch announcement, and its own plugins dominate on distribution, which the list below honestly reflects. We did not invent install counts or claim hands-on testing of all 3,687; capability notes come from each plugin's manifest and documentation.
One note on install commands: plugins from the claude-plugins-official marketplace install directly, because Claude Code registers that marketplace automatically. Plugins from anthropics/claude-code or community repos need a one-time /plugin marketplace add owner/repo first.
1. Superpowers: Best Claude Code Plugin Overall
Superpowers is a skills library by Jesse Vincent (obra/superpowers) that teaches Claude Code how to work: brainstorming before coding, subagent-driven development with built-in code review, red/green test-driven development, and systematic debugging instead of guess-and-check fixes. At 245,152 GitHub stars as of July 3, 2026 it is the most-starred plugin source in our entire index, and it also teaches Claude how to author and test new skills of its own. It is on Anthropic's official marketplace, so installation is one command:
/plugin install superpowers@claude-plugins-official
Directory page: Superpowers.
2. claude-mem: Best Memory Plugin
claude-mem (thedotmack/claude-mem, 85.6k stars) is a persistent memory compression system: it summarizes each Claude Code session and injects relevant context into future ones, so your agent stops re-learning your codebase every morning. The project is very actively maintained, with v13.9.3 shipped on July 3, 2026. Install it from its own marketplace:
/plugin marketplace add thedotmack/claude-mem
/plugin install claude-mem
Directory page: claude-mem.
3. chrome-devtools-mcp: Best Browser Debugging Plugin
chrome-devtools-mcp puts a live Chrome browser under Claude's control: performance traces, network request inspection, console messages with source-mapped stack traces, and browser automation. The underlying server is built by the Chrome DevTools team (ChromeDevTools/chrome-devtools-mcp, 45,338 stars), and the plugin wraps it for one-command setup, a good example of a plugin bundling an MCP server as we describe in our Claude Code MCP guide. If standalone servers fit your setup better, see our ranked list of the best MCP servers in 2026.
/plugin install chrome-devtools-mcp@claude-plugins-official
Directory page: chrome-devtools-mcp.
4. code-review: Best Automated Review Plugin
code-review is Anthropic's own multi-agent review plugin: it fans several specialized reviewer agents out over a pull request and uses confidence-based scoring to filter false positives, which is the main complaint about single-pass AI review. It ships from the anthropics/claude-code repository (135,651 stars as of July 3, 2026).
/plugin marketplace add anthropics/claude-code
/plugin install code-review@claude-code-plugins
Directory page: code-review.
5. feature-dev: Best Structured Development Workflow
feature-dev turns "build this feature" into a staged workflow with specialized agents for codebase exploration, architecture design, and quality review before code gets written. It is the closest thing to an official answer to ad-hoc vibe coding, and it comes from the same Anthropic marketplace as code-review, so the marketplace add above covers it.
/plugin install feature-dev@claude-code-plugins
Directory page: feature-dev.
6. frontend-design: Best UI Quality Plugin
frontend-design exists to fix the "generic AI aesthetic" problem: it pushes Claude toward distinctive, production-grade interfaces instead of the default gradient-hero look. If your complaint about AI-built UIs is that they all look the same, this is the single highest-leverage install on this list. For a skill-based alternative approach to the same problem, see our UI UX Pro Max review, which is distributed as a skill rather than an installable plugin.
/plugin install frontend-design@claude-code-plugins
Directory page: frontend-design.
7. pr-review-toolkit: Best Deep PR Review
pr-review-toolkit is the heavyweight sibling of code-review: separate agents specialize in comments, tests, error handling, type design, code quality, and simplification. Use code-review for a fast automated gate and pr-review-toolkit when you want a thorough multi-angle pass on a big pull request.
/plugin install pr-review-toolkit@claude-code-plugins
Directory page: pr-review-toolkit.
8. hookify: Best Customization Plugin
hookify lets you create Claude Code hooks from plain markdown rules instead of writing hook scripts by hand, including generating rules by analyzing your conversation for behaviors you keep correcting. It is the fastest way to encode "never do X in this repo" as an enforced rule rather than a hope.
/plugin install hookify@claude-code-plugins
Directory page: hookify.
9. commit-commands: Best Git Workflow Plugin
commit-commands adds slash commands for the git loop you run fifty times a day: commit, push, and PR creation with sensible messages. It is a small plugin, but it is the one people miss most when they switch machines, and because plugin skills are namespaced you invoke it as /commit-commands:commit.
/plugin install commit-commands@claude-code-plugins
Directory page: commit-commands.
10. security-guidance: Best Safety Net
security-guidance is a hook-based plugin that warns in real time when an edit introduces risky patterns like command injection, XSS, or unsafe deserialization. It does not replace a real security review, but as an always-on reminder layer it costs nothing and catches the embarrassing class of bug before it lands.
/plugin install security-guidance@claude-code-plugins
Directory page: security-guidance.
11. claude-md-management: Best Project Memory Maintenance
claude-md-management audits and maintains your CLAUDE.md files: it scores their quality, captures session learnings, and keeps project memory current instead of slowly rotting. Paired with claude-mem at #2 you get both halves of the memory problem, curated instructions plus automatic session recall.
/plugin install claude-md-management@claude-plugins-official
Directory page: claude-md-management.
Comparison Table
Star counts are for each plugin's source repository, checked July 3, 2026; Anthropic marketplace plugins share their host repo's count.
| Rank | Plugin | Source repo (stars) | Marketplace | Best for |
|---|---|---|---|---|
| 1 | Superpowers | obra/superpowers (245,152) | claude-plugins-official | Teaching Claude how to plan, test, and debug |
| 2 | claude-mem | thedotmack/claude-mem (85.6k) | thedotmack/claude-mem | Persistent cross-session memory |
| 3 | chrome-devtools-mcp | ChromeDevTools/chrome-devtools-mcp (45,338) | claude-plugins-official | Live browser debugging and automation |
| 4 | code-review | anthropics/claude-code (135,651) | claude-code-plugins | Automated PR review with false-positive filtering |
| 5 | feature-dev | anthropics/claude-code (135,651) | claude-code-plugins | Structured feature development workflow |
| 6 | frontend-design | anthropics/claude-code (135,651) | claude-code-plugins | Distinctive, non-generic UI output |
| 7 | pr-review-toolkit | anthropics/claude-code (135,651) | claude-code-plugins | Deep multi-agent PR review |
| 8 | hookify | anthropics/claude-code (135,651) | claude-code-plugins | Markdown-defined custom hooks |
| 9 | commit-commands | anthropics/claude-code (135,651) | claude-code-plugins | Commit, push, and PR slash commands |
| 10 | security-guidance | anthropics/claude-code (135,651) | claude-code-plugins | Real-time security warnings on edits |
| 11 | claude-md-management | anthropics/claude-plugins-official (31,487) | claude-plugins-official | Auditing and updating CLAUDE.md files |
Honorable Mentions
Three tools narrowly missed the ranking for structural reasons rather than quality. ralph-wiggum (anthropics/claude-code marketplace) runs Claude in self-referential loops on the same task until completion, a genuinely useful pattern for grinding through refactors, but it is easy to misuse. UI UX Pro Max is one of the most popular design capabilities in the ecosystem, but it ships as a skill rather than a marketplace-installable plugin; our UI UX Pro Max guide covers setup. And open-design (74.6k stars) integrates with Claude Code as an MCP server through its own desktop app rather than the /plugin system, so it falls outside a plugin ranking. For team-oriented setups built around Claude Cowork, see our Claude Cowork plugins guide.
Limitations and Tradeoffs
Plugins run with your user privileges and can execute arbitrary code, and Anthropic does not verify third-party plugin behavior, so treat unknown marketplaces like unknown software and review the "Will install" list before confirming. Star counts measure popularity, not fit: 8 of the top 11 here are Anthropic's own, partly because official distribution compounds visibility, and a niche community plugin may serve your stack better than anything on this list. Also remember that every plugin adds context overhead; per the official plugin docs you can disable plugins per project, and you should. Install the two or three that match your workflow, not all eleven.
Related Guides
- Claude Plugins: What They Are and How to Install Them
- Everything Claude Code
- Claude Code MCP: How to Add and Manage MCP Servers
- The Codex Plugin for Claude Code
Go deeper
The operator playbooks
Production-ready PDF guides for OpenClaw and Hermes Agent — $19.99 each.
Skills for this topic
Browse all skills →Frequently Asked Questions
What is the best Claude Code plugin?
Superpowers is the best Claude Code plugin in 2026, ranked #1 out of 3,687 plugins in the Remote OpenClaw directory. Its source repo has over 245,000 GitHub stars, it is distributed through Anthropic's official marketplace, and it upgrades how Claude plans, tests, and debugs rather than adding a single narrow command.
Are the top Claude Code plugins free?
Yes. All eleven plugins in this ranking are free and open source, as is the plugin system itself. Some plugins bundle MCP servers for external services, so the underlying service may need its own account, but nothing in this list requires a paid subscription beyond Claude Code itself.
What does the Superpowers plugin actually do?
Superpowers installs a library of skills that change Claude Code's working method: it brainstorms designs before writing code, delegates implementation to subagents with built-in code review, follows red/green test-driven development, and applies systematic debugging. It also includes skills for creating and testing new skills, so the library extends itself.
How many Claude Code plugins are there?
The Remote OpenClaw directory indexes 3,687 Claude Code plugins across 1,462 marketplaces as of July 3, 2026. Anthropic's official marketplace and its claude-code repository account for a few dozen of those; the rest come from community marketplaces of widely varying quality, which is why ranking by verifiable repo signals matters.

