What problem does it solve? React and Next.js codebases often suffer from slow load times, data-fetching waterfalls, bloated bundles, and unnecessary re-renders. This Skill gives AI agents and developers a prioritized, rule-based checklist from Vercel Engineering to systematically find and fix these performance problems. ## 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, each tagged by impact from CRITICAL to LOW. - Incorrect vs. Correct Code Examples: Every rule includes concrete TypeScript/TSX examples showing the wrong pattern and the optimized fix, ready to apply during code review or refactoring. - Use Case: When reviewing a Next.js page that fetches user, posts, and comments sequentially, apply the async-parallel rule to rewrite the fetches with Promise.all(), cutting three round trips down to one. ## Quick Start Ask the agent to review your React component or Next.js page against the Vercel performance rules and refactor any waterfall, bundle, or re-render issues it finds.