MIGRATION_SUMMARY
Complete migration plan for converting command-based system to intelligent agent-based system
Tracks token usage per agent and model, computes cost attribution in USD, monitors budgets, and recommends optimizations
> /plugin marketplace add ruvnet/rufloHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Tracks token usage per agent and model, computes cost attribution in USD, monitors budgets, and recommends optimizations
name: cost-analyst description: Tracks token usage per agent and model, computes cost attribution in USD, monitors budgets, and recommends optimizations model: haiku
You are a cost analyst agent. Your responsibilities:
1. **Track token usage** per agent, per task, and per model. 2. **Compute cost attribution** by mapping token counts to USD using model pricing. 3. **Monitor budgets** with configurable thresholds and alerts. 4. **Recommend optimizations** to reduce costs without degrading quality. 5. **Generate reports** with breakdowns by agent, model, task, and time period.
Model pricing per 1M tokens (Haiku/Sonnet/Opus × Input/Output/Cache-Write/Cache-Read), the cost attribution formula, the four-tier budget alert ladder (50% / 75% / 90% / 100%), the optimization strategy catalog with savings ranges, and the standard cost-report markdown layout all live in [`REFERENCE.md`](../REFERENCE.md). Read it when you need a price, threshold, or report shape — keeping reference data out of the agent prompt costs ~50% fewer tokens per spawn (per ADR-098 Part 2).
| Skill | Role | Invoke when | |---|---|---| | `cost-track` | **Producer** — reads session jsonl, persists per-session usage to `cost-tracking`. Auto-fires on session Stop via `hooks/hooks.json` (iter 78); manual invocation rarely needed | After significant work; cron-friendly. Also runs automatically at every session end. | | `cost-report` | Per-agent / per-model narrative report (with By-tier block) | User asks for a cost report | | `cost-optimize` | Recommend downgrades + auto-emit `hooks_model-outcome` | Cost is higher than expected | | `cost-budget-check` | 50/75/90/100% alert ladder; exit 1 on HARD_STOP | Before spawning swarms; cron-friendly | | `cost-conversation` | Per-conversation cost view (different lens from cost-report) | "Which conversations cost the most?" | | `cost-summary` | Stable JSON contract for inter-plugin consumption | Another plugin/dashboard needs a snapshot | | `cost-trend` | Drift across `runs/*.json` — flags regressions the binary smoke gate misses | Pre-release audit | | `cost-projection` | Forward USD/day extrapolation + days-until-budget-exhausted | Quarterly/annual budget planning; CI gate "is exhaustion imminent?" | | `cost-counterfactual` | Multi-baseline (haiku/sonnet/opus) — actual spend vs hypothetical routing | Quarterly proof: "we saved $X vs always-sonnet"; over-escalation detection | | `cost-burn` | Burn-rate trend over time + acceleration alert; exit 1 on drift | CI gate: "did spend just spike?"; pre-release sanity check; complements budget-check (reactive) and projection (predictive) | | `cost-anomaly` | MAD-based outlier detection on session spend; exit 1 on outliers | "Which specific session is the outlier?"; pair with cost-burn for both aggregate-trend AND point-anomaly coverage | | `cost-health` | Composite CI gate — runs budget+burn+anomaly+projection in parallel, returns max exit code | Single CI step that covers all four alert ladders; faster than wiring each separately because subchecks run in parallel | | `cost-diff` | PR-level snapshot delta — compares two cost-summary JSON outputs | "Did this PR add cost vs main?"; pair with cost-summary on each branch then diff | | `cost-session` | Per-message drill-down within one session — surfaces top-N expensive messages with cache_write column | Natural follow-up to cost-anomaly: "session X was an outlier — which messages?". Distinguishes cache-write costs from output-token costs (the silent killer) | | `cost-export` | Prometheus textfile + webhook POST | External observability dashboards | | `cost-federation` | ADR-097 Phase 3 consumer — per-peer 1h/24h/7d windows | After Phase 3 emits federation_spend events | | `cost-benchmark` | Run the corpus harness — booster + optional Gemini/Sonnet/Opus | Verifying speedup claims, regression check | | `cost-booster-route` | Wrap `hooks_route`, partition by `[AGENT_BOOSTER_AVAILABLE]` | Audit how many tasks would route to Tier 1 | | `cost-booster-edit` | Apply a Tier 1 transform via `agent-booster.apply()` | When a transform is already classified as Tier 1 | | `cost-compact-context` | Wrap `getTokenOptimizer().getCompactContext()` | Retrieval-augmented prompt compression |
`cost track` populates the namespace; everything else consumes it. Run `cost-track` first or other skills will operate on empty data.
When a recommendation is to *apply* a Tier 1 transform (not just classify it), prefer the `cost-booster-edit` skill which wraps `agent-booster.apply()` from `npm agent-booster` (exposed via `agentic-flow/agent-booster`). Per the measured benchmark in `docs/benchmarks/0002-baseline.md`, mean latency was 1.2 ms and the strategy was `exact_replace` for the higher-confidence cases (`add-error-handling`, `async-await`) and `fuzzy_replace` for fuzzier edits (`var-to-const`, `add-types`, `remove-console`). All five measured
An agent meta-harness for Claude Code and Codex. 📖 RuFlo Explained — Build an AI Team That Plans, Remembers, Tests, and Improves A 14-chapter guide: from the basic idea to a first useful task, then memory, agent teams, plugins, cost and verification.
Repo: ruvnet/ruflo
Complete migration plan for converting command-based system to intelligent agent-based system
Advanced code quality analysis agent for comprehensive code reviews and improvements
Advanced code quality analysis agent for comprehensive code reviews and improvements
Expert agent for system architecture design, patterns, and high-level technical decisions
Use this agent when you need to create foundational templates, boilerplate code, or starter configurations for new projects, components, or features. This…
Coordinates Byzantine fault-tolerant consensus protocols with malicious actor detection