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 server-side serialization overhead. This Skill provides a structured, impact-prioritized rule set from Vercel Engineering so AI agents and developers can systematically identify and fix these problems. ## Core Features & Use Cases - 70 Prioritized Rules Across 8 Categories: Covers eliminating waterfalls, bundle size optimization, server-side performance, client-side data fetching, re-render optimization, rendering performance, JavaScript micro-optimizations, and advanced patterns. - Incorrect vs. Correct Code Examples: Each rule includes concrete TypeScript/TSX examples showing the anti-pattern and the optimized implementation, plus impact metrics (e.g., 2-10x improvement from parallelization). - Use Case: When refactoring a Next.js page that sequentially awaits multiple fetches, apply the async rules to parallelize independent operations with Promise.all() and add Suspense boundaries for faster initial paint. ## Quick Start Ask the agent to review your React component or Next.js page for performance issues using the Vercel best practices rules.