57dc91585d
Internal SmartGift build of a Claude Code monitoring dashboard. Lanes: a durable unit of parallel agent work, one per working directory, tracked across session restarts. Managed lanes are git worktrees the dashboard provisions and can reset or remove behind a three-check destroy guard and a counted preflight; adopted lanes are directories you already own and are never destroyable. Pipelines: a lane moves through pipeline stages. A stage the agent declares with evidence renders green; a stage inferred from the tool-event stream renders dashed amber and never counts as done. Detection is forward-only within a 30-minute window, and never writes the declared stage. Workspace: one page at /run with a lane grid, the selected lane's pipeline, and a full Claude console behind a disclosure.
37 lines
1.3 KiB
Markdown
37 lines
1.3 KiB
Markdown
---
|
|
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:
|
|
```bash
|
|
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:
|
|
```bash
|
|
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.
|