What problem does it solve? Inconsistent UI code with hard-coded spacing, colors, and raw platform components breaks design system cohesion and makes maintenance difficult across a codebase. ## Core Features & Use Cases - Design Token Enforcement: Provides spacing, color, and typography token tables (e.g., $4, $textPrimary, $lg) so agents never hard-code pixel values or hex colors. - Core Component Patterns: Documents Box, HStack, VStack, Text, Button, Input, and Card components with correct prop usage and variants. - Layout Recipes: Supplies ready-made screen, form, and list-item layout patterns plus explicit anti-pattern examples showing wrong vs. correct code. - Use Case: When building a profile screen, the agent composes Screen, ScreenHeader, VStack, and Input components with token-based props instead of raw View elements with inline styles. ## Quick Start Build a settings screen using the core component library with design tokens for all spacing, colors, and typography.