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

team-monitor-cli

v1.0.4

Published

Agent Teams Monitor - Real-time dashboard for monitoring Claude Code agent teams

Downloads

98

Readme

Team Monitor CLI

A real-time dashboard for monitoring Claude Code Agent Teams communication.

Features

  • 🔴 Real-time Monitoring: WebSocket-powered live updates
  • 📁 File System Watch: Auto-detects changes in ~/.claude/teams/
  • 🎨 Three-Panel Layout: Teams → Members → Messages
  • 📊 Protocol Messages: JSON-formatted with syntax highlighting
  • 🌙 Dark Theme: Zinc color palette, easy on the eyes
  • 🚀 One Command: Simple CLI interface

Installation

Global Installation (Recommended)

npm install -g team-monitor-cli

This will:

  • Install the team-monitor and tm commands globally
  • Make dashboard available at http://localhost:5173

For Claude Code skill, copy the skill file manually:

cp -r node_modules/team-monitor-cli/scripts/skill ~/.claude/skills/team-monitor

Local Installation

npm install team-monitor-cli
npx team-monitor

Quick Start

# Start the monitor
team-monitor

# Or use the short alias
tm

# In Claude Code
/team-monitor

Then open http://localhost:5173

Commands

team-monitor start      # Start monitor (default)
team-monitor stop       # Stop monitor
team-monitor restart    # Restart monitor
team-monitor status     # Check status
team-monitor logs       # Show logs
team-monitor doctor     # Check system requirements

Options

-p, --port <port>       Backend port (default: 3001)
-c, --client <port>     Frontend port (default: 5173)
-d, --detach           Run in background
-v, --verbose          Verbose output
-h, --help             Show help

Examples

# Start with custom ports
team-monitor -p 8080 -c 3000

# Check status
team-monitor status

# View logs
team-monitor logs

# Follow logs (like tail -f)
team-monitor logs -f

# Stop services
team-monitor stop

System Requirements

  • Node.js: >= 18.0.0
  • npm: >= 9.0.0
  • OS: macOS, Linux, Windows
  • Ports: 3001 (backend), 5173 (frontend) - configurable

Run team-monitor doctor to check your system.

API

When running, the following endpoints are available:

  • GET /api/teams - List all teams
  • GET /api/teams/:name/members - Get team members
  • GET /api/teams/:name/messages/:member - Get member messages
  • WS / - WebSocket for real-time updates

Claude Code Integration

After installation, you can use in Claude Code:

/team-monitor           # Start monitor
/team-monitor stop      # Stop monitor
/team-monitor status    # Check status

Troubleshooting

Port already in use

# Check what's using the port
lsof -ti:3001

# Use different ports
team-monitor -p 8080 -c 3000

Permission denied

# Fix npm permissions
sudo chown -R $(whoami) ~/.npm

# Or use npx
npx team-monitor

Logs location

# View logs
team-monitor logs

# Or manually
cat /tmp/team-monitor/backend.log
cat /tmp/team-monitor/frontend.log

Development

git clone https://github.com/LouisHors/agents-teams-dashboard-claude.git
cd agent-teams-dashboard/packages/team-monitor-cli
npm install
npm link  # For local testing

License

MIT

Contributing

Pull requests welcome!

Support

  • GitHub Issues: https://github.com/LouisHors/agents-teams-dashboard-claude/issues
  • Discussions: https://github.com/LouisHors/agents-teams-dashboard-claude/discussions