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

@scopeblind/onboard

v0.1.0

Published

Bridge from @veritasacta/verify free tier to a managed ScopeBlind account. Detects .veritasacta/ config, prompts for plan, generates signup URL pre-filled with your project's public key.

Readme

@scopeblind/onboard

Bridge from the free @veritasacta/verify CLI to a managed ScopeBlind account.

What it does

  1. Detects the .veritasacta/config.json produced by npx @veritasacta/verify init.
  2. Reads your project's public key identifier (kid) and framework.
  3. Prompts for a plan tier (developer / starter / pro / enterprise) and optionally an email.
  4. Generates a pre-filled signup URL at scopeblind.com/start that carries the kid into Stripe Checkout metadata.
  5. Writes a .scopeblind/account.json local record with status: "pending" so you can track outstanding signups.
  6. Offers to open the URL in a browser.

No credentials or private material leave the local machine. The signup happens entirely in the browser; the managed backend links your submitted kid to the new account automatically on checkout success.

Install

npm install -g @scopeblind/onboard
# or one-off:
npx @scopeblind/onboard

Use

Interactive (recommended)

cd my-agent-project
npx @scopeblind/onboard

The CLI walks you through plan selection and email entry and then offers to open the signup URL.

Non-interactive (CI, scripted setups)

npx @scopeblind/onboard --plan starter --email [email protected] --non-interactive

Flags

| Flag | Purpose | |---|---| | --plan <tier> | developer (free, 50K/mo), starter ($49/mo), pro ($499/mo), enterprise (custom) | | --email <addr> | Pre-fill the signup form | | --project-dir <dir> | Where to look for .veritasacta/ (default .) | | --non-interactive, -y | Skip prompts; requires --plan | | -h, --help | Help |

Relationship to @veritasacta/verify

| Piece | License | Role | |---|---|---| | @veritasacta/verify | Apache-2.0 | Free forever. Offline verification. No account required. | | @scopeblind/onboard | MIT | Optional. Bridges to the managed tier. Only useful if you want ScopeBlind to store receipts, generate compliance reports, or run 24/7 retention. |

You do not need @scopeblind/onboard to use the open verifier. The verifier is complete and supported without any account.

What ScopeBlind's managed tier adds on top of the verifier

  • Multi-tenant receipt storage with configurable retention (7d / 30d / 1y / custom)
  • SOC 2 / ISO 42001 / EU AI Act export generators (auto-assembled from the receipt chain)
  • Team accounts, SSO, audit log access
  • 24/7 ingestion SLA, hot failover, read-replica regions
  • Enterprise DPA + BYO-cloud option

Full pricing and tier comparison: scopeblind.com/pricing

Privacy

The CLI reads .veritasacta/config.json (which you created locally) and writes .scopeblind/account.json (also local). It makes no network calls itself. The signup URL is the only path to the network; what gets submitted is whatever you fill in the browser.

Your private signing key (in .veritasacta/attester.json by default) is never read or transmitted.

License

MIT.