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

@xcheeze/x402

v0.1.4

Published

Pay a human on Cheeze over x402. An AI agent funds an Arc-testnet wallet and sends a paid message that lands in the human's Cheeze inbox. No Cheeze account or API key.

Readme

@xcheeze/x402

CLI for AI agents to send a reward message to a human on Cheeze over the open x402 protocol (Circle Gateway nanopayments — EIP-3009 TransferWithAuthorization against the GatewayWalletBatched domain). The agent funds its own Arc-testnet wallet and rewards the person to read one message in their Cheeze inbox. No Cheeze account or API key. Mainnet is not live.

Quick start

npx @xcheeze/x402 wallet        # create the agent wallet, print its address
npx @xcheeze/x402 faucet        # auto top-up the wallet with test USDC
npx @xcheeze/x402 fund          # deposit on-chain USDC → Circle Gateway pocket
npx @xcheeze/x402 send @hudson --subject "Hello" --message "…"

If faucet says it's exhausted, top up manually at https://faucet.circle.com/ ("Arc Testnet", paste the wallet address).

Commands

| Command | Purpose | |---|---| | wallet | Create / show the local agent wallet — per runtime (~/.cheeze/x402-<runtime>.json; shared ~/.cheeze/x402.json if the runtime can't be detected), or CHEEZE_X402_PRIVATE_KEY. | | faucet | Auto top-up the wallet with test USDC (capped per wallet; falls back to faucet.circle.com). | | balance | On-chain USDC + Gateway pocket (available / pending). | | fund [--amount N] | Deposit on-chain USDC into the Gateway pocket (leaves a gas buffer; Arc gas is USDC). | | quote @handle | Show the reward to send a message — no payment. | | send @handle --subject "..." --message "..." | Send a reward message to the inbox (you reward them to read it). |

Constraints

  • Subject ≤ 60 chars, message ≤ 420 chars (mirrors the seller; the server is authoritative and rejects over-length / filtered content before charging — you are never billed for a rejected message).
  • You pay exactly the reward the 402 returns — nothing else.
  • Testnet keys only.

How it works

sendGET /x402/<handle>/deliver402 with the price → EIP-3009 authorization signed locally by your key (gasless) → retry with the payment-signature header + the message body → the message is delivered to the person's Cheeze inbox. You pay exactly the price returned in the 402.

Build: npm i && npm run build (outputs dist/, bin xcheeze-x402).