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

llummo

v0.1.6

Published

CLI for Llummo — real-time LLM cost tracking & proxy

Readme

llummo

The official CLI for Llummo — real-time LLM cost tracking & proxy.

Track spend, manage proxy keys, and configure any AI SDK or terminal tool from your terminal.

Installation

# Run once without installing
npx llummo <command>

# Or install globally
npm install -g llummo

Quick start

1. Get a CLI token

Go to Dashboard → Settings → CLI Tokens and create a personal access token.

2. Authenticate

llummo login
# Paste your token when prompted

3. Init a project

cd my-app
llummo init

init detects your installed AI SDKs, lets you pick or create a proxy key, writes .env.local, and prints the exact code change needed. It also offers to set up native passthrough env vars for terminal tools like Claude Code, Cursor, and Aider — no code changes required.

Commands

| Command | Description | |---|---| | llummo login | Authenticate with a personal access token | | llummo whoami | Print the authenticated account email and plan | | llummo init | Configure the proxy in the current project | | llummo keys list | List all proxy keys | | llummo keys create [name] | Create a new proxy key (shown once — store it) | | llummo keys delete [id] | Revoke a proxy key | | llummo status | Show spend and token usage for the current period | | llummo status --from <YYYY-MM-DD> --to <YYYY-MM-DD> | Show usage for a custom date range |

SDK integration

After running llummo init, update your AI client to point at the proxy:

OpenAI

import OpenAI from "openai";

const client = new OpenAI({
  apiKey:  process.env.LLUMMO_PROXY_KEY,
  baseURL: process.env.LLUMMO_PROXY_URL,
});

Anthropic

import Anthropic from "@anthropic-ai/sdk";

const client = new Anthropic({
  apiKey:  process.env.LLUMMO_PROXY_KEY,
  baseURL: process.env.LLUMMO_PROXY_URL,
});

Mistral

import { Mistral } from "@mistralai/mistralai";

const client = new Mistral({
  apiKey:     process.env.LLUMMO_PROXY_KEY,
  serverURL:  process.env.LLUMMO_PROXY_URL,
});

Terminal tools (zero code changes)

For Claude Code, Cursor, Aider, Continue.dev, and other terminal-native tools, llummo init writes provider-specific env vars so any tool that reads OPENAI_API_KEY / ANTHROPIC_API_KEY routes through Llummo automatically.

You can also set them manually in your shell:

# Anthropic / Claude Code
export ANTHROPIC_API_KEY=your_proxy_key
export ANTHROPIC_BASE_URL=https://llummo.com/api/proxy/anthropic

# OpenAI-compatible tools
export OPENAI_API_KEY=your_proxy_key
export OPENAI_BASE_URL=https://llummo.com/api/proxy/openai

Add to ~/.zshrc or ~/.bashrc to persist across sessions.

Authentication

The CLI uses Personal Access Tokens (PATs) stored in ~/.config/llummo/config.json. Tokens are scoped to your account and use the same plan limits as your dashboard session. They never expire but can be revoked at any time from Settings → CLI Tokens.

Links