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

@tallyforagents/sdk

v0.4.0

Published

Tally TypeScript SDK — give AI agents USDC wallets and scoped programmable spending on Base.

Readme

@tallyforagents/sdk

The official TypeScript SDK for Tally — give AI agents USDC wallets and scoped programmable spending on Base.

Tally is non-custodial: you hold your wallet, you set the spending rules, and you grant any external agent scoped permission to send. Tally never custodies funds and never runs the agent.

Public preview on Base Sepolia today. Base mainnet support is on the way — join the waitlist.

Install

npm install @tallyforagents/sdk
# or
pnpm add @tallyforagents/sdk
# or
yarn add @tallyforagents/sdk

Targets Node 18+ and uses the platform's native fetch — zero runtime dependencies.

Quickstart

import { Tally } from "@tallyforagents/sdk";

const tally = new Tally({
  apiKey: process.env.TALLY_API_KEY!, // tly_test_… or tly_live_…
});

// Register (or update) an agent
await tally.agents.upsert({
  id: "research-bot",
});

// Send a payment from one of your wallets
const payment = await tally.payments.create({
  agent: "research-bot",
  wallet: "wlt_…",
  to: "0xRecipient…",
  amount_usdc: "1.50",
});

console.log(payment.tx_hash);

Get an API key from the Tally dashboardAPI keys. Test-mode keys (tly_test_…) send on Base Sepolia; live-mode keys (tly_live_…) target Base mainnet once that's enabled on your account.

What's in the box

| Resource | Methods | |---|---| | tally.agents | upsert, list, get | | tally.payments | create, get | | tally.webhooks | verifySignature (HMAC-SHA256, Stripe-style t=…,v1=… header) |

Typed errors map server responses to exception classes:

import {
  TallyError,
  AuthenticationError,
  NotFoundError,
  ValidationError,
  RateLimitError,
  ConflictError,
} from "@tallyforagents/sdk";

More method wrappers (wallets.*, permissions.*, payments.list, agents.delete, webhooks.list/create/revoke) are on the roadmap — see the changelog.

Full docs

Concepts, guides, and the complete API reference live at https://www.tallyforagents.com/docs:

Configuration

new Tally({
  apiKey: "tly_test_…",
  baseUrl: "https://app.tallyforagents.com", // override for local dev or self-hosting
  fetch: customFetch,                         // optional custom fetch impl
});

Support

License

MIT © Tally