[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-overview":3,"mdc--xdhhzp-key":34,"related-org-expo-expo-overview":1065,"related-repo-expo-expo-overview":1234},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"expo-overview","manage Expo and EAS development tasks","Framework (OSS). Entry point and router for every Expo or EAS task. Load this skill first — before writing code and before choosing another expo-* \u002F eas-* skill — when the request, PRD, or spec mentions Expo, EAS, Expo Go, or an expo-* package, or the project has an `expo` dependency in `package.json`. Within that gate it also covers app specs and designs to implement (tabs, stacks, maps, lists, navigation, building from a screenshot), and phrasings like 'implement a mobile app', 'make my app look native', 'add navigation', 'fetch some data', 'upgrade my SDK', 'add Expo to my existing native app', 'ship to the App Store', or 'I'm new to Expo, where do I start'. A fully specified request (SDK pinned, libraries named, layout given) still routes through here — the shared setup rules still apply. Do NOT load it when neither signal is present: a bare React Native project with no `expo` dependency is not Expo work. Detects the real goal, routes to the right expo-* \u002F eas-* skill, and owns the shared setup rules.",{"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,17,20],{"name":13,"slug":14,"type":15},"React Native","react-native","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Mobile","mobile",{"name":21,"slug":22,"type":15},"Deployment","deployment",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-08-22T03:57:59.044899","MIT",111,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"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-overview","---\nname: expo-overview\ndescription: \"Framework (OSS). Entry point and router for every Expo or EAS task. Load this skill first — before writing code and before choosing another expo-* \u002F eas-* skill — when the request, PRD, or spec mentions Expo, EAS, Expo Go, or an expo-* package, or the project has an `expo` dependency in `package.json`. Within that gate it also covers app specs and designs to implement (tabs, stacks, maps, lists, navigation, building from a screenshot), and phrasings like 'implement a mobile app', 'make my app look native', 'add navigation', 'fetch some data', 'upgrade my SDK', 'add Expo to my existing native app', 'ship to the App Store', or 'I'm new to Expo, where do I start'. A fully specified request (SDK pinned, libraries named, layout given) still routes through here — the shared setup rules still apply. Do NOT load it when neither signal is present: a bare React Native project with no `expo` dependency is not Expo work. Detects the real goal, routes to the right expo-* \u002F eas-* skill, and owns the shared setup rules.\"\nversion: 1.0.0\nlicense: MIT\n---\n\n# `expo-overview` — router & shared rules for Expo \u002F EAS\n\n## Start Here — read before doing anything\n\n**Do not guess the skill from project files alone.** Many Expo goals look similar from\nthe filesystem but need different skills.\n\n1. **Confirm this is Expo work** — the request mentions Expo, or `package.json` has an\n   `expo` dependency. If neither holds, stop: this skill does not apply. A bare React\n   Native project with no `expo` dependency is not Expo work.\n2. **Read the user's goal** — what outcome do they want, in plain terms?\n3. **Classify it** using the Skill Map below, translating casual phrasing to a goal.\n4. **Confirm intent** if ambiguous (\"Sounds like you want to ship to the stores — that's\n   `eas-app-stores`. Right?\"), then load that skill's `SKILL.md` and follow it.\n5. **Trust the leaf skill** — it has its own detection logic and steps. Don't improvise.\n\n## Skill Map (by goal)\n\nMatch the goal to a category, then the skill, then load that leaf's `SKILL.md`.\n\n**Build the app**\n- `expo-project-structure` — folder layout for a **new** Expo Router project: where screens, components, and config live (never restructure an existing app to match)\n- `expo-native-ui` — screens, styling, semantic colors, native controls, SF Symbols, media, animations, layout\n- `expo-router` — navigation: file-based routes, tabs \u002F stacks \u002F modals \u002F sheets, links, headers\n- `expo-animation` — motion and gestures: Reanimated worklets, Gesture Handler, screen transitions, sheet and press feedback, haptics, and fixing animation that stutters on device\n- `expo-ui` — native UI components via `@expo\u002Fui`: BottomSheet, Picker, Slider, Switch, Menu, Button, FieldGroup (grouped form sections), List \u002F ListItem, and more — real SwiftUI on iOS, Jetpack Compose on Android. The universal layer needs SDK 56+ and runs in Expo Go; the drop-in replacements (`@gorhom\u002Fbottom-sheet`, `datetimepicker`, …) and platform-specific layers also exist on SDK 55.\n- `expo-design-system` — one visual source of truth: design tokens (color, spacing, typography, radius, shadow, motion), reusable component conventions, and audits for drift (hardcoded colors, spacing, fonts)\n- `expo-tailwind-setup` — Tailwind \u002F NativeWind styling\n- `expo-data-fetching` — network requests, React Query \u002F SWR, caching, offline, route loaders\n- `expo-dom` — run web code or reuse a web library inside native\n- `expo-web-to-native` — migrate an existing web \u002F React app to a native iOS \u002F Android app\n\n> **Component selection rule:** whenever you need a UI component (list rows, bottom sheets, pickers, sliders, menus, buttons, segmented controls, toggles), **consult `expo-ui` first** to check whether `@expo\u002Fui` has a native equivalent before reaching for a React Native built-in or a community library. Native `@expo\u002Fui` components give the best platform fit, and on SDK 56+ the universal ones run in Expo Go with no custom build. Load `expo-ui` alongside `expo-native-ui` for any app that renders lists, detail sheets, or form controls. One exception: `@expo\u002Fui` `List` renders native grouped rows (an iOS Settings screen), **not** a virtualized list — use `FlatList` \u002F `FlashList` for large datasets.\n\n**Ship & operate**\n- `eas-app-stores` — build and submit to the App Store \u002F Play Store \u002F TestFlight, versions, and store metadata\n- `eas-hosting` — deploy the web bundle to EAS Hosting; also author Expo Router API routes (`+api.ts` handlers) and their environments \u002F domains\n- `eas-workflows` — EAS Workflow YAML and CI\u002FCD pipelines\n- `eas-simulator` — run and drive the app on a remote iOS \u002F Android simulator on EAS cloud\n- `expo-dev-client` — custom development builds\n- `eas-update-insights` — OTA update health: crash rate, adoption, payload size\n- `eas-observe` — startup \u002F launch \u002F TTI performance with EAS Observe\n\n**Extend natively**\n- `expo-module` — native modules and views (Swift \u002F Kotlin) with the Expo Modules API\n- `expo-brownfield` — embed Expo \u002F React Native in an existing native app\n- `expo-app-clip` — iOS App Clip target (AASA, smart app banner)\n\n**Maintain & learn**\n- `expo-upgrade` — upgrade the Expo SDK and fix dependency conflicts\n- `expo-examples` — canonical, version-matched integration examples (Stripe, Clerk, Supabase, …)\n- `expo-skill-feedback` — send feedback on an Expo skill or on Expo itself; enable \u002F disable the anonymous usage telemetry\n\n### Translating vague asks\n\nSome everyday phrasings don't obviously map to a skill name — translate before routing:\n\n- \"Make it look native\" → grouped controls \u002F settings forms = `expo-ui`; screens, styling, animations = `expo-native-ui`; navigation = `expo-router`.\n- \"Make the screens consistent\" \u002F \"clean up the styling\" \u002F \"set up a theme or design tokens\" → `expo-design-system`.\n- \"Ship it\" \u002F \"get an .ipa or .apk\" \u002F \"release to the stores\" → `eas-app-stores` (build + submit, TestFlight, versions, store metadata).\n- \"I'm new \u002F where do I start\" → scaffold first (see Shared setup rules), then route by goal.\n\n## Shared setup rules\n\nThese apply across every Expo skill, so handle them here once instead of repeating them\nin each leaf.\n\n- **No Expo project yet?** Start one the standard way before routing to a feature skill:\n  `npx create-expo-app@latest`, laying out folders per `expo-project-structure`. Then\n  classify the user's goal and route.\n- **Detect the SDK version** before giving version-specific advice: read the `expo`\n  version in `package.json` (and `app.json` \u002F `app.config.{js,ts}`). Many APIs and\n  defaults differ by SDK.\n- **Read the docs for that SDK, not `latest`.** Use the version-pinned URL, e.g.\n  `https:\u002F\u002Fdocs.expo.dev\u002Fversions\u002Fv56.0.0\u002Fsdk\u002Fui\u002F` on SDK 56 instead of\n  `https:\u002F\u002Fdocs.expo.dev\u002Fversions\u002Flatest\u002Fsdk\u002Fui\u002F` — the `latest` pages track the newest\n  SDK and can document APIs the project does not have yet.\n- **Moving to a newer SDK is its own task** — load `expo-upgrade` instead of bumping\n  versions by hand.\n- **Managed vs. bare\u002Fprebuild**: the presence of committed `ios\u002F` and `android\u002F`\n  directories means native projects exist (prebuild or bare). Config-plugin and\n  native-setup steps differ — note which one the project is in.\n- **Install packages with `npx expo install \u003Cpkg>`**, not raw `npm`\u002F`yarn`\u002F`pnpm add`,\n  so versions stay compatible with the project's SDK.\n- **EAS auth & linking** (only needed for build\u002Fsubmit\u002Fupdate\u002Fobserve\u002Fworkflows): check\n  login with `eas whoami`, log in with `eas login`. A project is linked when\n  `extra.eas.projectId` exists in the app config; create it with `eas init` if missing.\n\n## When to skip the router hop\n\n- Only when the user explicitly named a specific `expo-*` \u002F `eas-*` skill → load that\n  skill directly.\n- A fully-specified task (SDK version pinned, file layout given, libraries named) is\n  **not** a reason to skip: the shared rules above still apply — check them, then route\n  to the matching leaf skill.\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-overview\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\nIf an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.\n",{"data":35,"body":37},{"name":4,"description":6,"version":36,"license":26},"1.0.0",{"type":38,"children":39},"root",[40,55,62,74,167,173,185,193,338,432,440,527,535,571,579,615,622,627,683,689,694,925,931,965,971,976,1054,1059],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"expo-overview-router-shared-rules-for-expo-eas",[46,53],{"type":41,"tag":47,"props":48,"children":50},"code",{"className":49},[],[51],{"type":52,"value":4},"text",{"type":52,"value":54}," — router & shared rules for Expo \u002F EAS",{"type":41,"tag":56,"props":57,"children":59},"h2",{"id":58},"start-here-read-before-doing-anything",[60],{"type":52,"value":61},"Start Here — read before doing anything",{"type":41,"tag":63,"props":64,"children":65},"p",{},[66,72],{"type":41,"tag":67,"props":68,"children":69},"strong",{},[70],{"type":52,"value":71},"Do not guess the skill from project files alone.",{"type":52,"value":73}," Many Expo goals look similar from\nthe filesystem but need different skills.",{"type":41,"tag":75,"props":76,"children":77},"ol",{},[78,111,121,131,157],{"type":41,"tag":79,"props":80,"children":81},"li",{},[82,87,89,95,97,102,104,109],{"type":41,"tag":67,"props":83,"children":84},{},[85],{"type":52,"value":86},"Confirm this is Expo work",{"type":52,"value":88}," — the request mentions Expo, or ",{"type":41,"tag":47,"props":90,"children":92},{"className":91},[],[93],{"type":52,"value":94},"package.json",{"type":52,"value":96}," has an\n",{"type":41,"tag":47,"props":98,"children":100},{"className":99},[],[101],{"type":52,"value":8},{"type":52,"value":103}," dependency. If neither holds, stop: this skill does not apply. A bare React\nNative project with no ",{"type":41,"tag":47,"props":105,"children":107},{"className":106},[],[108],{"type":52,"value":8},{"type":52,"value":110}," dependency is not Expo work.",{"type":41,"tag":79,"props":112,"children":113},{},[114,119],{"type":41,"tag":67,"props":115,"children":116},{},[117],{"type":52,"value":118},"Read the user's goal",{"type":52,"value":120}," — what outcome do they want, in plain terms?",{"type":41,"tag":79,"props":122,"children":123},{},[124,129],{"type":41,"tag":67,"props":125,"children":126},{},[127],{"type":52,"value":128},"Classify it",{"type":52,"value":130}," using the Skill Map below, translating casual phrasing to a goal.",{"type":41,"tag":79,"props":132,"children":133},{},[134,139,141,147,149,155],{"type":41,"tag":67,"props":135,"children":136},{},[137],{"type":52,"value":138},"Confirm intent",{"type":52,"value":140}," if ambiguous (\"Sounds like you want to ship to the stores — that's\n",{"type":41,"tag":47,"props":142,"children":144},{"className":143},[],[145],{"type":52,"value":146},"eas-app-stores",{"type":52,"value":148},". Right?\"), then load that skill's ",{"type":41,"tag":47,"props":150,"children":152},{"className":151},[],[153],{"type":52,"value":154},"SKILL.md",{"type":52,"value":156}," and follow it.",{"type":41,"tag":79,"props":158,"children":159},{},[160,165],{"type":41,"tag":67,"props":161,"children":162},{},[163],{"type":52,"value":164},"Trust the leaf skill",{"type":52,"value":166}," — it has its own detection logic and steps. Don't improvise.",{"type":41,"tag":56,"props":168,"children":170},{"id":169},"skill-map-by-goal",[171],{"type":52,"value":172},"Skill Map (by goal)",{"type":41,"tag":63,"props":174,"children":175},{},[176,178,183],{"type":52,"value":177},"Match the goal to a category, then the skill, then load that leaf's ",{"type":41,"tag":47,"props":179,"children":181},{"className":180},[],[182],{"type":52,"value":154},{"type":52,"value":184},".",{"type":41,"tag":63,"props":186,"children":187},{},[188],{"type":41,"tag":67,"props":189,"children":190},{},[191],{"type":52,"value":192},"Build the app",{"type":41,"tag":194,"props":195,"children":196},"ul",{},[197,215,226,237,248,283,294,305,316,327],{"type":41,"tag":79,"props":198,"children":199},{},[200,206,208,213],{"type":41,"tag":47,"props":201,"children":203},{"className":202},[],[204],{"type":52,"value":205},"expo-project-structure",{"type":52,"value":207}," — folder layout for a ",{"type":41,"tag":67,"props":209,"children":210},{},[211],{"type":52,"value":212},"new",{"type":52,"value":214}," Expo Router project: where screens, components, and config live (never restructure an existing app to match)",{"type":41,"tag":79,"props":216,"children":217},{},[218,224],{"type":41,"tag":47,"props":219,"children":221},{"className":220},[],[222],{"type":52,"value":223},"expo-native-ui",{"type":52,"value":225}," — screens, styling, semantic colors, native controls, SF Symbols, media, animations, layout",{"type":41,"tag":79,"props":227,"children":228},{},[229,235],{"type":41,"tag":47,"props":230,"children":232},{"className":231},[],[233],{"type":52,"value":234},"expo-router",{"type":52,"value":236}," — navigation: file-based routes, tabs \u002F stacks \u002F modals \u002F sheets, links, headers",{"type":41,"tag":79,"props":238,"children":239},{},[240,246],{"type":41,"tag":47,"props":241,"children":243},{"className":242},[],[244],{"type":52,"value":245},"expo-animation",{"type":52,"value":247}," — motion and gestures: Reanimated worklets, Gesture Handler, screen transitions, sheet and press feedback, haptics, and fixing animation that stutters on device",{"type":41,"tag":79,"props":249,"children":250},{},[251,257,259,265,267,273,275,281],{"type":41,"tag":47,"props":252,"children":254},{"className":253},[],[255],{"type":52,"value":256},"expo-ui",{"type":52,"value":258}," — native UI components via ",{"type":41,"tag":47,"props":260,"children":262},{"className":261},[],[263],{"type":52,"value":264},"@expo\u002Fui",{"type":52,"value":266},": BottomSheet, Picker, Slider, Switch, Menu, Button, FieldGroup (grouped form sections), List \u002F ListItem, and more — real SwiftUI on iOS, Jetpack Compose on Android. The universal layer needs SDK 56+ and runs in Expo Go; the drop-in replacements (",{"type":41,"tag":47,"props":268,"children":270},{"className":269},[],[271],{"type":52,"value":272},"@gorhom\u002Fbottom-sheet",{"type":52,"value":274},", ",{"type":41,"tag":47,"props":276,"children":278},{"className":277},[],[279],{"type":52,"value":280},"datetimepicker",{"type":52,"value":282},", …) and platform-specific layers also exist on SDK 55.",{"type":41,"tag":79,"props":284,"children":285},{},[286,292],{"type":41,"tag":47,"props":287,"children":289},{"className":288},[],[290],{"type":52,"value":291},"expo-design-system",{"type":52,"value":293}," — one visual source of truth: design tokens (color, spacing, typography, radius, shadow, motion), reusable component conventions, and audits for drift (hardcoded colors, spacing, fonts)",{"type":41,"tag":79,"props":295,"children":296},{},[297,303],{"type":41,"tag":47,"props":298,"children":300},{"className":299},[],[301],{"type":52,"value":302},"expo-tailwind-setup",{"type":52,"value":304}," — Tailwind \u002F NativeWind styling",{"type":41,"tag":79,"props":306,"children":307},{},[308,314],{"type":41,"tag":47,"props":309,"children":311},{"className":310},[],[312],{"type":52,"value":313},"expo-data-fetching",{"type":52,"value":315}," — network requests, React Query \u002F SWR, caching, offline, route loaders",{"type":41,"tag":79,"props":317,"children":318},{},[319,325],{"type":41,"tag":47,"props":320,"children":322},{"className":321},[],[323],{"type":52,"value":324},"expo-dom",{"type":52,"value":326}," — run web code or reuse a web library inside native",{"type":41,"tag":79,"props":328,"children":329},{},[330,336],{"type":41,"tag":47,"props":331,"children":333},{"className":332},[],[334],{"type":52,"value":335},"expo-web-to-native",{"type":52,"value":337}," — migrate an existing web \u002F React app to a native iOS \u002F Android app",{"type":41,"tag":339,"props":340,"children":341},"blockquote",{},[342],{"type":41,"tag":63,"props":343,"children":344},{},[345,350,352,364,366,371,373,378,380,385,387,392,394,399,401,407,409,414,416,422,424,430],{"type":41,"tag":67,"props":346,"children":347},{},[348],{"type":52,"value":349},"Component selection rule:",{"type":52,"value":351}," whenever you need a UI component (list rows, bottom sheets, pickers, sliders, menus, buttons, segmented controls, toggles), ",{"type":41,"tag":67,"props":353,"children":354},{},[355,357,362],{"type":52,"value":356},"consult ",{"type":41,"tag":47,"props":358,"children":360},{"className":359},[],[361],{"type":52,"value":256},{"type":52,"value":363}," first",{"type":52,"value":365}," to check whether ",{"type":41,"tag":47,"props":367,"children":369},{"className":368},[],[370],{"type":52,"value":264},{"type":52,"value":372}," has a native equivalent before reaching for a React Native built-in or a community library. Native ",{"type":41,"tag":47,"props":374,"children":376},{"className":375},[],[377],{"type":52,"value":264},{"type":52,"value":379}," components give the best platform fit, and on SDK 56+ the universal ones run in Expo Go with no custom build. Load ",{"type":41,"tag":47,"props":381,"children":383},{"className":382},[],[384],{"type":52,"value":256},{"type":52,"value":386}," alongside ",{"type":41,"tag":47,"props":388,"children":390},{"className":389},[],[391],{"type":52,"value":223},{"type":52,"value":393}," for any app that renders lists, detail sheets, or form controls. One exception: ",{"type":41,"tag":47,"props":395,"children":397},{"className":396},[],[398],{"type":52,"value":264},{"type":52,"value":400}," ",{"type":41,"tag":47,"props":402,"children":404},{"className":403},[],[405],{"type":52,"value":406},"List",{"type":52,"value":408}," renders native grouped rows (an iOS Settings screen), ",{"type":41,"tag":67,"props":410,"children":411},{},[412],{"type":52,"value":413},"not",{"type":52,"value":415}," a virtualized list — use ",{"type":41,"tag":47,"props":417,"children":419},{"className":418},[],[420],{"type":52,"value":421},"FlatList",{"type":52,"value":423}," \u002F ",{"type":41,"tag":47,"props":425,"children":427},{"className":426},[],[428],{"type":52,"value":429},"FlashList",{"type":52,"value":431}," for large datasets.",{"type":41,"tag":63,"props":433,"children":434},{},[435],{"type":41,"tag":67,"props":436,"children":437},{},[438],{"type":52,"value":439},"Ship & operate",{"type":41,"tag":194,"props":441,"children":442},{},[443,453,472,483,494,505,516],{"type":41,"tag":79,"props":444,"children":445},{},[446,451],{"type":41,"tag":47,"props":447,"children":449},{"className":448},[],[450],{"type":52,"value":146},{"type":52,"value":452}," — build and submit to the App Store \u002F Play Store \u002F TestFlight, versions, and store metadata",{"type":41,"tag":79,"props":454,"children":455},{},[456,462,464,470],{"type":41,"tag":47,"props":457,"children":459},{"className":458},[],[460],{"type":52,"value":461},"eas-hosting",{"type":52,"value":463}," — deploy the web bundle to EAS Hosting; also author Expo Router API routes (",{"type":41,"tag":47,"props":465,"children":467},{"className":466},[],[468],{"type":52,"value":469},"+api.ts",{"type":52,"value":471}," handlers) and their environments \u002F domains",{"type":41,"tag":79,"props":473,"children":474},{},[475,481],{"type":41,"tag":47,"props":476,"children":478},{"className":477},[],[479],{"type":52,"value":480},"eas-workflows",{"type":52,"value":482}," — EAS Workflow YAML and CI\u002FCD pipelines",{"type":41,"tag":79,"props":484,"children":485},{},[486,492],{"type":41,"tag":47,"props":487,"children":489},{"className":488},[],[490],{"type":52,"value":491},"eas-simulator",{"type":52,"value":493}," — run and drive the app on a remote iOS \u002F Android simulator on EAS cloud",{"type":41,"tag":79,"props":495,"children":496},{},[497,503],{"type":41,"tag":47,"props":498,"children":500},{"className":499},[],[501],{"type":52,"value":502},"expo-dev-client",{"type":52,"value":504}," — custom development builds",{"type":41,"tag":79,"props":506,"children":507},{},[508,514],{"type":41,"tag":47,"props":509,"children":511},{"className":510},[],[512],{"type":52,"value":513},"eas-update-insights",{"type":52,"value":515}," — OTA update health: crash rate, adoption, payload size",{"type":41,"tag":79,"props":517,"children":518},{},[519,525],{"type":41,"tag":47,"props":520,"children":522},{"className":521},[],[523],{"type":52,"value":524},"eas-observe",{"type":52,"value":526}," — startup \u002F launch \u002F TTI performance with EAS Observe",{"type":41,"tag":63,"props":528,"children":529},{},[530],{"type":41,"tag":67,"props":531,"children":532},{},[533],{"type":52,"value":534},"Extend natively",{"type":41,"tag":194,"props":536,"children":537},{},[538,549,560],{"type":41,"tag":79,"props":539,"children":540},{},[541,547],{"type":41,"tag":47,"props":542,"children":544},{"className":543},[],[545],{"type":52,"value":546},"expo-module",{"type":52,"value":548}," — native modules and views (Swift \u002F Kotlin) with the Expo Modules API",{"type":41,"tag":79,"props":550,"children":551},{},[552,558],{"type":41,"tag":47,"props":553,"children":555},{"className":554},[],[556],{"type":52,"value":557},"expo-brownfield",{"type":52,"value":559}," — embed Expo \u002F React Native in an existing native app",{"type":41,"tag":79,"props":561,"children":562},{},[563,569],{"type":41,"tag":47,"props":564,"children":566},{"className":565},[],[567],{"type":52,"value":568},"expo-app-clip",{"type":52,"value":570}," — iOS App Clip target (AASA, smart app banner)",{"type":41,"tag":63,"props":572,"children":573},{},[574],{"type":41,"tag":67,"props":575,"children":576},{},[577],{"type":52,"value":578},"Maintain & learn",{"type":41,"tag":194,"props":580,"children":581},{},[582,593,604],{"type":41,"tag":79,"props":583,"children":584},{},[585,591],{"type":41,"tag":47,"props":586,"children":588},{"className":587},[],[589],{"type":52,"value":590},"expo-upgrade",{"type":52,"value":592}," — upgrade the Expo SDK and fix dependency conflicts",{"type":41,"tag":79,"props":594,"children":595},{},[596,602],{"type":41,"tag":47,"props":597,"children":599},{"className":598},[],[600],{"type":52,"value":601},"expo-examples",{"type":52,"value":603}," — canonical, version-matched integration examples (Stripe, Clerk, Supabase, …)",{"type":41,"tag":79,"props":605,"children":606},{},[607,613],{"type":41,"tag":47,"props":608,"children":610},{"className":609},[],[611],{"type":52,"value":612},"expo-skill-feedback",{"type":52,"value":614}," — send feedback on an Expo skill or on Expo itself; enable \u002F disable the anonymous usage telemetry",{"type":41,"tag":616,"props":617,"children":619},"h3",{"id":618},"translating-vague-asks",[620],{"type":52,"value":621},"Translating vague asks",{"type":41,"tag":63,"props":623,"children":624},{},[625],{"type":52,"value":626},"Some everyday phrasings don't obviously map to a skill name — translate before routing:",{"type":41,"tag":194,"props":628,"children":629},{},[630,655,666,678],{"type":41,"tag":79,"props":631,"children":632},{},[633,635,640,642,647,649,654],{"type":52,"value":634},"\"Make it look native\" → grouped controls \u002F settings forms = ",{"type":41,"tag":47,"props":636,"children":638},{"className":637},[],[639],{"type":52,"value":256},{"type":52,"value":641},"; screens, styling, animations = ",{"type":41,"tag":47,"props":643,"children":645},{"className":644},[],[646],{"type":52,"value":223},{"type":52,"value":648},"; navigation = ",{"type":41,"tag":47,"props":650,"children":652},{"className":651},[],[653],{"type":52,"value":234},{"type":52,"value":184},{"type":41,"tag":79,"props":656,"children":657},{},[658,660,665],{"type":52,"value":659},"\"Make the screens consistent\" \u002F \"clean up the styling\" \u002F \"set up a theme or design tokens\" → ",{"type":41,"tag":47,"props":661,"children":663},{"className":662},[],[664],{"type":52,"value":291},{"type":52,"value":184},{"type":41,"tag":79,"props":667,"children":668},{},[669,671,676],{"type":52,"value":670},"\"Ship it\" \u002F \"get an .ipa or .apk\" \u002F \"release to the stores\" → ",{"type":41,"tag":47,"props":672,"children":674},{"className":673},[],[675],{"type":52,"value":146},{"type":52,"value":677}," (build + submit, TestFlight, versions, store metadata).",{"type":41,"tag":79,"props":679,"children":680},{},[681],{"type":52,"value":682},"\"I'm new \u002F where do I start\" → scaffold first (see Shared setup rules), then route by goal.",{"type":41,"tag":56,"props":684,"children":686},{"id":685},"shared-setup-rules",[687],{"type":52,"value":688},"Shared setup rules",{"type":41,"tag":63,"props":690,"children":691},{},[692],{"type":52,"value":693},"These apply across every Expo skill, so handle them here once instead of repeating them\nin each leaf.",{"type":41,"tag":194,"props":695,"children":696},{},[697,722,761,801,818,844,883],{"type":41,"tag":79,"props":698,"children":699},{},[700,705,707,713,715,720],{"type":41,"tag":67,"props":701,"children":702},{},[703],{"type":52,"value":704},"No Expo project yet?",{"type":52,"value":706}," Start one the standard way before routing to a feature skill:\n",{"type":41,"tag":47,"props":708,"children":710},{"className":709},[],[711],{"type":52,"value":712},"npx create-expo-app@latest",{"type":52,"value":714},", laying out folders per ",{"type":41,"tag":47,"props":716,"children":718},{"className":717},[],[719],{"type":52,"value":205},{"type":52,"value":721},". Then\nclassify the user's goal and route.",{"type":41,"tag":79,"props":723,"children":724},{},[725,730,732,737,739,744,746,752,753,759],{"type":41,"tag":67,"props":726,"children":727},{},[728],{"type":52,"value":729},"Detect the SDK version",{"type":52,"value":731}," before giving version-specific advice: read the ",{"type":41,"tag":47,"props":733,"children":735},{"className":734},[],[736],{"type":52,"value":8},{"type":52,"value":738},"\nversion in ",{"type":41,"tag":47,"props":740,"children":742},{"className":741},[],[743],{"type":52,"value":94},{"type":52,"value":745}," (and ",{"type":41,"tag":47,"props":747,"children":749},{"className":748},[],[750],{"type":52,"value":751},"app.json",{"type":52,"value":423},{"type":41,"tag":47,"props":754,"children":756},{"className":755},[],[757],{"type":52,"value":758},"app.config.{js,ts}",{"type":52,"value":760},"). Many APIs and\ndefaults differ by SDK.",{"type":41,"tag":79,"props":762,"children":763},{},[764,776,778,784,786,792,794,799],{"type":41,"tag":67,"props":765,"children":766},{},[767,769,775],{"type":52,"value":768},"Read the docs for that SDK, not ",{"type":41,"tag":47,"props":770,"children":772},{"className":771},[],[773],{"type":52,"value":774},"latest",{"type":52,"value":184},{"type":52,"value":777}," Use the version-pinned URL, e.g.\n",{"type":41,"tag":47,"props":779,"children":781},{"className":780},[],[782],{"type":52,"value":783},"https:\u002F\u002Fdocs.expo.dev\u002Fversions\u002Fv56.0.0\u002Fsdk\u002Fui\u002F",{"type":52,"value":785}," on SDK 56 instead of\n",{"type":41,"tag":47,"props":787,"children":789},{"className":788},[],[790],{"type":52,"value":791},"https:\u002F\u002Fdocs.expo.dev\u002Fversions\u002Flatest\u002Fsdk\u002Fui\u002F",{"type":52,"value":793}," — the ",{"type":41,"tag":47,"props":795,"children":797},{"className":796},[],[798],{"type":52,"value":774},{"type":52,"value":800}," pages track the newest\nSDK and can document APIs the project does not have yet.",{"type":41,"tag":79,"props":802,"children":803},{},[804,809,811,816],{"type":41,"tag":67,"props":805,"children":806},{},[807],{"type":52,"value":808},"Moving to a newer SDK is its own task",{"type":52,"value":810}," — load ",{"type":41,"tag":47,"props":812,"children":814},{"className":813},[],[815],{"type":52,"value":590},{"type":52,"value":817}," instead of bumping\nversions by hand.",{"type":41,"tag":79,"props":819,"children":820},{},[821,826,828,834,836,842],{"type":41,"tag":67,"props":822,"children":823},{},[824],{"type":52,"value":825},"Managed vs. bare\u002Fprebuild",{"type":52,"value":827},": the presence of committed ",{"type":41,"tag":47,"props":829,"children":831},{"className":830},[],[832],{"type":52,"value":833},"ios\u002F",{"type":52,"value":835}," and ",{"type":41,"tag":47,"props":837,"children":839},{"className":838},[],[840],{"type":52,"value":841},"android\u002F",{"type":52,"value":843},"\ndirectories means native projects exist (prebuild or bare). Config-plugin and\nnative-setup steps differ — note which one the project is in.",{"type":41,"tag":79,"props":845,"children":846},{},[847,858,860,866,868,874,875,881],{"type":41,"tag":67,"props":848,"children":849},{},[850,852],{"type":52,"value":851},"Install packages with ",{"type":41,"tag":47,"props":853,"children":855},{"className":854},[],[856],{"type":52,"value":857},"npx expo install \u003Cpkg>",{"type":52,"value":859},", not raw ",{"type":41,"tag":47,"props":861,"children":863},{"className":862},[],[864],{"type":52,"value":865},"npm",{"type":52,"value":867},"\u002F",{"type":41,"tag":47,"props":869,"children":871},{"className":870},[],[872],{"type":52,"value":873},"yarn",{"type":52,"value":867},{"type":41,"tag":47,"props":876,"children":878},{"className":877},[],[879],{"type":52,"value":880},"pnpm add",{"type":52,"value":882},",\nso versions stay compatible with the project's SDK.",{"type":41,"tag":79,"props":884,"children":885},{},[886,891,893,899,901,907,909,915,917,923],{"type":41,"tag":67,"props":887,"children":888},{},[889],{"type":52,"value":890},"EAS auth & linking",{"type":52,"value":892}," (only needed for build\u002Fsubmit\u002Fupdate\u002Fobserve\u002Fworkflows): check\nlogin with ",{"type":41,"tag":47,"props":894,"children":896},{"className":895},[],[897],{"type":52,"value":898},"eas whoami",{"type":52,"value":900},", log in with ",{"type":41,"tag":47,"props":902,"children":904},{"className":903},[],[905],{"type":52,"value":906},"eas login",{"type":52,"value":908},". A project is linked when\n",{"type":41,"tag":47,"props":910,"children":912},{"className":911},[],[913],{"type":52,"value":914},"extra.eas.projectId",{"type":52,"value":916}," exists in the app config; create it with ",{"type":41,"tag":47,"props":918,"children":920},{"className":919},[],[921],{"type":52,"value":922},"eas init",{"type":52,"value":924}," if missing.",{"type":41,"tag":56,"props":926,"children":928},{"id":927},"when-to-skip-the-router-hop",[929],{"type":52,"value":930},"When to skip the router hop",{"type":41,"tag":194,"props":932,"children":933},{},[934,954],{"type":41,"tag":79,"props":935,"children":936},{},[937,939,945,946,952],{"type":52,"value":938},"Only when the user explicitly named a specific ",{"type":41,"tag":47,"props":940,"children":942},{"className":941},[],[943],{"type":52,"value":944},"expo-*",{"type":52,"value":423},{"type":41,"tag":47,"props":947,"children":949},{"className":948},[],[950],{"type":52,"value":951},"eas-*",{"type":52,"value":953}," skill → load that\nskill directly.",{"type":41,"tag":79,"props":955,"children":956},{},[957,959,963],{"type":52,"value":958},"A fully-specified task (SDK version pinned, file layout given, libraries named) is\n",{"type":41,"tag":67,"props":960,"children":961},{},[962],{"type":52,"value":413},{"type":52,"value":964}," a reason to skip: the shared rules above still apply — check them, then route\nto the matching leaf skill.",{"type":41,"tag":56,"props":966,"children":968},{"id":967},"submitting-feedback",[969],{"type":52,"value":970},"Submitting Feedback",{"type":41,"tag":63,"props":972,"children":973},{},[974],{"type":52,"value":975},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":41,"tag":977,"props":978,"children":983},"pre",{"className":979,"code":980,"language":981,"meta":982,"style":982},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx --yes submit-expo-feedback@latest --category skills --subject \"expo-overview\" \"\u003Cactionable feedback>\"\n","bash","",[984],{"type":41,"tag":47,"props":985,"children":986},{"__ignoreMap":982},[987],{"type":41,"tag":988,"props":989,"children":992},"span",{"class":990,"line":991},"line",1,[993,999,1005,1010,1015,1020,1025,1031,1035,1040,1044,1049],{"type":41,"tag":988,"props":994,"children":996},{"style":995},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[997],{"type":52,"value":998},"npx",{"type":41,"tag":988,"props":1000,"children":1002},{"style":1001},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1003],{"type":52,"value":1004}," --yes",{"type":41,"tag":988,"props":1006,"children":1007},{"style":1001},[1008],{"type":52,"value":1009}," submit-expo-feedback@latest",{"type":41,"tag":988,"props":1011,"children":1012},{"style":1001},[1013],{"type":52,"value":1014}," --category",{"type":41,"tag":988,"props":1016,"children":1017},{"style":1001},[1018],{"type":52,"value":1019}," skills",{"type":41,"tag":988,"props":1021,"children":1022},{"style":1001},[1023],{"type":52,"value":1024}," --subject",{"type":41,"tag":988,"props":1026,"children":1028},{"style":1027},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1029],{"type":52,"value":1030}," \"",{"type":41,"tag":988,"props":1032,"children":1033},{"style":1001},[1034],{"type":52,"value":4},{"type":41,"tag":988,"props":1036,"children":1037},{"style":1027},[1038],{"type":52,"value":1039},"\"",{"type":41,"tag":988,"props":1041,"children":1042},{"style":1027},[1043],{"type":52,"value":1030},{"type":41,"tag":988,"props":1045,"children":1046},{"style":1001},[1047],{"type":52,"value":1048},"\u003Cactionable feedback>",{"type":41,"tag":988,"props":1050,"children":1051},{"style":1027},[1052],{"type":52,"value":1053},"\"\n",{"type":41,"tag":63,"props":1055,"children":1056},{},[1057],{"type":52,"value":1058},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.\nIf an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.",{"type":41,"tag":1060,"props":1061,"children":1062},"style",{},[1063],{"type":52,"value":1064},"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":1066,"total":1233},[1067,1082,1096,1108,1121,1134,1151,1164,1174,1188,1205,1219],{"slug":146,"name":146,"fn":1068,"description":1069,"org":1070,"tags":1071,"stars":23,"repoUrl":24,"updatedAt":1081},"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},[1072,1075,1076,1077,1080],{"name":1073,"slug":1074,"type":15},"Android","android",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},"iOS","ios",{"name":18,"slug":19,"type":15},"2026-08-06T05:38:27.496958",{"slug":461,"name":461,"fn":1083,"description":1084,"org":1085,"tags":1086,"stars":23,"repoUrl":24,"updatedAt":1095},"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},[1087,1088,1089,1092],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},"Frontend","frontend",{"name":1093,"slug":1094,"type":15},"Web Development","web-development","2026-08-06T05:38:23.520822",{"slug":524,"name":524,"fn":1097,"description":1098,"org":1099,"tags":1100,"stars":23,"repoUrl":24,"updatedAt":1107},"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 and ObserveInteractiveMarker, the useObserve hook, the Expo Router \u002F React Navigation integrations for per-route metrics, user-defined events via `Observe.logEvent`, error reporting via ObserveErrorBoundary and `Observe.reportError`, and runtime config such as sampleRate and dispatchInDebug), querying via the EAS CLI (`eas observe:metrics-summary`, `observe:metrics`, `observe:routes`, `observe:events`, `observe:session`, `observe:versions`), interpreting the resulting metrics (cold\u002Fwarm launch, TTR, TTI, navigation cold\u002Fwarm TTR, update download, and the TTI frameRate\u002Fdevice\u002Fnetwork params for triaging slow startups), or shipping an Observe integration inside a third-party package.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1101,1102,1103,1106],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1104,"slug":1105,"type":15},"Observability","observability",{"name":13,"slug":14,"type":15},"2026-08-16T03:31:47.802249",{"slug":491,"name":491,"fn":1109,"description":1110,"org":1111,"tags":1112,"stars":23,"repoUrl":24,"updatedAt":1120},"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},[1113,1114,1117,1118,1119],{"name":1073,"slug":1074,"type":15},{"name":1115,"slug":1116,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},{"name":18,"slug":19,"type":15},"2026-08-06T05:38:35.510759",{"slug":513,"name":513,"fn":1122,"description":1123,"org":1124,"tags":1125,"stars":23,"repoUrl":24,"updatedAt":1133},"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},[1126,1129,1130,1131,1132],{"name":1127,"slug":1128,"type":15},"Analytics","analytics",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1104,"slug":1105,"type":15},"2026-08-06T05:38:33.530661",{"slug":480,"name":480,"fn":1135,"description":1136,"org":1137,"tags":1138,"stars":23,"repoUrl":24,"updatedAt":1150},"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},[1139,1142,1145,1146,1147],{"name":1140,"slug":1141,"type":15},"Automation","automation",{"name":1143,"slug":1144,"type":15},"CI\u002FCD","ci-cd",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1148,"slug":1149,"type":15},"YAML","yaml","2026-08-16T03:31:46.821054",{"slug":245,"name":245,"fn":1152,"description":1153,"org":1154,"tags":1155,"stars":23,"repoUrl":24,"updatedAt":1163},"build animations in React Native and Expo","Framework (OSS). Build animations in React Native and Expo, making the decisions in the order that determines whether they feel right — should it animate, which thread it runs on, which properties, spring or timing, how the gesture hands off, how it degrades. Writes the implementation with Reanimated, Gesture Handler, Expo Router and expo-haptics. Use when animating anything in an Expo app, adding gestures, sheets, screen transitions, press feedback or haptics, or fixing motion that stutters on device. For web animation use `animate`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1156,1159,1160,1161,1162],{"name":1157,"slug":1158,"type":15},"Animation","animation",{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-08-19T03:58:54.679247",{"slug":568,"name":568,"fn":1165,"description":1166,"org":1167,"tags":1168,"stars":23,"repoUrl":24,"updatedAt":1173},"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},[1169,1170,1171,1172],{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-08-06T05:38:29.493721",{"slug":557,"name":557,"fn":1175,"description":1176,"org":1177,"tags":1178,"stars":23,"repoUrl":24,"updatedAt":1187},"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},[1179,1180,1181,1184,1185,1186],{"name":1073,"slug":1074,"type":15},{"name":9,"slug":8,"type":15},{"name":1182,"slug":1183,"type":15},"Integrations","integrations",{"name":1078,"slug":1079,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-08-06T05:38:22.505099",{"slug":313,"name":313,"fn":1189,"description":1190,"org":1191,"tags":1192,"stars":23,"repoUrl":24,"updatedAt":1204},"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},[1193,1196,1199,1200,1201],{"name":1194,"slug":1195,"type":15},"API Development","api-development",{"name":1197,"slug":1198,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1202,"slug":1203,"type":15},"React","react","2026-08-06T05:38:25.502479",{"slug":291,"name":291,"fn":1206,"description":1207,"org":1208,"tags":1209,"stars":23,"repoUrl":24,"updatedAt":1218},"build design systems for Expo apps","Framework (OSS). Build and maintain a design system inside an Expo app - a reusable theme of design tokens (color, spacing, typography, radius, shadow, motion), reusable component structure with variant\u002Fsize\u002Fstate prop conventions, and rules for when to extract a repeated view into a shared component. Use when creating or organizing theme files and design tokens (theme.ts \u002F theme\u002F), extending an existing theme or styling library (NativeWind, Tamagui, Restyle, Unistyles) in its own idiom, standardizing styles so screens (including AI-generated ones) look consistent and polished, building an in-app component library, or auditing an app for design-system drift (hardcoded colors, spacing, fonts). For platform styling specifics (semantic colors, HIG rules, native controls) use expo-native-ui; for Tailwind\u002FCSS setup use expo-tailwind-setup; for folder layout of a new app use expo-project-structure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1210,1213,1214,1215],{"name":1211,"slug":1212,"type":15},"Design System","design-system",{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":1216,"slug":1217,"type":15},"UI Components","ui-components","2026-08-16T04:01:07.139639",{"slug":502,"name":502,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":23,"repoUrl":24,"updatedAt":1232},"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},[1224,1225,1226,1227,1228,1231],{"name":1073,"slug":1074,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},{"name":1229,"slug":1230,"type":15},"Local Development","local-development",{"name":18,"slug":19,"type":15},"2026-08-06T05:38:34.517484",27,{"items":1235,"total":1290},[1236,1244,1251,1258,1266,1274,1282],{"slug":146,"name":146,"fn":1068,"description":1069,"org":1237,"tags":1238,"stars":23,"repoUrl":24,"updatedAt":1081},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1239,1240,1241,1242,1243],{"name":1073,"slug":1074,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},{"name":18,"slug":19,"type":15},{"slug":461,"name":461,"fn":1083,"description":1084,"org":1245,"tags":1246,"stars":23,"repoUrl":24,"updatedAt":1095},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1247,1248,1249,1250],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":1093,"slug":1094,"type":15},{"slug":524,"name":524,"fn":1097,"description":1098,"org":1252,"tags":1253,"stars":23,"repoUrl":24,"updatedAt":1107},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1254,1255,1256,1257],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1104,"slug":1105,"type":15},{"name":13,"slug":14,"type":15},{"slug":491,"name":491,"fn":1109,"description":1110,"org":1259,"tags":1260,"stars":23,"repoUrl":24,"updatedAt":1120},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1261,1262,1263,1264,1265],{"name":1073,"slug":1074,"type":15},{"name":1115,"slug":1116,"type":15},{"name":9,"slug":8,"type":15},{"name":1078,"slug":1079,"type":15},{"name":18,"slug":19,"type":15},{"slug":513,"name":513,"fn":1122,"description":1123,"org":1267,"tags":1268,"stars":23,"repoUrl":24,"updatedAt":1133},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1269,1270,1271,1272,1273],{"name":1127,"slug":1128,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1104,"slug":1105,"type":15},{"slug":480,"name":480,"fn":1135,"description":1136,"org":1275,"tags":1276,"stars":23,"repoUrl":24,"updatedAt":1150},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1277,1278,1279,1280,1281],{"name":1140,"slug":1141,"type":15},{"name":1143,"slug":1144,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":1148,"slug":1149,"type":15},{"slug":245,"name":245,"fn":1152,"description":1153,"org":1283,"tags":1284,"stars":23,"repoUrl":24,"updatedAt":1163},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1285,1286,1287,1288,1289],{"name":1157,"slug":1158,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},25]