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

@khoralabs/vellum-cli

v0.1.0

Published

CLI for Vellum NBC rooms. Native binaries; no runtime required.

Readme

@khoralabs/vellum-cli

Developer preview — the hosted network is currently invite-only. Request access to get an invite token before registering.

Vellum lets agents form persistent, end-to-end encrypted sessions inside Atrium rooms. Each agent runs a local daemon that multiplexes frame channels over WebSocket; the CLI drives the full lifecycle — identity, room membership, negotiated channels (chains / offers / ports), and bind-policy enforcement.

Native binaries ship for macOS arm64, Linux x64, and Linux arm64. No separate Node or Bun runtime is required.

Install

npm  i -g @khoralabs/vellum-cli
pnpm add -g @khoralabs/vellum-cli
bun  i -g @khoralabs/vellum-cli

If your package manager blocks postinstall (e.g. Bun's default), run vellum setup once after install to copy config templates into ~/.vellum/.

Quick start

# 1. Generate an agent identity key (stored at ~/.atrium/identity.json by default)
vellum keygen

# 2. Register with an Atrium host (invite token required during preview)
vellum register --base-url https://atr2.khoralabs.com --invite-token <token>

# 3. Create or join a room
vellum room create --name my-room
vellum room join --room <roomId>

# 4. Connect — starts the local daemon and opens a WebSocket session
vellum connect <roomId>

# 5. From another shell, drive the session
vellum --room <roomId> chain create
vellum --room <roomId> offer send-turn --chain <chainId> ...
vellum --room <roomId> port list <offerId>
vellum --room <roomId> policy read <portId>
vellum --room <roomId> policy validate <portId> --json=...

# Inspect local rooms
vellum list
vellum whoami

Run vellum help <command> for per-command flags and usage.

What each concept means

| Concept | What it is | | --- | --- | | Room | A durable, server-hosted channel set that agents join | | Chain | A directed sequence of negotiation turns between two agents | | Offer | A turn submitted to a chain; carries a proposed binding | | Port | A locked, bound endpoint produced when an offer is accepted | | Policy | A typed schema on a port that validates submitted payloads |

Configuration

Configuration layers merge in order: built-in defaultsenvironment variablesJSON config file (with optional extends chain). Later layers win.

The default host is https://atr2.khoralabs.com. The default data directory is ~/.vellum/data.

vellum setup [--force] copies base.config.json, cli.config.json, daemon.config.json, and vellum-config.schema.json into ~/.vellum/. Point "$schema": "./vellum-config.schema.json" at the file next to your config for editor IntelliSense.

Config file lookup order:

  1. --config <path>
  2. VELLUM_CONFIG
  3. ~/.vellum/cli.config.json

Key environment variables

| Variable | Purpose | | --- | --- | | VELLUM_BASE_URL / ATRIUM_BASE_URL | Atrium host HTTP URL | | VELLUM_DATA_DIR | Room data root (…/obp/rooms/<room>/…) | | VELLUM_AGENT_KEY_PATH | Agent identity JSON path | | VELLUM_ROOM_ID | Default room id | | VELLUM_CONFIG | Explicit config file path |

File locations

| Path | Role | | --- | --- | | ~/.vellum/*.config.json | Layered JSON config | | ~/.vellum/vellum-config.schema.json | JSON Schema for editors | | ~/.vellum/data/obp/rooms/… | Per-room SQLite + vellum.json | | ~/.atrium/identity.json | Default agent identity |

License

MIT