What problem does it solve? React and Next.js codebases often suffer from slow load times, unnecessary re-renders, bloated bundles, and data-fetching waterfalls that are hard to spot during development. This Skill provides a structured, prioritized rule set from Vercel Engineering so AI agents and developers can consistently generate and refactor performant React/Next.js code. ## Core Features & Use Cases - 57 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 level. - Incorrect vs. Correct Code Examples: Every rule includes concrete before/after TypeScript and TSX examples with explanations and impact metrics (e.g., 2-10x improvement from parallelizing fetches). - Modular Rule Files: Individual rule files under rules/ can be read on demand, plus a full compiled AGENTS.md reference document. - Use Case: When refactoring a Next.js page that fetches user, posts, and comments sequentially, apply the async-parallel rule to rewrite it with Promise.all() and cut response time from three round trips to one. ## Quick Start Ask the agent to review your React component or Next.js page for performance issues using the Vercel best practices rules.