/doctor
Quick connectivity + health probe of the Agent Monitor dashboard.
$ npx -y skills add hoangsonww/Claude-Code-Agent-Monitor --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/doctor
Context preview
What this command does when you run it.
Quick connectivity + health probe of the Agent Monitor dashboard.
Command definition
doctor.mddescription: Quick connectivity + health probe of the Agent Monitor dashboard.
Run a fast health probe against the Agent Monitor dashboard at `http://localhost:4820`. Do two checks and print OK / FAIL for each.
1. **API + stats** — fetch core stats:
curl -s -o /dev/null -w '%{http_code}' http://localhost:4820/api/stats
curl -s http://localhost:4820/api/statsPASS if HTTP 200 and the body is valid JSON. From the body, surface `total_sessions`, `active_sessions`, `total_events`, and `events_today`.
2. **Self-update status** — confirm the update subsystem responds:
curl -s -o /dev/null -w '%{http_code}' http://localhost:4820/api/updates/status
curl -s http://localhost:4820/api/updates/statusPASS if HTTP 200 and valid JSON. Surface whether an update is available and the current vs latest version if present.
Print a compact report, one line per check:
Agent Monitor Doctor API /api/stats ............ OK (sessions=12 active=1 events=3480 today=57) /api/updates/status ....... OK (up to date — v1.x.x) Overall: OK (2/2)
Use ✅ OK / ❌ FAIL markers. If any curl fails to connect (non-200 or no response), mark that check FAIL and end with: "Dashboard unreachable — start it with `npm start` from the repo root." Keep it to the report only; no extra prose.
🚀 A real-time monitoring dashboard for Claude Code & Codex, built with SQLite3, Node.js, Express, React, Vite, TailwindCSS, & WebSockets. It tracks sessions, agent activity, tool usage, and subagent orchestration, providing live analytics, a Kanban status board, status notifications, a cute buddy, & an interactive web UI/MacOS/Windows native app.
Repo: hoangsonww/Claude-Code-Agent-Monitor
Other commands on claude-code-agent-monitor.
- /burn-rate
Compute the recent 7-day spend trend (burn rate) from daily sessions and per-session cost.
Open command - /cost-today
Quick total cost plus a per-model one-liner from the dashboard pricing engine.
Open command - /top-spenders
List the top N most expensive Claude Code sessions by inline cost.
Open command - /audit-config
Quick Claude Code config audit — counts per surface (user vs project) and totals.
Open command - /inventory
One-screen inventory of skills, agents, commands, MCP servers, and hooks counts.
Open command - /memory
List the file-based memory store grouped by project (auto-memory) plus the CLAUDE.md files.
Open command

