What problem does it solve? React and Next.js codebases often suffer from slow load times, unnecessary re-renders, bloated bundles, and data-fetching waterfalls that are hard to spot during development. This Skill provides a structured, impact-prioritized rule set so AI-assisted code generation and review consistently follows proven performance patterns. ## Core Features & Use Cases - 57 Prioritized Rules Across 8 Categories: Covers eliminating waterfalls, bundle size optimization, server-side performance, client-side data fetching, re-render optimization, rendering performance, JavaScript performance, and advanced patterns. - Incorrect vs. Correct Code Examples: Each rule file shows a concrete anti-pattern alongside the optimized implementation with explanations and impact metrics. - Quick-Reference IDs: Rules are tagged with prefixes like async-, bundle-, and server- for fast lookup during code review. - Use Case: When refactoring a Next.js page that fetches user, posts, and comments sequentially, apply the async-parallel rule to convert the calls into a single Promise.all() and cut three round trips down to one. ## Quick Start Ask the assistant to review your React component or Next.js page against the Vercel performance rules and suggest concrete optimizations.