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

ur-dashboard

v0.3.4

Published

Real-time monitoring dashboard for AI agent orchestration with Claude Code

Readme


Quick Start

npx ur-dashboard

Open http://localhost:3000. That's it.

npx ur-dashboard --port 8080              # Custom port
npx ur-dashboard --claude-home /path/to   # Custom Claude home directory

What You Get

  • Real-time visibility into Claude Code agent activity
  • API usage and cost tracking at a glance
  • Team and skill grouping for multi-agent setups
  • Zero-config startup — works on any Claude Code environment
  • Built-in dispatch API for programmatic agent execution

Dashboard Tab

| Panel | Description | |-------|-------------| | API Usage | Cost tracking across OpenAI, Gemini, Tripo3D | | Teams / Agents | Monitor teams or auto-detected agent groups | | Skill Usage | Skill invocations with frequency and recency | | Recent Commits | Git commits from timeline data | | Components | Scanned ~/.claude/ directory visualization | | Recent Activity | Latest modified files across your environment |

Settings Tab

| Section | Description | |---------|-------------| | Team Configuration | Edit agent-to-team groupings, create teams, re-scan | | Discovered Components | Scanned directories with file counts | | Config Files | Configuration files with last-modified dates | | Runtime | Node.js version, platform, dashboard version |

All sections are collapsible.


How It Works

  1. Scans ~/.claude/ to auto-detect your environment
  2. Streams data via SSE every 5 seconds — no polling needed
  3. Adapts panels based on what's available
  4. Saves team groupings to ~/.claude/agents/teams.json

Works on macOS and Windows. Supports environments with or without a custom orchestrator.


Competitive Landscape

| Tool | Zero Config | Claude Code Native | Open Source | npx Install | |------|:-----------:|:------------------:|:-----------:|:-------------:| | Langfuse | ❌ | ❌ | ✅ | ❌ | | Helicone | ❌ | ❌ | ❌ | ❌ | | LangSmith | ❌ | ❌ | ❌ | ❌ | | ur-dashboard | | | | |


Configuration

| Variable | Default | Description | |----------|---------|-------------| | CLAUDE_HOME | ~/.claude | Claude data directory | | JARVIS_PRICING_PATH | built-in | Custom pricing file path |

dashboard.config.json

{
  "refresh_interval": 5000,
  "data_path": "~/.claude/orchestrator/state",
  "teams_path": "~/.claude/orchestrator/agents/teams.json",
  "port": 3000
}

pricing.json

{
  "models": {
    "gpt-5.4": [2.5, 15.0],
    "claude-sonnet-4-6": [3.0, 15.0]
  },
  "tripo_price_per_task": 0.3,
  "default_price": [1.0, 3.0]
}

Dispatch API

# Run an agent
curl -X POST http://localhost:3000/api/dispatch \
  -H "Content-Type: application/json" \
  -d '{"agent": "my-agent", "prompt": "Do the thing", "permissionMode": "plan"}'

# Stream output
curl -N http://localhost:3000/api/dispatch/{jobId}/stream

# Cancel
curl -X DELETE http://localhost:3000/api/dispatch/{jobId}

Requires claude CLI in PATH. Max 3 concurrent jobs. Timeout: 300s default.


Tech Stack

  • Next.js 16 — App Router, Standalone
  • React 19 — Server & Client components
  • Tailwind CSS 4 — Glassmorphism UI
  • Recharts — Cost visualization
  • SSE — Real-time streaming

Development

git clone https://github.com/whynowlab/ur-dashboard.git
cd ur-dashboard
npm install
npm run dev

License

MIT — free to use, modify, and distribute.