What problem does it solve? Web performance audits often produce long, unprioritized tip lists. This Skill treats page load and runtime like a CPU flame graph—width equals cost—so you fix the fattest hot paths first instead of chasing micro-optimizations. ## Core Features & Use Cases - Flame-style hot path ranking: Captures Chrome Performance traces and network requests, then ranks the top 3-5 hot paths (main-thread JS, parse/compile, LCP phases, transfer size) with measured costs. - Prioritized fix plan with re-measurement: Maps each hot path to concrete code fixes (code-splitting, layout thrash, LCP image, third-party tags) and re-runs the same trace to report before/after deltas. - Use Case: Paste a URL and ask for a flame graph audit; the Skill captures a cold-load trace via Chrome DevTools MCP, identifies that one component render consumes 40% of main-thread time, and delivers a P0/P1 fix plan with estimated millisecond savings. ## Quick Start Ask the agent to run a flame audit on your page URL to find the dominant performance hot path and get a prioritized fix plan.