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

veto-meow-gateway

v0.1.0

Published

Self-hostable delegated-authority gateway for Meow's MCP write-API. Optional connect to veto.so for observability + HITL.

Readme

veto-meow-gateway

Self-hostable delegated-authority gateway for Meow's MCP write-API. Runs on your laptop, your container platform, or connects to veto.so for the managed upgrade.

Block 2 status (this commit): runnable skeleton. Real capsule mint, MCP proxy, and OAuth land in Blocks 4–5. The commands below work today.

60-second start (from this repo)

Keep key and data directories outside the repo so they never end up in a Docker/Cloud Build context or a git commit. The defaults below place them under ~/.veto/meow-gateway/.

pnpm install
pnpm --filter veto-meow-gateway build

export KEYS_DIR="$HOME/.veto/meow-gateway/keys"
export STORAGE_DIR="$HOME/.veto/meow-gateway/data"

node apps/meow-gateway/dist/bin/cli.js keygen      # writes to $KEYS_DIR
node apps/meow-gateway/dist/bin/cli.js start        # boots at http://localhost:3005
curl http://localhost:3005/health
curl http://localhost:3005/.well-known/veto-keys.json

Or, via the workspace scripts from the repo root:

pnpm --filter veto-meow-gateway keygen
pnpm --filter veto-meow-gateway start

Never place KEYS_DIR inside the repository tree. The root .dockerignore excludes veto-keys/, .veto-keys/, .veto-data/, *.sqlite, and *.ndjson as belt-and-suspenders, but the first line of defense is storing secrets outside source control in the first place.

veto-meow-gateway is private to the monorepo until veto-spend-capsule-protocol publishes to npm (Block 4). Until then, the gateway is not npx-able — use the repo-local commands above.

Subcommands (veto-meow-gateway <command>)

| Command | Ships in | Notes | |-----------|-----------------|-------| | keygen | Block 2 (today) | generate Ed25519 keypair to $KEYS_DIR | | start | Block 2 (today) | boot HTTP server + /health + /ready + JWKS | | demo | Block 4 | offline end-to-end: mint → consume → verify chain | | connect | Block 7 | real OAuth handshake to veto.so (currently a placeholder — see bin/connect.ts) |

Self-host stack

  • Policy packs: bundled YAML inside the container at /etc/veto/policy-packs/
  • Receipts: append-only NDJSON at $STORAGE_DIR/receipts.ndjson + SQLite at $STORAGE_DIR/store.sqlite. SQLite is the authoritative store; NDJSON is a deterministic rebuildable export.
  • Budgets + leases: SQLite (single-process semantics; see storage/local.ts)
  • Signing keys: $KEYS_DIR/ (PKCS8 Ed25519 + JWKS JSON, chmod 600)
  • JWKS endpoint: served locally at /.well-known/veto-keys.json
  • HITL approvals: logged to stdout by default; Slack webhook configurable via env

connect veto.so unlocks

  • Multi-node policy pack distribution
  • Central receipt aggregation + merkle root publication
  • Slack/Discord HITL UI + dashboards
  • Cross-entity analytics
  • Long-term audit retention

Self-host stays free forever. Connect is the managed upgrade.

Deploy (managed)

Cloud Build config is in ops/cloudbuild/meow-gateway.yaml. Currently gated behind a break-glass _ALLOW_DEPLOY=true substitution pending:

  1. veto-spend-capsule-protocol publish to npm (removes the sibling-repo file: dep)
  2. Persistent signing-key + storage provisioning on Cloud Run (Secret Manager for the key, GCS/Memorystore for receipts)

Until both land, gateway.veto.so is not backed by an automatically deployed revision — self-host is the canonical path.