What problem does it solve? React and Next.js codebases often suffer from performance issues like async waterfalls, bloated bundles, unnecessary re-renders, and inefficient data fetching. This Skill provides 70 prioritized, impact-rated rules from Vercel Engineering so AI agents and developers consistently apply proven optimization patterns when writing, reviewing, or refactoring code. ## Core Features & Use Cases - Prioritized Rule Set: 70 rules across 8 categories ranked by impact, from CRITICAL (eliminating waterfalls, bundle size) to LOW (advanced patterns), each with incorrect vs. correct code examples. - Structured Rule Files: Individual rule files under rules/ with frontmatter metadata (title, impact, tags), plus a compiled AGENTS.md containing the full guide. - 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(), cutting three round trips down to one. ## Quick Start Ask the agent to review your React component or Next.js page for performance issues using the Vercel React best practices rules.