What problem does it solve? Agent systems suffer from two distinct performance problems: slow Rust runtime code and runaway LLM token costs. Optimizing based on intuition wastes effort, so this Skill enforces a measure-first workflow that uses profiling data to decide what to fix. ## Core Features & Use Cases - Runtime Profiling: Compile with debug symbols and profile the Rust binary using tools like perf to find slow execution paths. - Token Performance Tracking: Monitor prompt tokens, completion tokens, tool calls per task, and total cost per session to detect waste. - Waste Pattern Detection: Identify context stuffing, skill catalog bloat, history accumulation, and redundant tool calls that inflate token usage. - Use Case: When a task consumes far more tokens than expected or auto-compact triggers frequently, use this Skill to trace whether the cause is bloated context injection or repeated file reads across turns. ## Quick Start Analyze why my last agent session consumed so many tokens and identify which context sources or tool calls caused the bloat.