From aura-frog
Displays metrics dashboard summarizing token usage, sessions, workflows, phase budgets, and top agents from .claude/metrics/ data over last 7 days.
How this command is triggered — by the user, by Claude, or both
Slash command
/aura-frog:dashboardmetrics/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Command: metrics:dashboard **Category:** Metrics **Priority:** Low **Syntax:** `metrics:dashboard` --- ## Purpose Show cumulative token usage and workflow metrics from `.claude/metrics/` data. --- ## Data Source Token tracker hook saves per-session data to `.claude/metrics/sessions/`: --- ## Output Format --- ## Execution 1. Read all JSON files from `.claude/metrics/sessions/` 2. Aggregate: total tokens, tokens per phase, tokens per agent 3. Calculate averages over last 7 days 4. Compare against token budget from workflow-orchestrator 5. Display as markdown table ---
Category: Metrics
Priority: Low
Syntax: metrics:dashboard
Show cumulative token usage and workflow metrics from .claude/metrics/ data.
Token tracker hook saves per-session data to .claude/metrics/sessions/:
.claude/metrics/
├── sessions/
│ ├── 2026-03-24-abc123.json
│ └── 2026-03-25-def456.json
└── summary.json (aggregated)
## Aura Frog Metrics Dashboard
### Session Summary (Last 7 Days)
| Metric | Value |
|--------|-------|
| Total sessions | 12 |
| Total tokens | ~485,000 |
| Avg tokens/session | ~40,400 |
| Workflows completed | 8 |
| Workflows failed | 1 |
### Tokens by Phase (Avg)
| Phase | Avg Tokens | Budget | Status |
|-------|-----------|--------|--------|
| 1 - Plan | 2,100 | 2,000 | ⚠️ Over |
| 2 - Test RED | 1,200 | 1,500 | ✅ |
| 3 - Build GREEN | 3,800 | 4,000 | ✅ |
| 4 - Review | 900 | 1,500 | ✅ |
| 5 - Finalize | 400 | 800 | ✅ |
### Top Agents by Usage
| Agent | Sessions | Avg Tokens |
|-------|----------|-----------|
| architect | 6 | 42,000 |
| frontend | 4 | 38,000 |
| tester | 3 | 25,000 |
.claude/metrics/sessions/npx claudepluginhub nguyenthienthanh/aura-frog --plugin aura-frog/bm-statsDisplays basemind activity dashboard with tool calls, per-tool histogram, and estimated token savings, fetched via telemetry_summary MCP. Supports time-range filtering.
/metricsDisplays agent performance metrics and session history from .claude/agent-metrics.jsonl: total sessions, recent table, average file changes, trends. Shows 'No metrics recorded yet' if absent.
/claude-pulseDisplays real-time session dashboard with cost analysis, token breakdown, tool performance, context usage, and optimization tips. Also supports configure, stats, setup subcommands.
/statsDisplays token usage and estimated cost statistics for Claude and Codex sessions. Supports optional flags for summary view, session count, and source filtering.
/performance-metricsLogs task completion metrics to metrics/ directory, recording tokens used, cost, agents, rework cycles, and hallucination events.
/dashboardLaunches real-time monitoring dashboard for autonomous agent metrics and learning analytics in background, auto-opens browser. Supports --port, --host, --status, --stop, --debug, and more.