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

@processai/setup

v0.3.3

Published

Public PAiD setup bootstrapper for entitlement-gated agent skill installation.

Readme

PAiD Setup

Public bootstrapper for PAiD agent skill installation.

Intended customer entrypoint:

npx -y @processai/setup
npx -y @processai/setup all
npx -y @processai/setup claude
npx -y @processai/setup codex
npx -y @processai/setup --version

With no target, setup defaults to all: it installs into every supported client it detects on the user's machine. If only Claude Code or only Codex is present, the missing client is skipped. If neither is present, setup fails closed with a clear message. The old both target remains accepted as an alias for all for older instructions.

On macOS, Codex detection checks both codex on PATH and the standard Codex app binary at /Applications/Codex.app/Contents/Resources/codex.

The installer is deliberately fail-closed. It must not install private PAiD skills unless PAiD has accepted an existing PAiD MCP OAuth/PAT credential for the current principal.

The first private packages are:

  • @processai/agent-plugin-core, containing the PAiD router skill.
  • @processai/agent-plugin-reporting, containing branded report rendering and accounting review workflow skills.

Runtime data access still depends on PAiD MCP entitlements.

The setup CLI installs whatever safe skill-pack list the PAiD claim endpoint returns. Adding a later generic pack should not require republishing @processai/setup unless the claim protocol, package validation, native client installation behaviour, or supported package scope changes.

The default flow opens PAiD OAuth in a browser, receives a loopback PKCE callback, claims the entitled skill packs from the MCP server, and then installs through the native Claude/Codex plugin command. Private package bytes are downloaded from PAiD after the same MCP credential is re-checked server-side; customers do not need npm or GitHub package credentials.

Before installing, setup reports the current local plugin version for each returned skill pack per detected client and the entitled version returned by PAiD. It prints whether each client is installing for the first time, updating, or already current.

For support and release tracking, --version and -v print the public setup bootstrapper version without opening OAuth, checking clients, or contacting the PAiD setup API.

Development smoke paths:

node ./bin/paid-setup.mjs --dry-run
PAID_ACCESS_TOKEN_FILE=/path/to/token.txt node ./bin/paid-setup.mjs claude --plan-only
PAID_ACCESS_TOKEN_FILE=/path/to/token.txt node ./bin/paid-setup.mjs all \
  --plugin-source ../paid-core-plugin \
  --reporting-plugin-source ../paid-reporting-plugin \
  --plan-only

PAiD support may run private-registry fallback checks in controlled automation. The intended customer path is the PAiD brokered package download advertised by the claim endpoint; customers should not need direct npm credentials.

For production, new generic packs are released by publishing the private plugin package, updating the MCP runtime skill-pack catalogue, restarting the MCP services so that catalogue is loaded, and running the setup/broker smoke checks. Per-pack, database-specific, or staged rollout rules still require control-plane entitlement work rather than catalogue-only distribution.

Skill-pack availability is derived from the same MCP database, organisation, capability, and role entitlements used at runtime. The setup output must not print bearer tokens, refresh tokens, OTPs, registry credentials, tenant names, database slugs, or organisation slugs.