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 gives AI agents and developers a prioritized, rule-based checklist to catch and fix these performance issues automatically. ## Core Features & Use Cases - 57 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 before/after TypeScript and TSX snippets, making it directly actionable for code generation and review. - Individual Rule Files: Each rule lives in its own file under rules/ for targeted lookup, plus a full compiled reference in AGENTS.md. - Use Case: When refactoring a Next.js page that fetches user, posts, and comments sequentially, the Skill directs you to parallelize with Promise.all(), restructure components for parallel server-side fetching, and add Suspense boundaries for faster initial paint. ## Quick Start Ask the agent to review your React component or Next.js page for performance issues using the Vercel best practices rules.