What problem does it solve? React and Next.js codebases often suffer from slow load times, unnecessary re-renders, bloated bundles, and server-side waterfalls that are hard to spot during development. This Skill gives AI agents and developers a prioritized, rule-based checklist from Vercel Engineering to catch and fix these performance issues during code generation, review, and refactoring. ## Core Features & Use Cases - 57 Prioritized Rules Across 8 Categories: Covers eliminating async 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 level from CRITICAL to LOW. - Incorrect vs. Correct Code Examples: Every rule file shows a concrete anti-pattern alongside the optimized implementation, with impact metrics such as 2-10x improvements from parallelizing fetches or 200-800ms savings from avoiding barrel imports. - Use Case: When asked to review a Next.js page that fetches user, posts, and comments sequentially, the Skill directs the agent to apply the async-parallel rule using Promise.all(), restructure components for parallel server-side fetching, and add strategic Suspense boundaries. ## Quick Start Ask the agent to review your React or Next.js component for performance issues using the Vercel best practices guidelines.