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

cdkbot

v0.1.3

Published

CDK Bot — buy game keys, gift cards, and digital products, built for AI agents. Command-line client.

Readme

cdkbot

CDK Bot — buy game keys, gift cards, and digital products, built for AI agents.

Command-line client for CDK Bot: search the catalog, get a price-locked quote, pay on Base, and receive the key — from your terminal. Buy video game keys (Steam / PlayStation / Xbox / Nintendo), gift cards, and digital products with stablecoins and other crypto (USDC, USDT, EURC) via the x402 flow.

npx cdkbot search "Elden Ring" --device PC
npx cdkbot buy <game_id>            # shows the price + a clickable checkout link

Install

npm install -g cdkbot     # then: cdkbot ...
# or run without installing:
npx cdkbot <command>

Commands

| Command | What it does | |---------|--------------| | cdkbot search <query> | Best match (or --all for a list) with price + live market comparison | | cdkbot info <game_id> | Full product details | | cdkbot buy <game_id> | Show the price + a clickable checkout link. --open pays in the browser; --key pays autonomously | | cdkbot status <order_id> --wallet <addr> | Check an order / retrieve the delivered key | | cdkbot refund <order_id> --wallet <addr> --reason <reason> | Submit a refund claim |

Global: --api <url> (or $CDKBOT_API, default https://api.cdk.bot), --json.

Paying

cdkbot buy <id> never charges on its own — it shows the price and a clickable checkout link, and you choose how to pay:

Browser (default — no private key). Open the /pay link it prints (connect a wallet or scan a QR); your key is delivered right in the page. Add --open to launch it for you:

cdkbot buy <game_id> --open

Autonomous (opt-in private key). Give a funded Base wallet and cdkbot sends the stablecoin itself, then delivers the key — one command, no human step. Prefer the env var so the key never lands in your shell history:

export CDKBOT_PRIVATE_KEY=0x...        # a funded Base wallet
cdkbot buy <game_id> --yes             # --yes skips the spend confirmation

⚠️ Autonomous mode spends real funds (the quoted stablecoin — USDC, USDT, or EURC on Base) and is irreversible. The key is read from --key/$CDKBOT_PRIVATE_KEY, used only to sign the transfer, and is never logged or sent anywhere.

For agents. cdkbot buy <id> --json is non-interactive: it returns { amount, currency, address, quote_id, checkout_url, payment_url, next_steps } — hand checkout_url to a human, or pay with --key. Every command honors --json; errors are { error, message, status, body }.

Sandbox (no real money)

Add --sandbox to buy to run on Base Sepolia testnet and receive a mock SANDBOX-… key:

cdkbot buy <game_id> --sandbox

Related

  • API & docs: https://api.cdk.bot — discovery at /.well-known/agent.json, /llms.txt, /openapi.json
  • MCP server: https://mcp.cdk.bot/mcp
  • Skills & plugin: https://github.com/cdkbotmcp/cdk-skills
  • Reference code: https://github.com/cdkbotmcp/cdk-agent-example

License

MIT