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

acommerce

v0.3.0

Published

Acommerce CLI + MCP runtime (acommerce.dev) — provision every account your stack needs from chat. Bundles Playwright-driven provider recipes and the on-disk skill installer.

Readme

acommerce

Install the Acommerce CLI + SDK from npm as acommerce.

Recommended: run the latest CLI without a global install (avoids PATH issues):

npx acommerce@latest setup --yes

The package's postinstall hook downloads Chromium (~150MB, one time) so the local browser recipes can drive provider signup pages.

Optional global install:

npm i -g acommerce
acommerce setup --yes

Need the SDK in your app code? import { createAcommerceClient } from "acommerce" once you've installed the package as a project dep. Most users never need this — the agent uses the MCP server, not the SDK. See the dashboard docs for the SDK-vs-MCP breakdown.

What acommerce setup does (step by step)

  1. Local vault — Ensures a local identity exists under ~/.acommerce/ (X25519 key material used by the vault).
  2. Start pairingPOST to https://acommerce.dev/api/cli/pair (or your ACOMMERCE_ORIGIN) to get a one-time authorizeUrl and pollUrl.
  3. Browser — Prints the URL and opens your default browser (unless --no-browser). You sign in and authorize the CLI (same device-flow pattern as GitHub’s CLI).
  4. Wait for approval — Polls every 2s, up to 10 minutes, until the server marks the pair complete and returns a token plus your email and inbox (address + id, minted on the host’s mail domain).
  5. Session file — Writes ~/.acommerce/acommerce.session.json (mode 0600) with: origin, token, email, inbox, obtainedAt.
  6. Post-auth onboarding (idempotent; failures are warned, not fatal):
    • API key — Merges or creates ~/.acommerce/.env with ACOMMERCE_API_KEY (generated if missing), ACOMMERCE_EMAIL, ACOMMERCE_INBOX, ACOMMERCE_ORIGIN.
    • Skill — Prompts for install scope: global (default), project (current directory), or skip. Copies the bundled skills/acommerce/SKILL.md into detected Claude / Cursor skill directories.
    • MCP — Prompts to register the acommerce mcp server in ~/.cursor/mcp.json and ~/.claude/settings.json when those config dirs exist (defaults to yes). Use --yes-mcp / --no-mcp to skip the prompt; --skill global|project|skip for non-interactive skill install.
  7. Done — Prints a short “Ready” banner suggesting you say in the editor: Use acommerce to create a new stack.

For local development of the web app, point the CLI at your machine:

ACOMMERCE_ORIGIN=http://localhost:3000 npx acommerce@latest setup --no-browser

Set ACOMMERCE_PUBLIC_ORIGIN=http://localhost:3000 on the Next server so pairing URLs resolve correctly.

Inbox (for you and for coding agents)

After setup, list recent mail pulled from your session inbox (same store recipes use):

acommerce inbox list
acommerce inbox list --limit 10 --json   # structured output for agents / scripts

Requires a non-synthetic inbox on the server (MAIL_DOMAIN + ingest). Agents may run this command from the project terminal; it never prints your session token.

Payments

Acommerce does not issue virtual cards yet. If a provider's signup flow demands payment details, the recipe hands off to the user with a clear message — they complete the billing step themselves with their own card, then resume.