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

@snapfi/cli

v0.2.1

Published

CLI for Snap — single-use virtual cards for AI agents.

Readme

@snapfi/cli

Command-line interface for Snap — single-use virtual cards for AI agents.

Snap is in private beta. Run snap signup to join the waitlist.

Install

npm install -g @snapfi/cli

This installs both snap and snapfi as global commands. Use whichever you prefer — they're the same binary.

Quickstart

# 1. Join the private beta waitlist.
snap signup

# 2. Once you receive your CLI key, log in.
snap login

# 3. Issue a single-use virtual card for your agent.
snap card create \
  --merchant amazon.com \
  --amount 42.10 \
  --ttl 5m

Commands

The CLI follows a noun verb pattern (snap card create, snap agent list, etc.) modeled on gh, vercel, and stripe. Run any command with --help to see its options.

Top-level

| Command | Description | |---|---| | snap signup | Join the private beta waitlist | | snap login | Authenticate with your CLI key | | snap logout | Sign out | | snap upgrade | Update to the latest version | | snap --help | Show usage | | snap --version | Show CLI version |

snap card — single-use virtual cards

| Command | Description | |---|---| | snap card create | Issue a new single-use virtual card | | snap card list | List your recent cards | | snap card show <id> | Show details for a card | | snap card revoke <id> | Revoke a card before it's used |

snap agent — per-agent API keys

| Command | Description | |---|---| | snap agent create | Issue a new agent API key | | snap agent list | List your agent keys | | snap agent show <id> | Show details for an agent key | | snap agent revoke <id> | Revoke an agent key |

snap transaction (alias: tx) — transaction history

| Command | Description | |---|---| | snap transaction list | List recent transactions | | snap transaction show <id> | Show details for a transaction |

snap account — account, balance, and limits

| Command | Description | |---|---| | snap account balance | Show available and reserved balance | | snap account info | Show account info and limits |

Configuration

The CLI stores its config in your OS-appropriate config directory (~/Library/Preferences/snapfi/ on macOS, $XDG_CONFIG_HOME/snapfi/ on Linux, %APPDATA%/snapfi/ on Windows).

| Env var | Default | Description | |---|---|---| | SNAP_API_URL | https://api.snapfi.dev/v1 | Override the API base URL | | SNAP_NO_UPDATE_CHECK | unset | Set to 1 to skip the update notifier (e.g. in CI) |

Requirements

  • Node.js 18 or later (uses native fetch)
  • A Snap account — request access at snapfi.dev

Why Snap?

Snap issues single-use virtual payment cards designed to be spent by AI agents at any merchant. The product is built around safety primitives designed for autonomous decision-making:

  • Single-use cards that die after one charge
  • Network-enforced spending limits declined at the rails before they ever clear
  • Per-merchant locks so a wrong-merchant authorization fails at the network
  • Per-agent API key isolation with revocation in real time
  • Sentinel — an optional LLM that reviews each charge against the agent's task brief and blocks anything off-context

Learn more at snapfi.dev.

License

MIT