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

@claudecam/cli

v0.1.24

Published

CLI for Claude Agent Monitor - Mission Control for Claude Code agents

Readme

@claudecam/cli

Mission Control for Claude Code agents. Real-time observability + visual Sprint tracking.

Watch your AI agents work. Learn how they build. Ship faster.

npm version License: MIT

Quick Start

cd your-project
npx @claudecam/cli start

# In another terminal, use Claude Code normally
claude "implement the auth module"

# Open http://localhost:7890 and watch everything in real-time

Or install globally:

npm install -g @claudecam/cli

cd your-project
cam start

cam start automatically configures hooks, scaffolds doc templates, and registers the project. One command and you're ready.

What You Get

| Feature | Description | |---------|-------------| | Real-time Activity Feed | Every tool call, file edit, bash command streamed live | | Agent Map | 3D robot visualization of your agents on a "Mission Floor" | | File Watcher | Track every file created, modified, or read per agent | | Kanban Board | Auto-updating task board synced with Claude's TaskCreate/TaskUpdate | | Sprint Tracking | Import sprint files, track progress, burndown charts | | 3 Themes | Modern (default), Terminal (green-on-black), Pixel Art (retro RPG) | | Multi-Agent | Full per-agent tracking with tmux + Claude Code Teams |

How It Works

You use Claude Code normally
        |
        | hooks fire automatically
        v
+-----------------+     POST      +------------------+
|   cam-hook      | -----------> |   CAM Server     |
|   (< 10ms)      |              |   (Express +     |
|   zero deps     |              |    SQLite)       |
+-----------------+              +--------+---------+
                                          |
                            +-------------+-------------+
                            |                           |
                            v                           v
                   +----------------+         +------------------+
                   |   Dashboard    |         |   Correlation    |
                   |   (React +     |         |   Engine         |
                   |    real-time)  |         |   (auto-links    |
                   +----------------+         |    to tasks)     |
                                              +------------------+

The hook binary is ultra-fast (< 10ms) and fails silently. It never blocks Claude Code.

CLI Commands

cam start                    # Start server + dashboard (opens browser)
cam start --port 8080        # Custom server port
cam status                   # Show projects, sessions, health
cam doctor                   # Diagnose common issues

cam sprint list              # List sprints in active project
cam sprint sync              # Import all sprint files from docs/SPRINTS/
cam sprint import <file>     # Import tasks from a sprint markdown file
cam tasks                    # List tasks in active sprint

cam project list             # List all projects
cam project show             # Show active project with stats
cam sessions                 # List previous sessions

Sprint Tracking (optional)

# Create a sprint file from the template
cp docs/SPRINTS/TEMPLATE.md docs/SPRINTS/sprint-01.md
# Edit sprint-01.md with your tasks

# Import all sprint files
cam sprint sync

Tasks move automatically on the Kanban board as agents call TaskCreate and TaskUpdate.

Multi-Agent Setup

For full per-agent tracking, use Claude Code Teams with tmux:

cam start
tmux new-session -s dev
claude "implement Sprint 1 using a team of agents"

Each agent runs as a separate process with its own session. CAM tracks them all individually.

Packages

This CLI is the main entry point for the Claude Agent Monitor monorepo:

| Package | Description | |---------|-------------| | @claudecam/cli | CLI commands (this package) | | @claudecam/server | Express + SQLite + REST API + SSE | | @claudecam/hook | Ultra-light hook binary (zero external deps) | | @claudecam/dashboard | React 19 dashboard with 3 themes | | @claudecam/shared | Shared types, Zod schemas, constants |

Links

License

MIT