What problem does it solve? React and Next.js codebases often suffer from performance issues like async waterfalls, bloated bundles, unnecessary re-renders, and unoptimized server-side data fetching that are hard to catch during manual code review. ## Core Features & Use Cases - 64 Prioritized Rules: Covers 8 categories ranked by impact, from eliminating waterfalls and reducing bundle size (CRITICAL) to advanced hook patterns (LOW). - Automated TSX Review: Triggers after editing TSX/JSX components to run a quality checklist covering component structure, hooks usage, accessibility, and TypeScript patterns. - Legacy Library Detection: Warns when CSS-in-JS libraries like styled-components, Emotion, MUI, or Chakra are detected, and chains to shadcn/ui + Tailwind guidance. - Use Case: After refactoring a Next.js page with multiple data fetches, apply the rules to convert sequential awaits into parallel Promise.all() calls and add Suspense boundaries for faster initial paint. ## Quick Start Review my React components in the components directory and apply the Vercel performance best practices to fix any waterfalls or bundle size issues.