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

@solomei-ai/auth

v0.1.4

Published

Public bootstrap for Callimacus: `callimacus login` configures the private SDK registry (.npmrc) + API access. The full tool is the private @solomei-ai/callimacus-cli.

Readme

@solomei-ai/auth

The public bootstrap for Callimacus. One callimacus login configures everything a developer needs to build on Callimacus: the private SDK download (~/.npmrc) and an API key — with zero prior setup.

This package is intentionally small and public so a new client can run it before they have any credentials. The full operator/tenant-config CLI is the private @solomei-ai/callimacus-cli, installable only after login configures the registry.

npx @solomei-ai/auth login
# or: npm i -g @solomei-ai/auth && callimacus login

First run

npx @solomei-ai/auth login          # device-code → writes ~/.npmrc + the API profile
npm i -g @solomei-ai/callimacus-cli # now installs (private, via the configured registry)
callimacus configure …              # the full tool

login uses a device-code flow: it prints a URL + short code, opens your browser (falling back to "paste this URL" on headless boxes), you approve in the dashboard, and it writes the credentials. The registry token goes to user-level ~/.npmrc; the API token is stored as a profile in ~/.callimacus/config.json — the same file @solomei-ai/callimacus-cli reads, so this one login configures that CLI too.

Commands

| Command | What it does | |---|---| | login | Authorize this machine (device-code; or no-op materialize from CALLIMACUS_NPM_TOKEN in CI). | | init | Scaffold the current project: .npmrc scope map, .env API key, .gitignore. | | whoami | Show the active profile + project. | | use <project> | Switch the active project profile. | | logout | Clear stored profiles and strip the registry lines from ~/.npmrc. | | setup-ci [--print] | Configure the registry from CALLIMACUS_NPM_TOKEN (writes ~/.npmrc, or prints with --print). |

CI

A developer with several projects has one registry token (machine-level) and a per-project API key. In CI, skip the browser:

env:
  CALLIMACUS_NPM_TOKEN: ${{ secrets.CALLIMACUS_NPM_TOKEN }}   # the registry token
steps:
  - run: npx @solomei-ai/auth setup-ci   # writes ~/.npmrc headlessly
  - run: npm ci

Configuration

| Env var | Default | Purpose | |---|---|---| | CALLIMACUS_API_URL | https://api.callimacus.ai | API host (device-flow endpoints). Override for dev. | | CALLIMACUS_REGISTRY_URL | https://npm.callimacus.ai | Private registry the .npmrc points at. | | CALLIMACUS_NPM_TOKEN | — | Registry token for non-interactive login/setup-ci. The former name CALLIMACUS_TOKEN is still accepted (with a deprecation warning). |

Notes

  • Config interop: writes ~/.callimacus/config.json in the exact schema @solomei-ai/callimacus-cli (its lib/config.ts) reads, so the two share one profile.
  • SDK env var names: init writes CALLIMACUS_CLIENT_ID / CALLIMACUS_CLIENT_SECRET to .env — the current names the @solomei-ai/callimacus-sdk env wrapper reads (CALLIMACUS_PUBLIC_KEY/PRIVATE_KEY still work but the SDK logs a deprecation warning).
  • No native deps: pure Node + commander, so npm i -g / npx work on Windows, Linux, macOS, and WSL. 0600/0700 file modes are enforced on Unix; on Windows they no-op and the files rely on the user-scoped profile dir (same posture as aws/gcloud/gh).