npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

skillrx

v1.0.0

Published

Skill RX is a security scanner for AI agent skills and plugins. Scans Claude Code, Codex, Cursor, Aider, Continue.dev, MCP servers and 40+ other agent ecosystems before you install them.

Readme

skillRx

Security scanner for AI agent skills and plugins. Reviews the code before you install it.

Usage

npx skillrx owner/repo

That's it. skillrx clones the repo, analyzes it, and gives you a verdict: TRUSTED, CAUTION, RISKY, or MALICIOUS.

What you can scan

  • Claude Code skills and plugins
  • Codex skills and plugins
  • Skills for 40+ other agents (Cursor, Aider, Continue.dev, Vercel AI SDK, OpenAI Assistants, MCP, etc.)

If it ships as a skill or plugin, skillrx reads it.

Two ways to scan

Full repository — point skillrx at a repo (or local folder). It scans the whole tree you give it (respecting filters and limits).

Single skill in a monorepo — for big skills collections (for example anthropics/skills), use --skill <name> so only skills/<name> is fetched with a sparse checkout instead of cloning everything.

npx skillrx anthropics/skills --skill frontend-design

What we look for

| Area | What it detects | | ------------------------- | ------------------------------------------------------------- | | Prompt injection | Attempts to hijack the agent's role or coerce its tools | | Shadow features | What the README promises vs what the code actually does | | Exfiltration | Odd endpoints, URL shorteners, hardcoded IPs, DNS exfil | | Secrets | Exposed API keys, tokens, JWTs, private blocks | | Dangerous permissions | Destructive shell, persistence, privilege escalation | | Post-install scripts | npm lifecycle hooks, curl | sh, risky setup.py, git hooks |

How the score is calculated

Starts at 100. Each finding subtracts points based on severity:

  • High: −25
  • Medium: −10
  • Low: −5

If a critical rule fires (hardcoded secrets, reverse shells, install-time curl | sh, severe prompt injection), the result jumps straight to MALICIOUS with score 0.

| Range | Verdict | | ------------- | --------- | | 80–100 | TRUSTED | | 50–79 | CAUTION | | 0–49 | RISKY | | Critical rule | MALICIOUS |

Useful flags

npx skillrx owner/repo --full   # show every finding
npx skillrx owner/repo --json   # JSON output

No execution

skillrx does not run npm install, node, or python against the repo. It only reads files and applies patterns. Pure static analysis, 100% offline (except for the initial clone).

License

MIT