Running through trending round-ups for Claude Code skills this week, I kept hitting the same ten names. That’s unusual — AI tooling opinion cycles faster than most tech, and consensus across YouTube, Composio, Firecrawl, Substack, and Medium is a genuine signal.
So I ran an audit of our own install at Contexta, cross-referenced it against the recommendations, and came out with three useful buckets: what we use and recommend, what’s worth trying, and what we skip on purpose.
Methodology
Five sources, filtered to publications in March or April 2026. A skill counts as “consensus” if it appears in at least three; “divisive” if it shows up in one or two. I then compared every consensus skill against our ~/.claude/settings.json to see what we already run and why.
The consensus 5 — every source agrees
frontend-design
Anthropic’s official skill. 277,000+ installs as of March. Gives Claude a design philosophy before it writes a single line of CSS. The difference between output with and without this skill is the difference between “generic AI SaaS UI” and “something you’d actually ship.” We use it on every customer-facing screen.
superpowers
A composable workflow: brainstorm → spec → implementation plan → sub-agent execution → review. Replaces ad-hoc prompting with a structured process where each stage has its own skill. The win is less about any individual step and more about never skipping the plan.
context7
Live library documentation at query time. Fixes the chronic “Claude suggests a 2023 API signature” problem for everything from React to Prisma. If you have a mixed-framework stack this is the highest-leverage single install.
playwright
Browser automation. We use it for three things: verifying UI changes actually work (not just “type-check passes”), driving our own internal tools, and regression-testing the Site Check report flow. The MCP version is particularly good because Claude can snapshot a page, act, and verify in one loop.
skill-creator
The meta-skill. Write skills that write skills. Most of our internal tooling started as a one-off prompt that skill-creator turned into a repeatable workflow.
The divisive 3 — worth trying, not unanimous
codex
OpenAI’s Claude Code plugin. Adversarial review from a second model in a separate process. Recommended in three of the five round-ups as “the highest-leverage first install for anyone shipping production code.” The pitch: single-model review shares the author’s blind spots; a different model catches what yours misses.
We haven’t tried it yet. Requires an OpenAI API key or ChatGPT sub — genuine ongoing cost. The overlap with our existing pr-review-toolkit is real. On our backlog as a structured 4-week trial with a ≥30% unique-finding keep-rate gate.
firecrawl
Fast, reliable web scraping for JS-heavy sites. Fills the gap that WebFetch leaves — WebFetch can’t see client-side-rendered content, which is most of the modern web. We added this to our install this week.
ralph-loop
Autonomous coding loop. Either love it or switch it off in ten minutes — there’s no middle ground. We keep it enabled for specific contexts (long refactors across many files) and turn it off for anything interactive.
What we skip on purpose
claude-mem
Long-term cross-session memory. Genuinely useful — but Anthropic shipped auto-memory as a built-in feature. We use the built-in, plus a project-specific memory/MEMORY.md index that the agent reads on session start. Two memory systems doing the same job would create drift; one does not.
The skills nobody writes about
Three skills we run that almost never show up in round-ups but quietly earn their place:
- hookify — scans conversation transcripts for prevention hooks. “Claude keeps making mistake X; hookify it.” Saves the same correction from repeating.
- claude-md-management — audits and improves
CLAUDE.mdfiles against templates. Quality signal for the root document that shapes every other session. - plugin-dev — if you build your own plugins, the component-level guidance (agent, skill, command, hook) saves hours of reading docs.
The skills landscape moves weekly
The right install list in April won’t be right in July. A quarterly re-audit is a small enough cost that it’s worth doing — a session like this one took maybe 40 minutes, half of that writing it up.
If you’re running a Claude Code install, I’d suggest the same exercise: list your enabled plugins, cross-reference against whatever round-up you trust, and actively remove the ones you haven’t used in two weeks. Skill drift is the biggest cost of maintaining an over-large plugin set, not the install itself.
Sources
- Top 10 Claude Code Skills, Plugins & CLIs (April 2026) — YouTube
- Top 10 Claude Code Skills Every Builder Should Know in 2026 — Composio
- Top 10 Claude Code Plugins to Try in 2026 — Firecrawl
- Best Claude Code Plugins (2026): 10 Tested, 4 Worth Keeping — Substack
- 10 Must-Have Skills for Claude in 2026 — Medium