Agent skill · Data & Analytics

live-watch

Polls the Agent Monitor /api/stats endpoint several times over a short window and reports the live deltas in active_sessions, active_agents, events_today, and ws_connections so you can see activity moving in real time. Use when watching the dashboard for live changes rather than a one-time snapshot.

hoangsonww869★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add hoangsonww/Claude-Code-Agent-Monitor --skill live-watch --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: plugins/ccam-dashboard/skills/live-watch/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 869
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Live Watch Watch the dashboard's live counters change over a short window by polling `/api/stats` a few times and reporting the deltas. ## Input The user provides: **$ARGUMENTS** Interpreted as the watch shape: number of polls and/or interval (e.g. `5x3s` = 5 samples 3 seconds apart). Defaults when empty: **5 samples, ~3 seconds apart** (a ~15-second window). A bare number means that many samples at the default interval; a bare duration means the default sample count at that interval. ## Data Sources | Endpoint | Returns | |----------|---------| | `GET /api/stats` (polled) | `{ total_sessions, active_sessions, active_agents, total_agents, total_events, events_today, ws_connections, agents_by_status, sessions_by_status }` | ## Method Poll `GET /api/stats` once per interval for the configured number of samples, recording the timestamp and the four watched counters each time. Pace the polls with a short wait between requests; keep the total window short (seconds, not minutes) so it stays interactive. If the very first poll fails to connect, the dashboard is down — stop and tell the user to start it with `npm start` (or `npm run dev`) from the repo root, then retry. ## Report Section

What's inside
Steps it walks through
  1. Input
  2. Data Sources
  3. Method
  4. Report Sections
  5. 1. Watch Window
  6. 2. Sample Timeline
  7. 3. Deltas
  8. 4. Verdict
  9. Output
More from Claude-Code-Agent-Monitor
All skills →
About this skill
What does the live-watch skill do?

Polls the Agent Monitor /api/stats endpoint several times over a short window and reports the live deltas in active_sessions, active_agents, events_today, and ws_connections so you can see activity moving in real time. Use when watching the dashboard for live changes rather than a one-time snapshot.

How do I install it?

Run `npx skills add hoangsonww/Claude-Code-Agent-Monitor --skill live-watch --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From hoangsonww/Claude-Code-Agent-Monitor, a repository with 869 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going