What problem does it solve? React and Next.js applications often ship with hidden performance problems such as async waterfalls, bloated bundles, unnecessary re-renders, and blocking server operations. This Skill gives an AI assistant a structured, prioritized rule set from Vercel Engineering so it can detect and fix these issues while writing or reviewing code. ## Core Features & Use Cases - 57 Prioritized Rules Across 8 Categories: Covers eliminating waterfalls (CRITICAL), bundle size optimization, server-side performance, client-side data fetching, re-render optimization, rendering performance, JavaScript micro-optimizations, and advanced patterns. - Incorrect/Correct Code Examples: Each rule file includes a bad pattern, a corrected pattern, and an explanation, enabling concrete refactoring suggestions rather than vague advice. - Use Case: While reviewing a Next.js page that sequentially awaits user, posts, and comments fetches, the assistant applies the async-parallel rule to rewrite the code with Promise.all(), cutting three round trips to one. ## Quick Start Review my React component and Next.js API route for performance issues using the react-best-practices guidelines and suggest fixes.