react-ops

Installation
SKILL.md

React Operations

Comprehensive React skill covering hooks, component architecture, state management, Server Components, and performance optimization.

Hook Selection Decision Tree

What problem are you solving?
├─ Storing UI state that triggers re-renders
│  ├─ Simple value (string, number, boolean)
│  │  └─ useState
│  ├─ Complex state with multiple sub-values and logic
│  │  └─ useReducer (actions + reducer = predictable transitions)
│  └─ Derived from existing state
│     └─ Calculate inline or useMemo — not useState
├─ Referencing a value WITHOUT triggering re-render
│  ├─ DOM element reference
Related skills
Installs
7
GitHub Stars
17
First Seen
Mar 22, 2026