What problem does it solve? AI-generated interfaces often look generic, ignore accessibility requirements, and break on different screen sizes. This Skill enforces disciplined frontend engineering practices so components are accessible, responsive, and consistent with the project's design system instead of exhibiting the recognizable "AI aesthetic." ## Core Features & Use Cases - Component Architecture Guidance: Enforces composition over configuration, colocated file structure, and separation of data fetching from presentation in React/TypeScript components. - WCAG 2.1 AA Accessibility: Provides concrete patterns for keyboard navigation, ARIA labels, focus management, and meaningful empty/error states. - Responsive & State Management Patterns: Covers mobile-first layouts, breakpoint testing, skeleton loading, optimistic updates, and a decision ladder for choosing state management approaches. - Use Case: When asked to build a task list page, the agent produces a composable component tree with skeleton loading, empty states, keyboard-accessible controls, semantic color tokens, and layouts verified at 320px through 1440px breakpoints. ## Quick Start Ask the agent to build a new UI component or page, such as "create an accessible, responsive settings page following our design system."