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

claude-task-monitor

v2.4.5

Published

Real-time task monitor for Claude Code task lists

Downloads

55

Readme

Claude Task Monitor

Real-time task monitor dashboard for Claude Code task lists. Watches ~/.claude/tasks/ and serves an auto-updating browser dashboard.

Installation

npm install -g claude-task-monitor

Or run directly with npx:

npx claude-task-monitor

Usage

# Start the monitor (serves dashboard on http://localhost:8080/)
claude-task-monitor

# Install the Claude Code skill for /task-monitor command
claude-task-monitor --install-skill

# Show help
claude-task-monitor --help

Open http://localhost:8080/ in your browser to see the dashboard.

Launch Command Integration

The monitor copies launch commands that target the standardized app scripts:

npm run agents:run -- --task-list <task-list-id> --agent cc-<tmux-session-name>

For specific-task launch buttons, it appends:

--mode task-<id>

Claude Code copied launches use cc-<current-tmux-session> and Codex copied launches use cx-<current-tmux-session> so task ownership shows which model handled the work.

This aligns monitor output with the agent-platform command surface.

Features

  • Built-in HTTP server - Dashboard served on port 8080, no separate server needed
  • Real-time updates - Polls for changes every 2 seconds (configurable)
  • Auto-archive - Archives completed task lists to ~/.claude/tasks/.archive/
  • One-click launch - Copy agent launch commands to clipboard
  • Agent naming - Auto-prefixes tmux session names as cc-... for Claude Code and cx-... for Codex
  • Task dependencies - Shows blocked tasks and their blockers
  • Settings panel - Configure project directory, poll interval, and agent names from the dashboard
  • Claude Code skill - Built-in /task-monitor skill for diagnosing and repairing the monitor

Claude Code Skill

Install the bundled skill to get a /task-monitor command inside Claude Code:

claude-task-monitor --install-skill

This copies the skill file to ~/.claude/skills/task-monitor/SKILL.md. The skill provides automated diagnosis, repair, and status reporting for the monitor.

File Locations

| File | Path | |------|------| | Config | ~/.claude/claude-task-monitor/monitor-config.json | | Data (JSON) | ~/.claude/claude-task-monitor/task-monitor-data.json | | Dashboard (HTML) | ~/.claude/claude-task-monitor/task-monitor.html | | Task lists | ~/.claude/tasks/ | | Archives | ~/.claude/tasks/.archive/ | | Skill | ~/.claude/skills/task-monitor/SKILL.md |

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | CLAUDE_TASK_MONITOR_DATA_DIR | Data directory for config, JSON, and HTML output | ~/.claude/claude-task-monitor/ | | CLAUDE_TASK_MONITOR_OUTPUT | Override output directory for HTML/JSON files | Same as data dir | | CLAUDE_TASK_MONITOR_PORT | HTTP server port | 8080 |

How It Works

  1. Watches ~/.claude/tasks/ for task list directories using chokidar
  2. Reads task JSON files and aggregates data
  3. Generates a self-contained HTML dashboard and JSON data file
  4. Serves the dashboard via built-in HTTP server
  5. Archives task lists when Claude Code deletes them (all tasks completed)

Upgrading from v1.x

v2.0.0 moves the config and output files from the project directory to ~/.claude/claude-task-monitor/. On first run, the monitor will automatically migrate your existing monitor-config.json if found in the old location.

If you previously used a Python HTTP server to serve the dashboard, you can remove that — the built-in HTTP server handles everything.

After upgrading, run claude-task-monitor --install-skill to update the Claude Code skill with the new paths.

License

MIT