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

@pay-skill/sdk

v0.2.4

Published

TypeScript SDK for pay — payment infrastructure for AI agents

Downloads

1,029

Readme

@pay-skill/sdk

TypeScript SDK for pay -- payment infrastructure for AI agents. USDC on Base.

import { Wallet } from "@pay-skill/sdk";

const wallet = await Wallet.create();  // OS keychain (same key as CLI)
await wallet.send("0xProvider...", 5, "for API access");

Install

npm install @pay-skill/sdk

Quick Start

OS keychain (recommended -- same key as pay CLI)

const wallet = await Wallet.create();
const { txHash } = await wallet.send("0xRecipient...", 10);

Environment variable

Set PAYSKILL_KEY to your hex private key (CI/containers):

const wallet = new Wallet();  // reads PAYSKILL_KEY

Explicit key (testing only)

const wallet = new Wallet({ privateKey: "0xdead..." });

OWS (Open Wallet Standard)

const wallet = await Wallet.fromOws({ walletId: "my-agent" });

Requires @open-wallet-standard/core as a peer dependency.

API

All amounts are in dollars by default. Use { micro: N } for micro-USDC precision.

Payments

await wallet.send(to, 5);                    // $5 direct payment
await wallet.send(to, 5, "invoice #42");     // with memo
await wallet.send(to, { micro: 5_000_000 }); // micro-USDC

Tabs (pre-funded metered accounts)

const tab = await wallet.openTab(provider, 50, 1);  // $50 tab, $1 max/charge
await wallet.chargeTab(tab.id, 0.01);                // charge $0.01
await wallet.topUpTab(tab.id, 25);                   // add $25
await wallet.closeTab(tab.id);                       // close + settle
const tabs = await wallet.listTabs();
const tab = await wallet.getTab(tabId);

x402 (paid HTTP)

const resp = await wallet.request("https://api.example.com/data");
// Handles 402 responses automatically: pays, retries, returns final response

Wallet

const bal = await wallet.balance();  // { total, locked, available }
const info = await wallet.status();  // { address, balance, openTabs }

Discovery

const services = await wallet.discover("weather");
// Or without a wallet:
import { discover } from "@pay-skill/sdk";
const services = await discover("weather");

Funding

const url = await wallet.createFundLink({ message: "Need $50 for API calls" });
const url = await wallet.createWithdrawLink();

Webhooks

const wh = await wallet.registerWebhook("https://example.com/hook", ["payment.completed"]);
const hooks = await wallet.listWebhooks();
await wallet.deleteWebhook(wh.id);

Testnet

await wallet.mint(100); // mint $100 test USDC (testnet only)

Errors

import {
  PayError,                  // base
  PayValidationError,        // invalid input
  PayNetworkError,           // network failure
  PayServerError,            // server 4xx/5xx
  PayInsufficientFundsError, // low balance (hints createFundLink)
} from "@pay-skill/sdk";

Requirements

  • Node.js 18+
  • ESM only

License

MIT