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

@pompeii-ai/cli

v0.12.0

Published

CLI for [Pompeii](https://pompeii.ai). Manage your account, workspaces, and agents from the terminal. Run a local bridge daemon that connects your dev environment to Pompeii so AI agents can work on your codebase when @mentioned in conversations.

Readme

@pompeii-ai/cli

CLI for Pompeii. Manage your account, workspaces, and agents from the terminal. Run a local bridge daemon that connects your dev environment to Pompeii so AI agents can work on your codebase when @mentioned in conversations.

Install

npm i -g @pompeii-ai/cli
pnpm add -g @pompeii-ai/cli
yarn global add @pompeii-ai/cli
bun add -g @pompeii-ai/cli

To update an existing install:

pompeii update

Quick Start

pompeii auth login
pompeii workspace switch
pompeii bridge sync
pompeii bridge start
  1. Login opens your browser to authenticate with your Pompeii account
  2. Workspace switch sets your default workspace (auto-selected if you only have one)
  3. Bridge sync pulls a personal bridge agent you already created in the dashboard, rotates its API key, and writes local bridge config
  4. Bridge start launches the daemon, which connects outbound to Pompeii over WebSocket

Commands

Authentication

pompeii auth login       # authenticate via browser
pompeii auth logout      # clear stored session
pompeii auth whoami      # show current user, email, and workspaces

Workspaces

pompeii workspace list      # list all workspaces (marks default with *)
pompeii workspace switch    # interactively switch default workspace

Bridge

pompeii bridge setup                  # interactive configuration
pompeii bridge sync                   # sync dashboard-created personal bridge agents for the current workspace
pompeii bridge start                  # start the bridge daemon
pompeii bridge stop                   # stop the daemon
pompeii bridge restart                # restart the daemon, or start it if stopped
pompeii bridge logs                   # tail bridge.log (default: 50 lines)
pompeii bridge logs --lines 100       # show more lines

Maintenance

pompeii update                        # update the CLI and restart any bridges that were running

Configuration

All config lives in ~/.pompeii/:

| File | Contents | | ------------- | -------------------------------------- | | auth.json | OAuth tokens, email, default workspace | | config.json | repos, backend, daemon settings | | .env | POMPEII_API_KEY | | daemon.json | runtime state (PID, start time) | | bridge.log | daemon stdout/stderr |

Environment Variables

Environment variables take precedence over config.json:

| Variable | Default | Description | | ----------------------- | ------------------------------------------------- | ------------------------------ | | POMPEII_API_KEY | (required) | Agent API key | | REPOS | (required) | Comma-separated repo paths | | BACKEND | claude-code | claude-code or codex | | MAX_TURNS | 25 | Max agent turns per request | | MAX_CONCURRENT | 3 | Max concurrent agent sessions | | ALLOWED_TOOLS | Read,Edit,Bash,Glob,Grep,Write,WebSearch,WebFetch | Comma-separated tool allowlist | | HEARTBEAT_INTERVAL_MS | 15000 | Heartbeat interval in ms | | POMPEII_API_URL | https://api.pompeii.ai | API base URL |

How It Works

  1. pompeii bridge start spawns the bridge daemon as a detached background process
  2. The daemon connects outbound to Pompeii over WebSocket
  3. When someone @mentions your agent in Pompeii, the platform dispatches the request over that WebSocket connection
  4. The bridge runs the request through Claude Code (or Codex) against your local repos
  5. Responses stream back to Pompeii over the same connection

Development

cd cli
bun install
bun run dev

For local dev without the daemon, set env vars directly:

POMPEII_API_KEY=xxx REPOS=/path/to/repo bun run dev

Publishing

Publishing is automated via CI. Push a tag matching cli-v*:

git tag cli-v0.2.0
git push origin cli-v0.2.0

The prepublishOnly script runs tsc automatically before publish.