What problem does it solve? React and Next.js applications often suffer from slow page loads, excessive bundle sizes, rendering waterfalls, and unnecessary re-renders, and developers lack a prioritized, actionable checklist for diagnosing and fixing these issues during code writing and review. ## Core Features & Use Cases - Prioritized Rule Catalog: Organizes 70+ performance rules into 8 priority categories, from critical waterfall elimination and bundle size optimization down to advanced patterns like useEffectEvent and stable refs. - Code Review Guidance: Provides incorrect/correct code pairs for each rule, making it directly usable when reviewing PRs touching app/, pages/, components/, or data layers. - Lighthouse Mapping: Maps rule categories to Core Web Vitals metrics (LCP, INP, CLS, TBT) so optimization effort targets the metric that is actually regressing. - Use Case: While reviewing a Next.js pull request, you notice sequential awaits in a Server Component and a barrel import from a component library; this Skill gives you the exact corrected patterns (Promise.all, direct imports) to suggest. ## Quick Start Ask the AI to review your React or Next.js component for performance issues using the react-performance priority checklist.