What problem does it solve?
Performance optimization often turns into guesswork, slowing teams down with changes that are hard to validate and easy to regress; this Skill replaces speculation with measurement-driven improvements that target the real bottleneck.
Core Features & Use Cases
- Measure-first workflow (MIFVG): Establish a baseline (p50/p95), profile to identify the true bottleneck, implement a targeted fix, verify with reproducible before/after results, and guard against silent regressions.
- Evidence-aligned remediation patterns: Apply common fixes only when measurements support them, such as removing N+1 queries via batching, preventing unbounded data via pagination/cursors, eliminating synchronous I/O on hot paths, reducing unnecessary serialization, improving cache hit/miss patterns, using code-splitting for bundle size regressions, and addressing re-render storms in UI frameworks.
- Verification and governance checks: Require a clear reproduction scenario, profiler-based bottleneck identification, test/lint/typecheck pass-through, and documented monitoring/performance gates (including Core Web Vitals checks when relevant).
Quick Start
Ask the AI to optimize the code path for reported slowness by measuring p50 and p95, profiling to pinpoint the bottleneck, applying a single targeted fix, verifying reproducibly, and adding a performance guard.