| name | react |
| description | React 19/19.2 modern patterns for concurrent rendering, Server Components, actions, ref-as-prop, document metadata, resource hints, hooks, and memoization — plus a category-major review/refactor algorithm with codebase-level (remove/dedup/reuse) findings. This skill should be used when writing React 19 components, using concurrent features, migrating from React 18, optimizing re-renders, OR auditing/refactoring a React codebase (single file or whole repo). This skill does NOT cover Next.js-specific features like App Router, next.config.js, or Next.js caching (use nextjs-16-app-router skill). For client-side form validation with React Hook Form, use react-hook-form skill. |
React 19 Best Practices
Comprehensive React 19/19.2 best-practices guide for AI agents. Contains 49 rules across 9 categories, prioritized by impact from critical (concurrent rendering, server components) through to cross-cutting codebase hygiene (dedup, dead code, boundary coherence). Reflects React 19 headline changes: ref as a regular prop (forwardRef deprecated), native document metadata, resource preload APIs, useActionState, useOptimistic, use() hook, and <Context> as provider.
Rule files describe pattern shapes (not API names) and open with a "Shapes to recognize" section listing 2–4 syntactic disguises the same break can wear. Selected high-value rules (those whose disguises are most common in real codebases — form actions, ref-as-prop, derived state, context, the use() hook, useCallback/memo pairing) include an extra concrete "In disguise" incorrect/correct example pair to teach pattern detection beyond the grep-friendly cases.
When to Apply
- Writing new React components or refactoring existing ones
- Auditing or modernizing a directory, PR, or whole repository (see
references/_review-algorithm.md for the required procedure)
- Migrating from React 18 to React 19 (forwardRef → ref-as-prop,
<Context.Provider> → <Context>, useFormState → useActionState)
- Optimizing re-render performance or bundle size
- Using concurrent features (useTransition, useDeferredValue, Activity)
- Setting up Server Components or server/client boundaries
- Implementing form actions, optimistic updates, or data fetching
- Configuring React Compiler for automatic memoization
- Reviewing React code for common anti-patterns or outdated React 18 idioms
- Finding codebase-level issues that single-file rules can't see: duplicated logic across files, near-duplicate components, dead code,
'use client' files that don't need the client, prop-shape drift (see Category 9)
How to Review or Refactor a Codebase
When the user asks to review, refactor, modernize, or audit React code — single file or whole repo — follow references/_review-algorithm.md. Do not improvise.
Four non-negotiables from that doc:
- Two modes — never refuse a whole-repo audit. Pick Mode A (scoped, ≤~20 files) or Mode B (whole-tree: inventory pass + targeted sweeps + full Category 9). The algorithm tells you how to handle "audit my codebase" without dumping 800 files into context.
- Judgment over grep. Each rule names a pattern shape, not a syntactic marker. Read each rule's Shapes to recognize section before sweeping — grep finds the easy violations and misses the high-value ones (a manually-drilled callback ref because the author dodged
forwardRef; an onSubmit doing the work of useActionState; a useState+useEffect shaped like derived state; a custom hook hiding the fetch dance). Grep is a trigger, never a verdict.
- Category-major, not file-major — with forcing functions. Sweep one category at a time across all in-scope files in priority order (CRITICAL → … → CROSS-CUTTING). The algorithm requires a scope declaration, per-category progress lines, and a final coverage table (
category × file, cells ∈ {clean, N findings, n/a}). A missing category in the output is immediately visible.
- Codebase-level findings come from Category 9. Single-file rules can't tell you "these two components should be one" or "this hook is dead." Category 9 (Codebase Hygiene) sweeps the full inventory at the end and produces remove / dedup / reuse / consolidate findings.
Single-file ad-hoc questions ("is this hook OK?") can go straight to the relevant rule. The algorithm exists for the multi-file and whole-repo cases.
Rule Categories
| # | Category | Impact | Rules | Key Topics |
|---|
| 1 | Concurrent Rendering | CRITICAL | 6 | useTransition, useDeferredValue, Activity, batching, render purity |
| 2 | Server Components | CRITICAL | 6 | RSC boundaries, data fetching, streaming, serializable props |
| 3 | Actions & Forms | HIGH | 5 | Form actions, declarative form state, useOptimistic, server validation |
| 4 | Data Fetching | HIGH | 7 | use() hook, cache(), Suspense, document metadata, resource hints |
| 5 | State Management | MEDIUM-HIGH | 5 | Derived values, context split, functional updates, reducer |
| 6 | Memoization & Performance | MEDIUM | 5 | React Compiler, useMemo, useCallback, React.memo |
| 7 | Effects & Events | MEDIUM | 5 | useEffectEvent, cleanup, external stores, derived-state anti-pattern |
| 8 | Component Patterns | LOW-MEDIUM | 5 | ref-as-prop, composition, controlled vs uncontrolled, key reset |
| 9 | Codebase Hygiene | CROSS-CUTTING | 5 | Dedup, consolidation, dead code, boundary coherence, prop-shape drift |
Quick Reference
Critical patterns — get these right first:
- Fetch data in Server Components, not Client Components
- Push
'use client' boundaries as low as possible
- Use
startTransition for expensive non-blocking updates
- Use
<Activity> to preserve state across tab/page switches
React 19 modern idioms (do NOT generate React 18 patterns):
function C({ ref, ...props }) — never wrap in forwardRef
<MyContext value={v}> — never use <MyContext.Provider>
useActionState — never use useFormState
useRef<T>(null) — always pass an initial value
- Render
<title>, <meta>, <link> inline — never reach for react-helmet
preload/preconnect from react-dom — never hand-render <link rel="preload">
Common single-file mistakes — avoid these anti-patterns:
- Creating promises inside Client Components for
use() (causes infinite loops)
- Memoizing everything (use React Compiler v1.0+ instead)
- Using effects for derived state, mutations, parent notifications, or app init
- Placing
'use client' too high in the component tree
Codebase-level patterns — surface these in Category 9 sweeps:
- Components/hooks/utilities with zero importers — delete
- 2+ files with the same effect/state shape — extract a shared hook
- 2+ structurally identical components with drift in labels/icons — consolidate with variants or composition
'use client' files whose hook usage doesn't require client execution — demote to Server Components (or split into server parent + client island)
- Same conceptual prop carried under different names across components — converge on a canonical name
Table of Contents
- Concurrent Rendering — CRITICAL
- Server Components — CRITICAL
- Actions & Forms — HIGH
- Data Fetching — HIGH
- State Management — MEDIUM-HIGH
- Memoization & Performance — MEDIUM
- Effects & Events — MEDIUM
- Component Patterns — LOW-MEDIUM
- Codebase Hygiene — CROSS-CUTTING (multi-file findings; required for whole-repo audits)
References
- https://react.dev
- https://react.dev/blog/2024/04/25/react-19-upgrade-guide
- https://react.dev/blog/2024/12/05/react-19
- https://react.dev/blog/2025/10/01/react-19-2
- https://react.dev/blog/2025/10/07/react-compiler-1
- https://react.dev/learn/you-might-not-need-an-effect
- https://github.com/facebook/react
Related Skills
- For Next.js 16 App Router, see
nextjs-16-app-router skill
- For client-side form handling, see
react-hook-form skill
- For data caching with TanStack Query, see
tanstack-query skill