What problem does it solve? React and Next.js applications often suffer from slow load times, unnecessary re-renders, bloated bundles, and server-side waterfalls that degrade user experience. This Skill provides a structured, impact-prioritized rule set from Vercel Engineering so AI agents and developers can systematically identify and fix performance issues when writing, reviewing, or refactoring code. ## Core Features & Use Cases - 64 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. - Incorrect vs. Correct Examples: Each rule file shows a concrete bad implementation alongside the optimized version, with impact ratings from CRITICAL to LOW. - Quick Reference Index: The SKILL.md maps rule prefixes (e.g., async-parallel, bundle-barrel-imports) to individual rule files for targeted lookups, plus a full compiled AGENTS.md document. - Use Case: When refactoring a Next.js page that fetches user, posts, and comments sequentially, apply the async-parallel rule to convert the awaits into a single Promise.all() call, cutting three network round trips down to one. ## Quick Start Ask the AI to review your React or Next.js component for performance issues using the Vercel best practices rules and suggest concrete fixes.