What problem does it solve?
This Skill helps engineers find and fix common performance and composition problems in React 19 apps, removing waterfalls, reducing bundle size, and preventing unnecessary re-renders so components behave responsively in production.
Core Features & Use Cases
- Prioritized checklist for audits that ranks issues by impact (CRITICAL → MEDIUM) so reviewers fix the most harmful problems first.
- Pattern-driven fixes that cover waterfalls, bundle-splitting, composition over boolean props, render prevention, and React 19-specific APIs.
- Context-specific guidance for Vite and Cloudflare Workers projects, including dependency dedupe, env handling, and edge constraints.
- Use Case: Run during PR reviews or refactors to convert a slow component into a composable, code-split, and memoized implementation.
Quick Start
Review the file src/components/Button.tsx for waterfalls, bundle bloat, and re-render causes and list prioritized, code-level fixes by impact.