What problem does it solve? React and Next.js codebases often ship with hidden performance problems: sequential async waterfalls, bloated bundles from barrel imports, unnecessary re-renders, and server-side serialization waste. This Skill gives an AI agent a structured, prioritized rulebook from Vercel Engineering so generated and refactored code follows proven performance patterns from the start. ## Core Features & Use Cases - 70 prioritized rules across 8 categories: from CRITICAL (eliminating waterfalls, bundle size) down to LOW (advanced hook patterns), each with incorrect vs. correct code examples and impact metrics. - Quick-reference index in SKILL.md: rule IDs grouped by category let the agent jump directly to the relevant rule file in rules/ for detailed guidance. - Use Case: While refactoring a Next.js page, the agent applies async-parallel to convert sequential fetches into Promise.all(), uses bundle-barrel-imports to fix lucide-react imports, and wraps slow sections in Suspense boundaries per async-suspense-boundaries. ## Quick Start Review my Next.js page component for performance issues and refactor it using the Vercel React best practices rules.