What problem does it solve? Web applications often suffer from slow load times, janky interactions, and memory leaks, but developers frequently guess at causes instead of measuring. This Skill provides a structured measure-analyze-optimize workflow so performance fixes target real bottlenecks rather than assumptions. ## Core Features & Use Cases - Automated Lighthouse Audits: Run scripts/lighthouse_audit.py against any URL to get JSON scores for performance, accessibility, best practices, and SEO. - Core Web Vitals Guidance: Reference targets for LCP, INP, and CLS, plus tool selection for page load, bundle size, runtime, memory, and network problems. - Bottleneck Diagnosis: Symptom-to-cause tables map issues like slow initial load, jank during scroll, and growing memory to likely root causes and prioritized quick wins. - Use Case: A React app feels sluggish after a release. Run the Lighthouse audit to baseline scores, use the profiling workflow to identify a large unsplit bundle, apply code splitting, then re-audit to validate the improvement. ## Quick Start Run a Lighthouse performance audit on https://example.com and tell me which Core Web Vitals need improvement.