Skip to content
Development
Command

/doctor

Quick connectivity + health probe of the Agent Monitor dashboard.

From plugin
claude-code-agent-monitor
89133 skills21 agents33 commands
Install
$ npx -y skills add hoangsonww/Claude-Code-Agent-Monitor --agent claude-code

How 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.md
description: 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/stats

PASS 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/status

PASS 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.

Ships withclaude-code-agent-monitor

🚀 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.

Get the whole plugin, auto-invoked
Stats
891
Stars
0
Views
201
Forks
Active
Maintenance
TypeScript
Language
MIT
License
1h ago
Last commit
5mo ago
Created

Repo: hoangsonww/Claude-Code-Agent-Monitor