What problem does it solve? Building modern user interfaces requires juggling component architecture, styling strategy, accessibility standards, and responsive design simultaneously, and inconsistent decisions across these areas produce unmaintainable frontend code. ## Core Features & Use Cases - Component Architecture Guidance: Enforces container/presenter separation, state management hierarchy (URL state, server state, local state, global state), and composition-based component APIs. - Design Engineering Standards: Provides algorithmic theming with HSL color math, dark mode via CSS variables, and optimized SVG generation with responsive viewBoxes. - Accessibility & Styling Compliance: Applies WCAG 2.2 AA contrast rules, semantic HTML requirements, 8-point grid spacing, and Tailwind/CSS variable theming patterns. - Use Case: When asked to refactor a 400-line React component, load this Skill to split data fetching into a container, extract a pure presentational component, move server state to React Query, and fix contrast ratios to meet WCAG 2.2 AA. ## Quick Start Ask the AI to review or build a React component using the frontend-dev engine, for example: refactor this component to separate business logic from rendering and apply the 8-point spacing grid.