OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add dimillian/skills --skill react-component-performance
Analyze and optimize React component performance issues (slow renders, re-render thrash, laggy lists, expensive computations). Use when asked to profile or improve a React component, reduce re-renders, or speed up UI updates in React apps.
npx skills add dimillian/skills --skill react-component-performance
Identify render hotspots, isolate expensive updates, and apply targeted optimizations without changing UI behavior.
memo only when props are stable.useCallback/useMemo for handlers and derived values.Move a timer or animation counter into a child so the parent list never re-renders on each tick.
useCallback + memoLoad references/examples.md when the user wants a concrete refactor example.