What problem does it solve? Web frontends get slower over time through oversized bundles, render-blocking resources, layout shifts, and unmemoised React renders, and teams often optimize blindly without measuring. This Skill provides a measurement-first methodology to audit, debug, design, and tune frontend performance with concrete thresholds and fixes. ## Core Features & Use Cases - Core Web Vitals diagnosis: Decomposes LCP, INP, CLS, FCP, and TTFB into phases with targeted fixes for images, fonts, long tasks, and layout shift. - Bundle and delivery optimization: Covers code splitting, tree shaking, dependency replacement, caching headers, resource hints, and CI-enforced performance budgets. - React render profiling: Guides use of the React Profiler, memoization, list virtualization, and transitions to cut unnecessary re-renders. - Use Case: A team notices their dashboard's INP regressed to 600 ms. Use this Skill in Debug mode to trace the slow interaction to a synchronous filter on every keystroke, apply useDeferredValue, and verify the before/after numbers. ## Quick Start Ask the assistant to audit your page's Core Web Vitals and bundle size, then report tiered findings with the metric each one violates.