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 - 45 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 TypeScript/TSX examples showing the anti-pattern and the optimized implementation, with impact metrics like 2-10x improvements from parallelization. - Modular Rule Files: Individual rule files under rules/ allow targeted reference, while AGENTS.md provides the full compiled guide. - Use Case: When refactoring a Next.js page that fetches user, config, and profile data sequentially, apply the async-parallel and async-dependencies rules to convert sequential awaits into Promise.all() or better-all patterns, cutting response latency. ## Quick Start Ask the agent to review your React component or Next.js page for performance issues using the Vercel best practices rules and suggest optimized code.