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. This Skill provides a structured, prioritized rule set from Vercel Engineering so AI agents and developers consistently apply proven performance patterns when writing, reviewing, or refactoring code. ## Core Features & Use Cases - 64 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 micro-optimizations, and advanced patterns, each tagged by impact level from CRITICAL to LOW. - Incorrect vs. Correct Code Examples: Every rule includes concrete TypeScript/TSX examples showing the wrong pattern and the optimized fix, with impact metrics like 2-10x improvements or 200-800ms import cost reductions. - Modular Rule Files: Individual rule files under rules/ can be read on demand, while AGENTS.md provides the full compiled guide. - Use Case: When refactoring a Next.js page that fetches data sequentially, apply the async-parallel and server-parallel-fetching rules to convert sequential awaits into Promise.all() calls and component composition, cutting response latency. ## Quick Start Ask the agent to review your React or Next.js component for performance issues using the Vercel best practices rules and suggest concrete fixes.