/insights
Surface the top 3 data-backed insights about your Claude Code usage right now
$ 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
/insights
Context preview
What this command does when you run it.
Surface the top 3 data-backed insights about your Claude Code usage right now
Command definition
insights.mddescription: Surface the top 3 data-backed insights about your Claude Code usage right now
Produce the **top 3 insights** about Claude Code usage right now, each backed by real numbers from the Agent Monitor dashboard.
1. Fetch high-level state:
- `curl -s http://localhost:4820/api/stats` → total_sessions, active_sessions, active_agents, total_events, events_today, agents_by_status, sessions_by_status.
- `curl -s http://localhost:4820/api/analytics` → tokens (total_input/total_output/total_cache_read/total_cache_write), tool_usage (top 20), daily_events (365d), daily_sessions (365d), event_types, avg_events_per_session, total_subagents.
2. Derive signal, citing exact field values:
- Cache hit rate = `total_cache_read / (total_cache_read + total_input)`.
- Activity trend: compare the last 7 days of `daily_sessions`/`daily_events` against the prior 7.
- Concentration: the single most-used tool and most-frequent `event_type`, with its share of the total.
- Error pressure: `APIError` share of events; subagent fan-out via `total_subagents` and `avg_events_per_session`.
3. Pick the **3 most decision-relevant** findings (biggest cost lever, sharpest trend, or clearest anomaly). For each print:
- A one-line headline with the supporting number.
- Why it matters in one sentence.
- One concrete action.
Output rules: rank by impact (most important first); currency in USD to 4 decimals; rates as percentages to 2 decimals; use ▲/▼ for trend direction; cite only fields the API returned — never fabricate. If `curl` cannot reach `http://localhost:4820`, tell the user to start the dashboard with `npm start` from the repo root.
Read more
description: Surface the top 3 data-backed insights about your Claude Code usage right now
Produce the **top 3 insights** about Claude Code usage right now, each backed by real numbers from the Agent Monitor dashboard.
1. Fetch high-level state:
- `curl -s http://localhost:4820/api/stats` → total_sessions, active_sessions, active_agents, total_events, events_today, agents_by_status, sessions_by_status.
- `curl -s http://localhost:4820/api/analytics` → tokens (total_input/total_output/total_cache_read/total_cache_write), tool_usage (top 20), daily_events (365d), daily_sessions (365d), event_types, avg_events_per_session, total_subagents.
2. Derive signal, citing exact field values:
- Cache hit rate = `total_cache_read / (total_cache_read + total_input)`.
- Activity trend: compare the last 7 days of `daily_sessions`/`daily_events` against the prior 7.
- Concentration: the single most-used tool and most-frequent `event_type`, with its share of the total.
- Error pressure: `APIError` share of events; subagent fan-out via `total_subagents` and `avg_events_per_session`.
3. Pick the **3 most decision-relevant** findings (biggest cost lever, sharpest trend, or clearest anomaly). For each print:
- A one-line headline with the supporting number.
- Why it matters in one sentence.
- One concrete action.
Output rules: rank by impact (most important first); currency in USD to 4 decimals; rates as percentages to 2 decimals; use ▲/▼ for trend direction; cite only fields the API returned — never fabricate. If `curl` cannot reach `http://localhost:4820`, tell the user to start the dashboard with `npm start` from the repo root.
🚀 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

