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

@effectorhq/audit

v1.0.0

Published

Security scanner for AI agent capability manifests — detects prompt injection, permission creep, and data exfiltration

Readme

effector-audit

npm version CI License: MIT Status: Alpha

Security scanner for Effector packages (static-only).


The Trust Crisis

On February 18, 2026, Snyk published the ToxicSkills Report. The findings were severe: 36% of ClawHub skills contained prompt injection or malicious payloads. The ClawHavoc campaign had planted 1,184+ malicious skills targeting developers. Trend Micro confirmed distribution of the Atomic macOS Stealer through community-published skills. Microsoft, Cisco, and 1Password all published independent analyses confirming the systemic nature of the threat.

The root cause wasn't a bug. It was an architectural absence: no code signing, no security review, no formal permission model for AI agent capabilities. Anyone could publish a skill to ClawHub. Everyone had to trust it blindly.

This is npm circa 2018 — before npm audit, before lockfiles, before Sigstore. Except the stakes are higher, because AI agent capabilities don't just run code. They control what an AI does in the world: reading your files, calling APIs, sending messages, modifying databases.

effector-audit closes this gap.

Install

npm install @effectorhq/audit

You can also use the CLI directly without installing globally:

npx @effectorhq/audit ./my-skill
npx @effectorhq/audit ./my-skill --format json

See the published package on npm: https://www.npmjs.com/package/@effectorhq/audit

What It Does

1. Static Analysis (implemented)

Scans Effector packages for known vulnerability patterns (no execution sandbox):

npx effector-audit ./my-skill/

  ✗ CRITICAL  prompt-injection    Line 23: System prompt override detected
  ✗ HIGH      data-exfiltration   Line 47: Unscoped network access to external domain
  ⚠ MEDIUM    permission-creep    Network/filesystem/subprocess usage without declared permissions

  2 critical, 1 warning — audit failed

Detection patterns include:

  • Prompt injection and jailbreak attempts in SKILL.md content
  • Data exfiltration vectors (unscoped network, filesystem access)
  • Obfuscated instructions (base64, unicode tricks, invisible text)

2. Permission Drift Check (implemented)

Cross-references declared permissions against actual capability behavior:

npx effector-audit permissions ./my-skill/

  Declared permissions:
    ✓ network:external

  Detected behavior:
    ✗ network:evil.com       (fetch/curl — NOT DECLARED)
    ✗ write:filesystem       (fs.writeFileSync — NOT DECLARED)

  Permission drift detected: 2 undeclared capabilities

What Is Not Implemented Yet

The README previously described signing/supply-chain verification. Those are roadmap items and are not in the current codebase:

  • Cryptographic signing / verification
  • Supply-chain verification / SBOM generation
  • GitHub Action effector-audit-action

Integration

CI/CD Pipeline

# In your publish pipeline
effector-audit . && effector-audit permissions . && npm publish

Registry Gate

effector-audit is designed to be a registry gate — ClawHub, MCP Registry, or any future capability registry can require signed, audited Effectors before listing them.

Architecture

effector-audit
├── scanner/          # Static analysis engine
│   ├── rules/        # Detection rules (prompt injection, exfiltration, etc.)
│   ├── analyzer.js   # AST + content analysis for SKILL.md and code
│   └── reporter.js   # Output formatting (terminal, JSON)
├── permissions/       # Permission analysis
│   └── diff.js       # Permission drift detection

Roadmap

  • [x] v0.1 — Core scanner (prompt injection + exfiltration + basic permission creep signals)
  • [x] v0.1 — Permission drift check (effector.toml vs detected behavior)
  • [ ] v0.2 — Signing + verification
  • [ ] v0.3 — Supply chain verification / SBOM
  • [ ] v0.4 — GitHub Action
  • [ ] v0.5 — Type contract verification (types catalog)
  • [ ] v1.0 — Production-ready, registry-gate capable

Contributing

Security tooling needs adversarial thinking. We especially need:

  • New detection rules — Found a new attack pattern? Submit a rule
  • False positive reports — If the scanner flags legitimate patterns, we need to know
  • Registry integration — Help us build gates for ClawHub, MCP Registry, and others
  • Signing UX — Make signing as frictionless as possible for capability authors

License

MIT


Part of the effectorHQ studio. We build hands for AI.