What problem does it solve?
This Skill helps teams eliminate common React and Next.js performance mistakes that slow down rendering, increase bundle size, and create brittle hydration or data-fetching behavior.
Core Features & Use Cases
- Waterfall Prevention: Restructure async work to run in parallel and avoid unnecessary sequential waits.
- Bundle Optimization: Reduce initial load cost with direct imports, dynamic imports, conditional loading, and deferred third-party code.
- Server and RSC Efficiency: Improve server actions, caching, serialization, and component composition for faster responses.
- Render and Re-render Tuning: Apply memoization, derived state, transitions, refs, and hydration-safe patterns to keep UIs responsive.
- Use Case: Use this Skill when reviewing a Next.js page that feels slow, refactoring a component tree with excessive re-renders, or tightening server-client boundaries before launch.
Quick Start
Ask for a React or Next.js performance review of the codebase and have it identify the highest-impact fixes from these best-practice rules.