What problem does it solve? Teams often optimize code based on guesses, adding complexity without improving what users actually experience. This Skill enforces a measure-first workflow: profile to find the real bottleneck, fix it, re-measure to verify, and guard against regression. ## Core Features & Use Cases - Structured Optimization Workflow: A five-step loop (Measure, Identify, Fix, Verify, Guard) with Core Web Vitals targets for LCP, INP, and CLS. - Anti-Pattern Fixes: Concrete before/after code for N+1 queries, unbounded fetching, connection pool exhaustion, unoptimized images, React re-renders, large bundles, and missing caching. - Verification Discipline: Rules for re-measuring against baselines, reverting neutral changes, and logging failed attempts so they are not retried. - Use Case: Your API endpoints are slow and you suspect database issues. Use this Skill to profile queries with EXPLAIN ANALYZE, identify a missing composite index, verify the improvement, and add a CI performance budget to prevent regression. ## Quick Start Ask the agent to profile the slow page load or API endpoint and apply the performance optimization workflow to find and fix the bottleneck.