Claude Code starts out as a very smart, very blank terminal. It does not audit its own setup, it does not know when you are about to burn through your weekly limit, and it cannot install a security scanner or read a locked-down social media page on its own. These five plugins and skills fix all four problems, they are free and open source, and you can have every one of them running before your coffee gets cold.
Here’s the thing. There are now well over 6,000 Claude Code plugins scattered across a few hundred GitHub marketplaces, plus a skills registry pushing past 650,000 entries. Most of that is noise. A handful of tools solve problems that almost every Claude Code user actually has: a bloated or missing configuration, a weekly usage limit that resets too slowly, a skill you need but do not know exists yet, an app you have never security tested, and an internet full of pages your agent cannot reach on its own. This roundup covers one tool for each of those five problems, with the exact install command for each so you are not hunting through READMEs.
1. Claude Code Setup: let Claude audit its own configuration
This one is built by Anthropic itself, and it solves a problem almost nobody thinks to solve: most people never configure Claude Code beyond the defaults. They skip the hooks that would stop a bad rm -rf, the subagent that would catch an authentication bug, and the skill that would save them from re-explaining the same workflow every session.
Claude Code Setup reads your project, your package.json, your language files, your folder structure, and comes back with specific recommendations across five categories: MCP servers, skills, hooks, subagents, and slash commands. It is read only, so it never touches your files without asking. Point it at a React project and it might suggest a Playwright MCP server. Point it at anything with auth code and it might suggest a security-reviewer subagent. It has already crossed 195,000 installs on the official plugin directory, which for a plugin that just gives advice is a strong signal people find the advice useful.
How to install it
/plugin install claude-code-setup@claude-plugins-official
The official Anthropic marketplace is already registered the first time you open Claude Code, so there is no marketplace to add first. Once it is installed, just ask for it in plain language.
recommend automations for this projectwhat hooks should I use?what MCP servers should I use?
The first pass gives you the top one or two picks per category. Ask for more and it will expand to three to five options with reasoning attached.
2. OmniRoute: stretch your usage limits with a free model gateway
Every Claude Code plan resets on a schedule, and heavy users hit that wall before the week is out. OmniRoute is an open source gateway that sits between your terminal and the model, and when your primary provider runs dry it quietly falls back to the next one in line instead of stopping your session.
The project now catalogs 351 AI providers, with roughly 90 of them carrying a free tier of some kind. That is worth being precise about, because it is easy to read “351 providers” and assume all of them are free. They are not. What is genuinely free is the aggregate: OmniRoute’s own dashboard tracks a pool-deduplicated free token budget that currently sits around 1.5 billion tokens a month across its documented free tiers, occasionally higher in a signup month when new providers hand out welcome credits. The project re-audits that number every two weeks and it moves in both directions as providers change their terms, so treat any fixed figure you read (including this one) as a snapshot, not a promise.
Once it is running, OmniRoute also compresses tool output before it hits the model, which is where a lot of Claude Code’s token usage quietly disappears in long agent loops. The project claims 15 to 95 percent savings depending on how much of your traffic is git diffs, logs, and grep results versus plain prose.
How to install it
npm install -g omnirouteomniroute
That starts the gateway and dashboard on localhost:20128, and it answers requests with zero configuration because a keyless free provider is pre-wired into the default routing. To point Claude Code at it specifically:
omniroute configure claude
That walks you through picking a provider and model interactively and writes Claude Code’s config for you. If you would rather skip config files entirely, launch a session directly through the gateway:
omniroute run claude --model auto
auto is the mode most people want. It scores every connected provider live on cost, latency, quota headroom, and quality, and quietly shifts you to the next best option before you ever see a rate limit error.
3. Find Skills: search a registry of 650,000-plus skills instead of writing your own
Before you build a custom skill for something, it is worth checking whether someone already published one. That is what Find Skills is for. It taps into skills.sh, the open registry Vercel launched at the start of 2026, and it has grown fast. One independent tracker put the count at roughly 670,000 listed skills by June, with the single most-installed skill (find-skills itself) already past two million installs. If a video or article tells you the registry has “100,000 skills,” that number is out of date. It is well over six times that now.
Ask Claude Code for something specific, mobile testing, a particular framework’s best practices, a company’s API conventions, and Find Skills searches the leaderboard first for anything battle-tested with a high install count, then falls back to a live search if nothing well-known fits. It also flags red flags before recommending anything: skills under 100 installs, or from a source with fewer than 100 GitHub stars, get a caution rather than a blind recommendation.
How to install it
npx skills add vercel-labs/skills --skill find-skills
After that, you rarely type a command again. Just describe what you need in the conversation.
find skills for my repoare there any skills for browser testing?what skills should I use for a Next.js project?
Claude reads the SKILL.md, decides whether it is relevant, and asks before installing anything else on your system.
4. Strix: run a real penetration test on your own app before someone else does
This is the one the video’s transcript mangled into “Stricks,” and it is worth getting the name right because it is a genuinely serious tool: Strix, from usestrix, is an open source AI pentesting agent with over 54,000 GitHub stars. Instead of pattern matching your code for suspicious function calls the way a static scanner does, Strix actually runs your application, tries to break it the way a real attacker would, and validates every finding with a working proof of concept before it reports it as a vulnerability. That validation step is the whole point. It is what keeps a Strix report from being another pile of maybe-issues that a static scanner hands you and expects you to triage by hand.
It covers the categories you would expect from a real pentest: broken access control, SQL and command injection, SSRF, insecure deserialization, stored and reflected XSS, JWT and session attacks, and business logic flaws like race conditions in payment flows. It can also generate patches as ready-to-review pull requests and produce compliance-ready reports for SOC 2 or ISO 27001 if you need paperwork to go with the fix.
How to install it
As a standalone CLI, which needs Docker running and an API key from any supported LLM provider:
curl -sSL https://strix.ai/install | bashexport STRIX_LLM="anthropic/claude-sonnet-4-6"export LLM_API_KEY="your-api-key"strix --target ./app-directory
To hand the same capability to Claude Code as skills instead:
npx skills add usestrix/strix
That installs four skills at once: one to run a scan and read results, one to remediate a finding and re-verify the fix, one for CI pull request scanning, and one that drives the managed cloud platform if you would rather not run Docker locally at all.
One thing that is not optional: Strix’s own README is blunt about this, and so am I. Only ever point it at applications you own or have explicit written permission to test. Running an active exploitation tool against something you do not control is illegal in most places, full stop.
5. Agent Reach: give Claude Code the ability to actually read the internet
A coding agent that can write a pull request but cannot read the GitHub issue that triggered it is missing something obvious. Agent Reach, built by the developer known as Panniantong, closes that gap. It is a capability layer, not a scraper it wrote itself: it picks the best currently-working tool for each platform (yt-dlp for YouTube transcripts, the GitHub CLI for repos, Jina Reader for plain web pages) and swaps the backend quietly whenever a platform changes its defenses, which the maintainer says happens every few months. The project has climbed to over 75,000 GitHub stars since launch.
Six channels work the instant you install it with no setup at all: web pages, YouTube transcripts and search, RSS feeds, public GitHub repos, semantic web search, and V2EX. The gated platforms the video mentions, LinkedIn, Instagram, X, and Reddit, do work, but they are not zero-configuration the way the pitch implies. Reddit in particular has no anonymous path left at all; its public API access is now approval-gated and its unauthenticated endpoints are blocked, so reaching it requires a logged-in browser session either way. You tell your agent “help me configure Reddit” and it walks you through what is needed, but there is a real setup step behind that sentence.
How to install it
pip install agent-reachagent-reach install --env=auto
That first install runs in safe mode: it only checks what is missing and reports it, it does not touch your system. When you are ready to let it actually configure things:
agent-reach install --env=auto --systemagent-reach doctor
doctor is the command worth remembering. It tells you, platform by platform, which backend you are currently routed through and what to fix if a channel stops working.
The honest caveats
None of these five are magic, and a couple of them come with real tradeoffs worth knowing before you install.
OmniRoute’s free models are not Claude quality. The free and cheap tiers close a lot of the gap on everyday coding, but for hard multi-file refactors and genuinely difficult reasoning, you will still feel the difference against Opus or Sonnet. Treat the free tier as a way to stretch routine work, not a full replacement for your subscription on the tasks that actually need a frontier model.
Agent Reach’s cookie-based platforms carry real account risk. The project’s own documentation recommends using a secondary account rather than your main one for Twitter and Xiaohongshu specifically, because platforms can detect non-browser API behavior and restrict or ban accounts that trigger it. If you connect your primary social accounts to any scraping tool, know that going in.
Strix needs a real API budget and Docker. It is free and open source, but every scan calls an LLM repeatedly to reason through the attack, so a thorough scan on a large app is not a zero-cost afternoon. Budget for it the way you would budget for a paid security tool, because the compute cost is real even though the software is not.
None of this replaces reading the plugin before you install it. Claude Code Setup is read only and built by Anthropic, so it is about as low risk as a plugin gets. The other four run real commands, some with system-level access. Skim what a skill actually does before you say yes, the same way you would for any script you found on GitHub.
Quick reference
| Tool | Solves | Install command | Cost |
|---|---|---|---|
| Claude Code Setup | Missing or messy configuration | /plugin install claude-code-setup@claude-plugins-official | Free |
| OmniRoute | Weekly usage limits | npm install -g omniroute | Free (own API keys optional) |
| Find Skills | Reinventing skills that already exist | npx skills add vercel-labs/skills --skill find-skills | Free |
| Strix | Unaudited security vulnerabilities | npx skills add usestrix/strix | Free tool, you pay LLM API costs |
| Agent Reach | Claude Code can’t read the live web | pip install agent-reach | Free (proxy optional, ~$1/mo) |
One terminal, five installs, and Claude Code stops being a blank slate and starts being the setup you actually needed.

Leave a comment