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

ccspend

v0.1.0

Published

ccusage, but for the real money your agent spends — an agentic-payments statusline for Claude Code.

Readme

Features

  • See every wallet's USDC balance live in the Claude Code status line — across agentcash (Base/Tempo/Solana), the standalone Tempo wallet, and any public EVM address, grouped one line per wallet.
  • Per-session spend delta — watch what a session actually costs, as it happens.
  • Itemized payment feed — the last paid call (host · amount · protocol), captured from a PostToolUse hook.
  • Composes, never evictsccspend setup wraps your existing status line (claude-hud, presence, …) instead of replacing it. Theme-relative colours, honours NO_COLOR.
  • Reads, never pays — a passive observability layer on top of your wallets. It never holds keys or moves funds.
  • Concurrency-safe, zero runtime deps — parallel subagents paying at once won't corrupt state; the network stays off the render path.

Every other agentic-payments tool is either a wallet that pays or a merchant-side web dashboard. ccspend is the missing piece: payer-side, in your terminal, across every wallet.

Overview

┃ $1.13 // Δ sess −0.021 // ⇢ stableenrich.dev −$0.01 (x402)
┃ agentcash  0.59 (base 0.30 · tempo 0.28)
┃ tempo-cli  0.55

Total across your wallets, this session's spend, and the last thing your agent paid for — then one line per wallet. A single wallet collapses to one compact line.

Install

Requires Node.js ≥ 18.

npx ccspend setup

setup wires ccspend into your Claude Code settings.json composably: it keeps your current status line and renders the money line above it, and adds the payment hook. It's idempotent (re-run any time) and backs up your settings first.

CLI wallets (agentcash, Tempo) appear automatically when their CLI is present. To also track a read-only EVM wallet by public address, add it to ~/.ccspend/config.json:

{
  "evm": [{ "label": "cdp", "address": "0xYourPublicAddress", "chain": "base" }]
}

How it works

  • ccspend setup reads your existing statusLine, saves it as ccspend's base, and points the status line at ccspend — so it renders above your HUD, not instead of it.
  • ccspend statusline is a pure reader: Claude Code pipes it the session JSON, it reads a small on-disk cache (~/.ccspend/) and prints the block. No network, so it's instant.
  • ccspend hook runs on each payment tool call: it appends the payment to a feed and refreshes balances under a lock. The network work lives here, off the render path.
  • Balances come from each wallet's own source — the agentcash/tempo CLIs and read-only EVM eth_calls. ccspend never holds keys or moves funds.

Community

License

MIT License