What problem does it solve? React and Next.js codebases often suffer from performance issues like data-fetching waterfalls, bloated bundles, unnecessary re-renders, and inefficient server-side patterns. This Skill provides 62 prioritized, actionable rules from Vercel Engineering so AI agents and developers consistently write performant React code. ## Core Features & Use Cases - 62 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: Every rule includes concrete TypeScript/TSX examples showing the wrong pattern and the optimized fix, with impact metrics like "2-10x improvement" or "200-800ms import cost". - Use Case: When refactoring a Next.js page that sequentially awaits multiple fetches, apply the async-parallel and server-parallel-fetching rules to restructure with Promise.all() and component composition, cutting response latency dramatically. ## Quick Start Ask the AI to review your React component or Next.js page against the Vercel performance rules and refactor any violations it finds.