What problem does it solve? React codebases often grow inconsistent, with ad hoc state management, missing accessibility, and unverified UI changes. This Skill provides a structured set of React standards so generated or reviewed code follows scalable, maintainable, and accessible patterns. ## Core Features & Use Cases - Architecture & State Guidance: Enforces layered UI structure, dedicated server-state layers, URL-based shareable state, and disciplined effect cleanup with AbortController. - Forms, Errors & Styling Standards: Promotes schema-backed form validation, shared error notification patterns, and design-system theme tokens instead of one-off styles. - Accessibility & Performance Rules: Covers ARIA usage, keyboard navigation, stable keys, memoization, and code splitting for heavy routes and widgets. - Use Case: When building a new dashboard page with filters and data fetching, apply this Skill so the implementation uses URL search params for filter state, a server-state layer for fetching, and proper loading, empty, and error states. ## Quick Start Review my React component and refactor it to follow the React standards for state management, accessibility, and performance.