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

@strixgov/guard

v0.1.0

Published

The seatbelt for MCP agents — one command wraps your MCP servers with Strix governance: writes require human approval, reads pass, every action produces a signed receipt.

Downloads

12

Readme

@strixgov/guard

The seatbelt for MCP agents. One command wraps the MCP servers your AI agent already uses with Strix execution control: reads pass, writes block until a human approves, and every action produces a signed, independently verifiable receipt.

npx @strixgov/guard init

That's the whole install. Guard detects your MCP client config (Claude Code ./.mcp.json, Claude Desktop, Cursor), backs it up, and re-points each server through @strixgov/mcp-proxy — the governed proxy that applies policy before the tool call reaches the real server.

The five-minute loop

# 1. Wrap your agent's MCP servers (config is backed up first)
npx @strixgov/guard init

# 2. Restart your MCP client, let the agent work.
#    Reads pass. The first write BLOCKS and waits for you.

# 3. See what's waiting
npx @strixgov/guard pending

# 4. Approve it (or deny it)
npx @strixgov/guard approve <requestId>

# 5. The call runs and mints a signed receipt in ~/.strix-guard/receipts/

Want the ping where you actually live? Point approvals at Slack:

npx @strixgov/guard init --webhook https://hooks.slack.com/services/T…/B…/x…

Each blocked call posts a Slack-compatible message with the request id and the exact approve/deny commands. The decision still happens on your machine — a lost notification can never approve anything, and never silently denies a legitimate call (the request just keeps waiting until you decide or it times out to DENY).

Defaults (never silent-allow)

| Server | Policy | |---|---| | Known servers (Notion, GitHub, Slack, Linear, Postgres, filesystem, email) | Pre-classified capability pack: low-risk reads ALLOW, everything else APPROVAL_REQUIRED | | Unknown servers | APPROVAL_REQUIRED for every call until classified |

Timeout without a decision → DENY. Guard never defaults a write to silent-allow.

What Guard writes (and nothing else)

~/.strix-guard/
  servers/<id>.json    per-server proxy config (your upstream command moves here verbatim)
  approvals/           request/response files — the decision channel
  receipts/<id>/       Ed25519-signed receipts per server
  state.json           local-only activation timestamps
<your-client-config>.bak-strix-guard-<ts>   backup of the original config

No network telemetry. Guard sends nothing anywhere except the approval notifications you explicitly configure with --webhook.

Uninstall

Restore the backup file over your client config and delete ~/.strix-guard. Receipts you keep remain verifiable offline.

License

MIT. The proxy Guard configures (@strixgov/mcp-proxy) is Elastic-2.0 — free to use, source-available.