What problem does it solve? Building production-grade React applications requires navigating Server Components, hooks, state management, performance optimization, and form validation, which is error-prone without structured guidance. ## Core Features & Use Cases - React 19 Architecture: Guides Server/Client component splits, the use() hook, Suspense, form actions with useActionState, and error boundaries. - State & Data Fetching: Covers Context, Zustand, Redux, and TanStack Query patterns with TypeScript strict typing. - Form Validation: Provides React Hook Form plus Zod schema validation patterns, including dynamic fields with useFieldArray, multi-step wizards, async validation, and shadcn/ui integration. - Use Case: When building a signup flow, use this Skill to scaffold a type-safe multi-step form with Zod schemas shared between client and server, accessible error display, and debounced async username checks. ## Quick Start Ask the agent to build a React 19 login form with Zod validation and Server Component data fetching using TypeScript.