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 gives AI agents and developers a prioritized, rule-based checklist from Vercel Engineering to detect and fix these issues consistently during code generation, review, and refactoring. ## Core Features & Use Cases - 70 Prioritized Performance Rules: Covers 8 categories ranked by impact, from eliminating async waterfalls (CRITICAL) to advanced hook patterns (LOW), each with incorrect vs. correct code examples. - Structured Rule Files: Individual rule files organized by prefix (async-, bundle-, server-, client-, rerender-, rendering-, js-, advanced-) for targeted lookup, plus a compiled AGENTS.md with the full guide. - Use Case: When reviewing a Next.js page that sequentially awaits multiple fetches, apply the async-parallel and async-api-routes rules to restructure the code with Promise.all() and early promise starts, cutting response latency significantly. ## Quick Start Ask the agent to review your React or Next.js component for performance issues using the Vercel React best practices rules.