What problem does it solve? Code that works correctly can still waste resources: repeated computation, N+1 queries, serial async calls, hot-path allocations, TOCTOU races, memory leaks, and silently swallowed errors. This Skill performs a focused efficiency audit of a diff or codebase and produces graded findings with concrete fixes. ## Core Features & Use Cases - 8-Category Efficiency Checklist: Systematically checks redundant computation, N+1 access patterns, missed concurrency, hot-path bloat, TOCTOU races, memory issues, excessive reads, and silent failures. - Graded Findings with Fixes: Every finding includes file and line references, a concrete fix recommendation, and confidence (HIGH/MEDIUM/LOW) plus risk (🔴/🟡/🟢) grading, ending with a prioritized summary table. - Cross-File Tracing: Reads changed files in full and traces interop layers, domain models, and service registrations to avoid false negatives from surface-level diff reading. - Use Case: After landing a Blazor WASM feature touching 5 files, ask for an efficiency review to catch a CancellationTokenSource leak on hover events and per-render .ToList() allocations before merging. ## Quick Start Ask the agent to review the current staged diff for efficiency and performance issues, including N+1 patterns, memory leaks, and missed concurrency opportunities.