What problem does it solve? React performance work often devolves into scattering useMemo and useCallback everywhere without addressing why updates propagate through the component tree. This Skill gives you a structured lens for writing and reviewing React code so optimizations target actual render boundaries, state placement, and hot-path work instead of ritual memoization. ## Core Features & Use Cases - Render Boundary Analysis: Trace each interaction from update source through state ownership to the subtree that rerenders, and verify it is the minimum useful scope. - Writing Workflow: Map interactions, colocate state with its real owner, split components by update responsibility, narrow props and context, and move expensive work off hot paths. - PR Review Workflow: Flag boundary regressions, hot-path computation, and unjustified memoization, with ready-to-use comment templates that name the update source and suggest the smallest fix. - Use Case: When reviewing a PR where search input state was lifted into a dashboard page component, identify that every keystroke rerenders the whole page and recommend colocating the state in the search box with debounced publishing to the table. ## Quick Start Ask the AI to review your React component or PR for render boundaries, state ownership, and hot-path work before approving it.