Skip to content
Development
Command

/compare

Compare two sessions side-by-side with cost and workflow deltas

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/compare

Context preview

What this command does when you run it.

Compare two sessions side-by-side with cost and workflow deltas

Command definition

compare.md
description: Compare two sessions side-by-side with cost and workflow deltas
argument-hint: "[sessionA] [sessionB]"

Compare the two sessions in **$ARGUMENTS** (first id = Session A, second id = Session B) side-by-side using the Agent Monitor dashboard. If fewer than two ids are given, ask for both.

1. Fetch cost for each, in parallel:

  • `curl -s http://localhost:4820/api/pricing/cost/<sessionA>`
  • `curl -s http://localhost:4820/api/pricing/cost/<sessionB>`

Each returns `{ total_cost, breakdown:[{ model, input_tokens, output_tokens, cache_read_tokens, cache_write_tokens, cost, matched_rule }] }`.

2. Fetch workflow intelligence for each:

  • `curl -s http://localhost:4820/api/workflows/<sessionA>`
  • `curl -s http://localhost:4820/api/workflows/<sessionB>`

Use `stats` (tool/event/agent counts), `complexity` (score), `effectiveness` (subagent success), `compaction` (impact), and `errorPropagation`.

3. Print a side-by-side comparison table with a delta column (B − A):

  • Total cost (USD, 4 decimals) and Δ% .
  • Tokens: input, output, cache_read, cache_write (sum the breakdown per session).
  • Cache hit rate = `cache_read / (cache_read + input)`.
  • Tool count, event count, agent count (from `stats`).
  • Complexity score (from `complexity`).
  • Subagent success rate (from `effectiveness`) and compaction count (from `compaction`).

Output rules: one row per metric with columns Session A | Session B | Δ; use ▲ when B is higher and ▼ when lower; currency in USD to 4 decimals; rates as percentages to 2 decimals. End with a one-line verdict on which session was cheaper/leaner and the main driver. Cite only fields the API returned — never fabricate. If a session id is unknown or the dashboard is unreachable at `http://localhost:4820`, say so and tell the user to start it with `npm start` from the repo root.

Read more
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