[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-ui":3,"mdc--7gcyo9-key":46,"related-org-expo-expo-ui":580,"related-repo-expo-expo-ui":752},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":35,"repoUrl":36,"updatedAt":37,"license":38,"forks":39,"topics":40,"repo":41,"sourceUrl":44,"mdContent":45},"expo-ui","build native UI with Expo UI","Framework (OSS). Build native UI with the @expo\u002Fui package: real SwiftUI on iOS and Jetpack Compose on Android rendered from React in an Expo or React Native app. Covers universal cross-platform components (Host, Column, Row, Button, Text, List, and more imported from @expo\u002Fui), drop-in replacements for popular React Native community libraries (BottomSheet, DateTimePicker, Slider, Menu, etc.), and platform-specific SwiftUI (@expo\u002Fui\u002Fswift-ui, iOS only) and Jetpack Compose (@expo\u002Fui\u002Fjetpack-compose, Android only) trees and modifiers. Use when adding or reviewing @expo\u002Fui Host\u002FRNHostView trees, building native-feeling UI where standard React Native components fall short (grouped settings forms with toggles, sections, menus, sheets, pickers, sliders), choosing between universal and platform-specific components, or replacing an RN community UI library with a native @expo\u002Fui equivalent. Not for custom native modules, Expo Router navigation, Reanimated, or data fetching.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"expo","Expo","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fexpo.png",[12,16,19,22,23,26,29,32],{"name":13,"slug":14,"type":15},"SwiftUI","swiftui","tag",{"name":17,"slug":18,"type":15},"React Native","react-native",{"name":20,"slug":21,"type":15},"Android","android",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"iOS","ios",{"name":27,"slug":28,"type":15},"Mobile","mobile",{"name":30,"slug":31,"type":15},"Jetpack Compose","jetpack-compose",{"name":33,"slug":34,"type":15},"UI Components","ui-components",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:34.175781","MIT",111,[],{"repoUrl":36,"stars":35,"forks":39,"topics":42,"description":43},[],"A collection of AI agent skills for working with Expo projects and Expo Application Services","https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fexpo\u002Fskills\u002Fexpo-ui","---\nname: expo-ui\ndescription: \"Framework (OSS). Build native UI with the @expo\u002Fui package: real SwiftUI on iOS and Jetpack Compose on Android rendered from React in an Expo or React Native app. Covers universal cross-platform components (Host, Column, Row, Button, Text, List, and more imported from @expo\u002Fui), drop-in replacements for popular React Native community libraries (BottomSheet, DateTimePicker, Slider, Menu, etc.), and platform-specific SwiftUI (@expo\u002Fui\u002Fswift-ui, iOS only) and Jetpack Compose (@expo\u002Fui\u002Fjetpack-compose, Android only) trees and modifiers. Use when adding or reviewing @expo\u002Fui Host\u002FRNHostView trees, building native-feeling UI where standard React Native components fall short (grouped settings forms with toggles, sections, menus, sheets, pickers, sliders), choosing between universal and platform-specific components, or replacing an RN community UI library with a native @expo\u002Fui equivalent. Not for custom native modules, Expo Router navigation, Reanimated, or data fetching.\"\nversion: 1.0.0\nlicense: MIT\nallowed-tools: \"Bash(node *expo-ui\u002Fscripts\u002Flist-components.js *)\"\n---\n\n# Expo UI (`@expo\u002Fui`)\n\n`@expo\u002Fui` renders real native UI from React: SwiftUI on iOS, Jetpack Compose on Android. Start with its universal components (one tree for iOS, Android, and web) and drop to platform-specific SwiftUI\u002FJetpack Compose only when the universal layer falls short. It also ships drop-in replacements for migrating off RN community UI libraries.\n\n> These instructions track the latest Expo SDK. The **universal** layer requires **SDK 56+**. Drop-in replacements and the platform-specific layers also exist on SDK 55. For component details on a specific SDK, refer to the Expo UI docs for that version.\n\n## Installation\n\n```bash\nnpx expo install @expo\u002Fui\n```\n\nOn SDK 56, `@expo\u002Fui` works in Expo Go, so `npx expo start` runs it directly — no custom build required. On older SDKs, build a dev client first (`npx expo run:ios` \u002F `npx expo run:android`).\n\nEvery `@expo\u002Fui` tree — universal or platform-specific — must be wrapped in `Host`.\n\n## Choosing an approach (read this first)\n\nWork down this list and stop at the first layer that meets the need:\n\n1. **Universal components — start here.** Import from the `@expo\u002Fui` root. One component tree runs unmodified on iOS, Android, and web from a single source (Compose on Android, SwiftUI on iOS, `react-native-web`\u002F`react-dom` on web). No platform file splits. → `.\u002Freferences\u002Funiversal.md`\n\n2. **Platform-specific (SwiftUI \u002F Jetpack Compose).** Import from `@expo\u002Fui\u002Fswift-ui` or `@expo\u002Fui\u002Fjetpack-compose`. Use **only** when the universal layer is missing a component or modifier you need, or when you need platform-specific behavior or optimization. **Downside:** you write two trees and split them into `.ios.tsx` \u002F `.android.tsx` files (or branch on `Platform.OS`) — more code to maintain.\n\n   > **`@expo\u002Fui\u002Fswift-ui` is iOS-only. `@expo\u002Fui\u002Fjetpack-compose` is Android-only.** Importing either in a file that runs on the other platform will crash at runtime with \"Unable to get view config\" errors. Isolate platform-specific trees in `.ios.tsx` \u002F `.android.tsx` files placed in `components\u002F` (never inside `app\u002F` — Expo Router does not support platform extensions for route files), or guard with `Platform.OS` in a regular route file. `Host` must always be imported from `@expo\u002Fui` (the universal package root), not from the platform-specific sub-packages. → `.\u002Freferences\u002Fswift-ui.md` and `.\u002Freferences\u002Fjetpack-compose.md`\n\n**Already using an RN community UI library?** `@expo\u002Fui` also ships **drop-in replacements** — API-compatible swaps for popular libraries (`@gorhom\u002Fbottom-sheet`, `@react-native-community\u002Fdatetimepicker`, and more), imported from `@expo\u002Fui\u002Fcommunity\u002F\u003Cname>`. This is a migration side-path for replacing an existing dependency, not a step in the universal-vs-platform decision above. → `.\u002Freferences\u002Fdrop-in-replacements.md`\n\n## References\n\nConsult these resources as needed:\n\n```\nreferences\u002F\n  universal.md             Universal @expo\u002Fui components and when to use them (SDK 56+)\n  drop-in-replacements.md  API-compatible replacements for RN community UI libraries\n  swift-ui.md              Platform-specific iOS UI: @expo\u002Fui\u002Fswift-ui components, modifiers, RNHostView, useNativeState\n  jetpack-compose.md       Platform-specific Android UI: @expo\u002Fui\u002Fjetpack-compose components, modifiers, LazyColumn caveat, icons, useNativeState\n```\n\n## Submitting Feedback\nIf you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:\n```bash\nnpx --yes submit-expo-feedback@latest --category skills --subject \"expo-ui\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\n",{"data":47,"body":50},{"name":4,"description":6,"version":48,"license":38,"allowed-tools":49},"1.0.0","Bash(node *expo-ui\u002Fscripts\u002Flist-components.js *)",{"type":51,"children":52},"root",[53,71,82,106,113,152,188,208,214,219,415,469,475,480,490,496,501,569,574],{"type":54,"tag":55,"props":56,"children":58},"element","h1",{"id":57},"expo-ui-expoui",[59,62,69],{"type":60,"value":61},"text","Expo UI (",{"type":54,"tag":63,"props":64,"children":66},"code",{"className":65},[],[67],{"type":60,"value":68},"@expo\u002Fui",{"type":60,"value":70},")",{"type":54,"tag":72,"props":73,"children":74},"p",{},[75,80],{"type":54,"tag":63,"props":76,"children":78},{"className":77},[],[79],{"type":60,"value":68},{"type":60,"value":81}," renders real native UI from React: SwiftUI on iOS, Jetpack Compose on Android. Start with its universal components (one tree for iOS, Android, and web) and drop to platform-specific SwiftUI\u002FJetpack Compose only when the universal layer falls short. It also ships drop-in replacements for migrating off RN community UI libraries.",{"type":54,"tag":83,"props":84,"children":85},"blockquote",{},[86],{"type":54,"tag":72,"props":87,"children":88},{},[89,91,97,99,104],{"type":60,"value":90},"These instructions track the latest Expo SDK. The ",{"type":54,"tag":92,"props":93,"children":94},"strong",{},[95],{"type":60,"value":96},"universal",{"type":60,"value":98}," layer requires ",{"type":54,"tag":92,"props":100,"children":101},{},[102],{"type":60,"value":103},"SDK 56+",{"type":60,"value":105},". Drop-in replacements and the platform-specific layers also exist on SDK 55. For component details on a specific SDK, refer to the Expo UI docs for that version.",{"type":54,"tag":107,"props":108,"children":110},"h2",{"id":109},"installation",[111],{"type":60,"value":112},"Installation",{"type":54,"tag":114,"props":115,"children":120},"pre",{"className":116,"code":117,"language":118,"meta":119,"style":119},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx expo install @expo\u002Fui\n","bash","",[121],{"type":54,"tag":63,"props":122,"children":123},{"__ignoreMap":119},[124],{"type":54,"tag":125,"props":126,"children":129},"span",{"class":127,"line":128},"line",1,[130,136,142,147],{"type":54,"tag":125,"props":131,"children":133},{"style":132},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[134],{"type":60,"value":135},"npx",{"type":54,"tag":125,"props":137,"children":139},{"style":138},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[140],{"type":60,"value":141}," expo",{"type":54,"tag":125,"props":143,"children":144},{"style":138},[145],{"type":60,"value":146}," install",{"type":54,"tag":125,"props":148,"children":149},{"style":138},[150],{"type":60,"value":151}," @expo\u002Fui\n",{"type":54,"tag":72,"props":153,"children":154},{},[155,157,162,164,170,172,178,180,186],{"type":60,"value":156},"On SDK 56, ",{"type":54,"tag":63,"props":158,"children":160},{"className":159},[],[161],{"type":60,"value":68},{"type":60,"value":163}," works in Expo Go, so ",{"type":54,"tag":63,"props":165,"children":167},{"className":166},[],[168],{"type":60,"value":169},"npx expo start",{"type":60,"value":171}," runs it directly — no custom build required. On older SDKs, build a dev client first (",{"type":54,"tag":63,"props":173,"children":175},{"className":174},[],[176],{"type":60,"value":177},"npx expo run:ios",{"type":60,"value":179}," \u002F ",{"type":54,"tag":63,"props":181,"children":183},{"className":182},[],[184],{"type":60,"value":185},"npx expo run:android",{"type":60,"value":187},").",{"type":54,"tag":72,"props":189,"children":190},{},[191,193,198,200,206],{"type":60,"value":192},"Every ",{"type":54,"tag":63,"props":194,"children":196},{"className":195},[],[197],{"type":60,"value":68},{"type":60,"value":199}," tree — universal or platform-specific — must be wrapped in ",{"type":54,"tag":63,"props":201,"children":203},{"className":202},[],[204],{"type":60,"value":205},"Host",{"type":60,"value":207},".",{"type":54,"tag":107,"props":209,"children":211},{"id":210},"choosing-an-approach-read-this-first",[212],{"type":60,"value":213},"Choosing an approach (read this first)",{"type":54,"tag":72,"props":215,"children":216},{},[217],{"type":60,"value":218},"Work down this list and stop at the first layer that meets the need:",{"type":54,"tag":220,"props":221,"children":222},"ol",{},[223,263],{"type":54,"tag":224,"props":225,"children":226},"li",{},[227,232,234,239,241,247,249,255,257],{"type":54,"tag":92,"props":228,"children":229},{},[230],{"type":60,"value":231},"Universal components — start here.",{"type":60,"value":233}," Import from the ",{"type":54,"tag":63,"props":235,"children":237},{"className":236},[],[238],{"type":60,"value":68},{"type":60,"value":240}," root. One component tree runs unmodified on iOS, Android, and web from a single source (Compose on Android, SwiftUI on iOS, ",{"type":54,"tag":63,"props":242,"children":244},{"className":243},[],[245],{"type":60,"value":246},"react-native-web",{"type":60,"value":248},"\u002F",{"type":54,"tag":63,"props":250,"children":252},{"className":251},[],[253],{"type":60,"value":254},"react-dom",{"type":60,"value":256}," on web). No platform file splits. → ",{"type":54,"tag":63,"props":258,"children":260},{"className":259},[],[261],{"type":60,"value":262},".\u002Freferences\u002Funiversal.md",{"type":54,"tag":224,"props":264,"children":265},{},[266,271,273,279,281,287,289,294,296,301,303,309,310,316,318,324,326],{"type":54,"tag":92,"props":267,"children":268},{},[269],{"type":60,"value":270},"Platform-specific (SwiftUI \u002F Jetpack Compose).",{"type":60,"value":272}," Import from ",{"type":54,"tag":63,"props":274,"children":276},{"className":275},[],[277],{"type":60,"value":278},"@expo\u002Fui\u002Fswift-ui",{"type":60,"value":280}," or ",{"type":54,"tag":63,"props":282,"children":284},{"className":283},[],[285],{"type":60,"value":286},"@expo\u002Fui\u002Fjetpack-compose",{"type":60,"value":288},". Use ",{"type":54,"tag":92,"props":290,"children":291},{},[292],{"type":60,"value":293},"only",{"type":60,"value":295}," when the universal layer is missing a component or modifier you need, or when you need platform-specific behavior or optimization. ",{"type":54,"tag":92,"props":297,"children":298},{},[299],{"type":60,"value":300},"Downside:",{"type":60,"value":302}," you write two trees and split them into ",{"type":54,"tag":63,"props":304,"children":306},{"className":305},[],[307],{"type":60,"value":308},".ios.tsx",{"type":60,"value":179},{"type":54,"tag":63,"props":311,"children":313},{"className":312},[],[314],{"type":60,"value":315},".android.tsx",{"type":60,"value":317}," files (or branch on ",{"type":54,"tag":63,"props":319,"children":321},{"className":320},[],[322],{"type":60,"value":323},"Platform.OS",{"type":60,"value":325},") — more code to maintain.",{"type":54,"tag":83,"props":327,"children":328},{},[329],{"type":54,"tag":72,"props":330,"children":331},{},[332,349,351,356,357,362,364,370,372,378,380,385,387,392,394,399,401,407,409],{"type":54,"tag":92,"props":333,"children":334},{},[335,340,342,347],{"type":54,"tag":63,"props":336,"children":338},{"className":337},[],[339],{"type":60,"value":278},{"type":60,"value":341}," is iOS-only. ",{"type":54,"tag":63,"props":343,"children":345},{"className":344},[],[346],{"type":60,"value":286},{"type":60,"value":348}," is Android-only.",{"type":60,"value":350}," Importing either in a file that runs on the other platform will crash at runtime with \"Unable to get view config\" errors. Isolate platform-specific trees in ",{"type":54,"tag":63,"props":352,"children":354},{"className":353},[],[355],{"type":60,"value":308},{"type":60,"value":179},{"type":54,"tag":63,"props":358,"children":360},{"className":359},[],[361],{"type":60,"value":315},{"type":60,"value":363}," files placed in ",{"type":54,"tag":63,"props":365,"children":367},{"className":366},[],[368],{"type":60,"value":369},"components\u002F",{"type":60,"value":371}," (never inside ",{"type":54,"tag":63,"props":373,"children":375},{"className":374},[],[376],{"type":60,"value":377},"app\u002F",{"type":60,"value":379}," — Expo Router does not support platform extensions for route files), or guard with ",{"type":54,"tag":63,"props":381,"children":383},{"className":382},[],[384],{"type":60,"value":323},{"type":60,"value":386}," in a regular route file. ",{"type":54,"tag":63,"props":388,"children":390},{"className":389},[],[391],{"type":60,"value":205},{"type":60,"value":393}," must always be imported from ",{"type":54,"tag":63,"props":395,"children":397},{"className":396},[],[398],{"type":60,"value":68},{"type":60,"value":400}," (the universal package root), not from the platform-specific sub-packages. → ",{"type":54,"tag":63,"props":402,"children":404},{"className":403},[],[405],{"type":60,"value":406},".\u002Freferences\u002Fswift-ui.md",{"type":60,"value":408}," and ",{"type":54,"tag":63,"props":410,"children":412},{"className":411},[],[413],{"type":60,"value":414},".\u002Freferences\u002Fjetpack-compose.md",{"type":54,"tag":72,"props":416,"children":417},{},[418,423,425,430,432,437,439,445,447,453,455,461,463],{"type":54,"tag":92,"props":419,"children":420},{},[421],{"type":60,"value":422},"Already using an RN community UI library?",{"type":60,"value":424}," ",{"type":54,"tag":63,"props":426,"children":428},{"className":427},[],[429],{"type":60,"value":68},{"type":60,"value":431}," also ships ",{"type":54,"tag":92,"props":433,"children":434},{},[435],{"type":60,"value":436},"drop-in replacements",{"type":60,"value":438}," — API-compatible swaps for popular libraries (",{"type":54,"tag":63,"props":440,"children":442},{"className":441},[],[443],{"type":60,"value":444},"@gorhom\u002Fbottom-sheet",{"type":60,"value":446},", ",{"type":54,"tag":63,"props":448,"children":450},{"className":449},[],[451],{"type":60,"value":452},"@react-native-community\u002Fdatetimepicker",{"type":60,"value":454},", and more), imported from ",{"type":54,"tag":63,"props":456,"children":458},{"className":457},[],[459],{"type":60,"value":460},"@expo\u002Fui\u002Fcommunity\u002F\u003Cname>",{"type":60,"value":462},". This is a migration side-path for replacing an existing dependency, not a step in the universal-vs-platform decision above. → ",{"type":54,"tag":63,"props":464,"children":466},{"className":465},[],[467],{"type":60,"value":468},".\u002Freferences\u002Fdrop-in-replacements.md",{"type":54,"tag":107,"props":470,"children":472},{"id":471},"references",[473],{"type":60,"value":474},"References",{"type":54,"tag":72,"props":476,"children":477},{},[478],{"type":60,"value":479},"Consult these resources as needed:",{"type":54,"tag":114,"props":481,"children":485},{"className":482,"code":484,"language":60},[483],"language-text","references\u002F\n  universal.md             Universal @expo\u002Fui components and when to use them (SDK 56+)\n  drop-in-replacements.md  API-compatible replacements for RN community UI libraries\n  swift-ui.md              Platform-specific iOS UI: @expo\u002Fui\u002Fswift-ui components, modifiers, RNHostView, useNativeState\n  jetpack-compose.md       Platform-specific Android UI: @expo\u002Fui\u002Fjetpack-compose components, modifiers, LazyColumn caveat, icons, useNativeState\n",[486],{"type":54,"tag":63,"props":487,"children":488},{"__ignoreMap":119},[489],{"type":60,"value":484},{"type":54,"tag":107,"props":491,"children":493},{"id":492},"submitting-feedback",[494],{"type":60,"value":495},"Submitting Feedback",{"type":54,"tag":72,"props":497,"children":498},{},[499],{"type":60,"value":500},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":54,"tag":114,"props":502,"children":504},{"className":116,"code":503,"language":118,"meta":119,"style":119},"npx --yes submit-expo-feedback@latest --category skills --subject \"expo-ui\" \"\u003Cactionable feedback>\"\n",[505],{"type":54,"tag":63,"props":506,"children":507},{"__ignoreMap":119},[508],{"type":54,"tag":125,"props":509,"children":510},{"class":127,"line":128},[511,515,520,525,530,535,540,546,550,555,559,564],{"type":54,"tag":125,"props":512,"children":513},{"style":132},[514],{"type":60,"value":135},{"type":54,"tag":125,"props":516,"children":517},{"style":138},[518],{"type":60,"value":519}," --yes",{"type":54,"tag":125,"props":521,"children":522},{"style":138},[523],{"type":60,"value":524}," submit-expo-feedback@latest",{"type":54,"tag":125,"props":526,"children":527},{"style":138},[528],{"type":60,"value":529}," --category",{"type":54,"tag":125,"props":531,"children":532},{"style":138},[533],{"type":60,"value":534}," skills",{"type":54,"tag":125,"props":536,"children":537},{"style":138},[538],{"type":60,"value":539}," --subject",{"type":54,"tag":125,"props":541,"children":543},{"style":542},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[544],{"type":60,"value":545}," \"",{"type":54,"tag":125,"props":547,"children":548},{"style":138},[549],{"type":60,"value":4},{"type":54,"tag":125,"props":551,"children":552},{"style":542},[553],{"type":60,"value":554},"\"",{"type":54,"tag":125,"props":556,"children":557},{"style":542},[558],{"type":60,"value":545},{"type":54,"tag":125,"props":560,"children":561},{"style":138},[562],{"type":60,"value":563},"\u003Cactionable feedback>",{"type":54,"tag":125,"props":565,"children":566},{"style":542},[567],{"type":60,"value":568},"\"\n",{"type":54,"tag":72,"props":570,"children":571},{},[572],{"type":60,"value":573},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":54,"tag":575,"props":576,"children":577},"style",{},[578],{"type":60,"value":579},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":581,"total":751},[582,596,611,624,638,652,670,681,696,714,729,740],{"slug":583,"name":583,"fn":584,"description":585,"org":586,"tags":587,"stars":35,"repoUrl":36,"updatedAt":595},"eas-app-stores","deploy and submit Expo apps to stores","EAS service (paid). Deploy Expo apps to the app stores with EAS - build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[588,589,592,593,594],{"name":20,"slug":21,"type":15},{"name":590,"slug":591,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},"2026-07-24T05:36:44.164663",{"slug":597,"name":597,"fn":598,"description":599,"org":600,"tags":601,"stars":35,"repoUrl":36,"updatedAt":610},"eas-hosting","deploy Expo websites to EAS Hosting","EAS service (paid). Deploy Expo websites and Expo Router API routes to EAS Hosting - export the web bundle, run eas deploy for production and PR preview URLs, manage environment secrets and custom domains, and work within the Cloudflare Workers runtime. Also covers authoring API routes (+api.ts handlers, HTTP methods, request handling, CORS). Use when deploying an Expo web app or API routes, setting up EAS Hosting, or configuring hosting environments and domains. Not for native builds or store releases - use the eas-app-stores skill for those.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[602,603,604,607],{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":605,"slug":606,"type":15},"Frontend","frontend",{"name":608,"slug":609,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":612,"name":612,"fn":613,"description":614,"org":615,"tags":616,"stars":35,"repoUrl":36,"updatedAt":623},"eas-observe","configure EAS Observe for Expo apps","EAS service (paid). Use for anything related to EAS Observe - adding `expo-observe` to an Expo project (AppMetricsRoot\u002FObserveRoot HOC, markInteractive, the useObserve hook, the Expo Router \u002F React Navigation integrations for per-route metrics, and user-defined events via `Observe.logEvent`), querying via the EAS CLI (`eas observe:metrics-summary`, `observe:metrics`, `observe:routes`, `observe:events`, `observe:versions`), or interpreting the resulting metrics (cold\u002Fwarm launch, TTR, TTI, navigation cold\u002Fwarm TTR, update download, and the TTI frameRate params for triaging slow startups).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[617,618,619,622],{"name":9,"slug":8,"type":15},{"name":27,"slug":28,"type":15},{"name":620,"slug":621,"type":15},"Observability","observability",{"name":17,"slug":18,"type":15},"2026-07-24T05:36:45.220605",{"slug":625,"name":625,"fn":626,"description":627,"org":628,"tags":629,"stars":35,"repoUrl":36,"updatedAt":637},"eas-simulator","run and control remote iOS and Android simulators","EAS service (paid). Run and control a user's app on a remote iOS\u002FAndroid simulator hosted on EAS cloud. Read before running any `eas simulator:*` commands - it has the current syntax for this experimental API. Use whenever the user needs a simulator they can't run locally - 'run my app on a cloud simulator', 'use eas simulator to run\u002Finstall\u002Fscreenshot my app', 'I'm on Linux\u002FCursor and need an iOS device', 'no sim on this box \u002F headless CI', 'let an agent click through my app and screenshot it', 'test my dev build on a remote sim with live reload', 'stream a sim to my browser' - even when they don't say 'EAS Simulator' or 'cloud'. On a host WITHOUT a local simulator (Linux, CI, cloud sandbox) it's the default; on macOS, do NOT auto-trigger for a plain 'run on the simulator' - use it only for a cloud\u002Fremote\u002Fshareable sim, an iOS version they lack, or an agent-driven session. NOT for local sims (expo run:ios, Xcode, Android Studio), EAS Build\u002FUpdate, web preview, or physical devices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[630,631,634,635,636],{"name":20,"slug":21,"type":15},{"name":632,"slug":633,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},"2026-07-31T05:52:18.602058",{"slug":639,"name":639,"fn":640,"description":641,"org":642,"tags":643,"stars":35,"repoUrl":36,"updatedAt":651},"eas-update-insights","check health of EAS Updates","EAS service (paid). Check the health of published EAS Update: crash rates, install\u002Flaunch counts, unique users, payload size, and the split between embedded and OTA users per channel. Use when the user asks how an update is performing, whether a rollout is healthy, how many users are on the embedded build vs OTA, or wants to gate CI on update health.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[644,647,648,649,650],{"name":645,"slug":646,"type":15},"Analytics","analytics",{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":27,"slug":28,"type":15},{"name":620,"slug":621,"type":15},"2026-07-24T05:36:50.17095",{"slug":653,"name":653,"fn":654,"description":655,"org":656,"tags":657,"stars":35,"repoUrl":36,"updatedAt":669},"eas-workflows","configure EAS workflows for Expo projects","EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI\u002FCD or workflows in an Expo or EAS context, mentions .eas\u002Fworkflows\u002F, or wants help with EAS build pipelines or deployment automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[658,661,664,665,666],{"name":659,"slug":660,"type":15},"Automation","automation",{"name":662,"slug":663,"type":15},"CI\u002FCD","ci-cd",{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":667,"slug":668,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":671,"name":671,"fn":672,"description":673,"org":674,"tags":675,"stars":35,"repoUrl":36,"updatedAt":680},"expo-app-clip","add iOS App Clip targets to Expo","Framework (OSS). Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[676,677,678,679],{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},{"name":17,"slug":18,"type":15},"2026-07-24T05:36:46.195935",{"slug":682,"name":682,"fn":683,"description":684,"org":685,"tags":686,"stars":35,"repoUrl":36,"updatedAt":695},"expo-brownfield","integrate Expo and React Native into native apps","Framework (OSS). Integrate Expo and React Native into an existing native iOS or Android app. Use when the user mentions brownfield, embedding React Native in a native app, AAR\u002FXCFramework, or adding Expo to an existing Kotlin\u002FSwift project. Covers both the isolated approach and the integrated approach.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[687,688,689,692,693,694],{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},{"name":690,"slug":691,"type":15},"Integrations","integrations",{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},{"name":17,"slug":18,"type":15},"2026-07-24T05:36:39.682299",{"slug":697,"name":697,"fn":698,"description":699,"org":700,"tags":701,"stars":35,"repoUrl":36,"updatedAt":713},"expo-data-fetching","fetch and manage data in Expo apps","Framework (OSS). Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, React Query, SWR, error handling, caching, offline support, and Expo Router data loaders (`useLoaderData`).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[702,705,708,709,710],{"name":703,"slug":704,"type":15},"API Development","api-development",{"name":706,"slug":707,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":27,"slug":28,"type":15},{"name":711,"slug":712,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":715,"name":715,"fn":716,"description":717,"org":718,"tags":719,"stars":35,"repoUrl":36,"updatedAt":728},"expo-dev-client","build and distribute Expo development clients","Framework (OSS). Build and distribute Expo development clients locally or via TestFlight for internal testing. For production TestFlight releases and store submission, use the eas-app-stores skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[720,721,722,723,724,727],{"name":20,"slug":21,"type":15},{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":725,"slug":726,"type":15},"Local Development","local-development",{"name":27,"slug":28,"type":15},"2026-07-24T05:36:51.160719",{"slug":730,"name":730,"fn":731,"description":732,"org":733,"tags":734,"stars":35,"repoUrl":36,"updatedAt":739},"expo-dom","run web components in native apps","Framework (OSS). Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally. For the end-to-end migration of a whole web app, use the expo-web-to-native skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[735,736,737,738],{"name":9,"slug":8,"type":15},{"name":605,"slug":606,"type":15},{"name":27,"slug":28,"type":15},{"name":17,"slug":18,"type":15},"2026-07-24T05:36:41.176872",{"slug":741,"name":741,"fn":742,"description":743,"org":744,"tags":745,"stars":35,"repoUrl":36,"updatedAt":750},"expo-examples","integrate Expo example projects","Framework (OSS). Expo's official example projects - the expo\u002Fexamples repo of ~70 `with-*` integrations (Stripe, Clerk, Supabase, OpenAI, maps, Reanimated, SQLite, Skia, NativeWind, and more). Use when integrating a third-party library or service into an existing Expo app and you want the canonical, version-matched pattern to adapt, or when scaffolding a new project from one with `npx create-expo --example`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[746,747,748,749],{"name":9,"slug":8,"type":15},{"name":690,"slug":691,"type":15},{"name":27,"slug":28,"type":15},{"name":17,"slug":18,"type":15},"2026-07-24T05:36:35.174379",24,{"items":753,"total":807},[754,762,769,776,784,792,800],{"slug":583,"name":583,"fn":584,"description":585,"org":755,"tags":756,"stars":35,"repoUrl":36,"updatedAt":595},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[757,758,759,760,761],{"name":20,"slug":21,"type":15},{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},{"slug":597,"name":597,"fn":598,"description":599,"org":763,"tags":764,"stars":35,"repoUrl":36,"updatedAt":610},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[765,766,767,768],{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":605,"slug":606,"type":15},{"name":608,"slug":609,"type":15},{"slug":612,"name":612,"fn":613,"description":614,"org":770,"tags":771,"stars":35,"repoUrl":36,"updatedAt":623},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[772,773,774,775],{"name":9,"slug":8,"type":15},{"name":27,"slug":28,"type":15},{"name":620,"slug":621,"type":15},{"name":17,"slug":18,"type":15},{"slug":625,"name":625,"fn":626,"description":627,"org":777,"tags":778,"stars":35,"repoUrl":36,"updatedAt":637},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[779,780,781,782,783],{"name":20,"slug":21,"type":15},{"name":632,"slug":633,"type":15},{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},{"slug":639,"name":639,"fn":640,"description":641,"org":785,"tags":786,"stars":35,"repoUrl":36,"updatedAt":651},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[787,788,789,790,791],{"name":645,"slug":646,"type":15},{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":27,"slug":28,"type":15},{"name":620,"slug":621,"type":15},{"slug":653,"name":653,"fn":654,"description":655,"org":793,"tags":794,"stars":35,"repoUrl":36,"updatedAt":669},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[795,796,797,798,799],{"name":659,"slug":660,"type":15},{"name":662,"slug":663,"type":15},{"name":590,"slug":591,"type":15},{"name":9,"slug":8,"type":15},{"name":667,"slug":668,"type":15},{"slug":671,"name":671,"fn":672,"description":673,"org":801,"tags":802,"stars":35,"repoUrl":36,"updatedAt":680},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[803,804,805,806],{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},{"name":27,"slug":28,"type":15},{"name":17,"slug":18,"type":15},22]