What problem does it solve? Translating web designs from Stitch into native mobile code requires manually mapping HTML elements and CSS to React Native primitives, which is error-prone and slow. This Skill automates the design-to-native pipeline, from fetching Stitch screens to generating validated TypeScript components. ## Core Features & Use Cases - Design Retrieval: Downloads Stitch HTML and full-resolution screenshots from Google Cloud Storage via a curl-based script that handles redirects and security handshakes. - HTML-to-Native Mapping: Converts HTML elements to React Native primitives (View, Text, Pressable, Image, FlatList) and CSS/Tailwind to StyleSheet.create() calls with theme token extraction. - Automated Validation: Runs an AST-based check to catch missing Props interfaces, hardcoded color values, and leftover HTML elements, then audits against an architecture checklist. - Use Case: Ask the agent to convert a Stitch Login screen into React Native components, and it will scaffold Atomic Design components with typed props, theme constants, mock data, and accessibility labels. ## Quick Start Convert my Login screen in my Stitch project to React Native components.