What problem does it solve? AI-generated UI often looks generic, ignores accessibility requirements, and breaks on different screen sizes. This Skill provides concrete engineering standards for building interfaces that meet WCAG 2.1 AA accessibility, follow real design systems, and avoid the recognizable "AI aesthetic" of purple gradients and stock layouts. ## Core Features & Use Cases - Component Architecture Patterns: Enforces composition over configuration, colocated file structures, and separation of data fetching from presentation in React/TypeScript components. - Accessibility Compliance: Provides concrete patterns for keyboard navigation, ARIA labels, focus management, and meaningful empty/error states that meet WCAG 2.1 AA. - Design System Adherence: Guides use of spacing scales, semantic color tokens, typography hierarchy, and responsive breakpoints instead of arbitrary values. - Use Case: When asked to build a task management page, apply this Skill to produce a component with skeleton loading states, optimistic updates via React Query, keyboard-accessible controls, and a mobile-first responsive grid tested at 320px through 1440px. ## Quick Start Build a responsive, accessible task list component with loading, error, and empty states following the project's design system.