[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-examples":3,"mdc--qy0c05-key":34,"related-repo-expo-expo-examples":1223,"related-org-expo-expo-examples":1329},{"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-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},"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},"Integrations","integrations",{"name":21,"slug":22,"type":15},"Mobile","mobile",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:35.174379","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-examples","---\nname: expo-examples\ndescription: 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`.\nallowed-tools: \"Read,Bash(gh api:*),Bash(git clone:*),Bash(npx create-expo:*),Bash(npx degit:*),Bash(bun create:*)\"\nversion: 1.0.0\nlicense: MIT\n---\n\n# Expo Examples\n\n[expo\u002Fexamples](https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples) is Expo's official library of ~70 **integration examples** — directories named `with-\u003Clibrary>` (e.g. `with-stripe`, `with-maps`), each built around **one** library or service. These are not full apps: they're **managed** projects (no `ios\u002F`\u002F`android\u002F` dirs — native setup is via config plugins), and the typical one is a **single screen of ~100–200 lines**. Mine them for the canonical integration *pattern* — the dependency set, `app.json` config plugins, and minimal wiring Expo maintains against the current SDK — and adapt that into the user's app. Don't expect to lift an application architecture from them.\n\nReach for an example before hand-rolling an integration. (Kinds — full-stack, showcases, starters — are noted in `.\u002Freferences\u002Fcatalog.md`.)\n\n## Two modes\n\n1. **Inspiration \u002F adapt** (most common) — the user already has a project. Find the matching example, read its key files, and apply the *pattern* to their code.\n2. **Scaffold** — greenfield. Start a fresh project directly from the example.\n\n## Workflow\n\n### 1. Find the right example\n\nMap the user's need to an example name (e.g. payments → `with-stripe`, auth → `with-clerk`). `.\u002Freferences\u002Fcatalog.md` is a categorized snapshot for fast triage — but it drifts, so confirm against the live list:\n\n```bash\n# Live example names:\ngh api repos\u002Fexpo\u002Fexamples\u002Fcontents --jq '.[] | select(.type==\"dir\" and (.name|startswith(\".\")|not)) | .name'\n# Aliases (renamed) + deprecated (dead\u002Fmoved) examples — check before recommending:\ngh api repos\u002Fexpo\u002Fexamples\u002Fcontents\u002Fmeta.json --jq '.content' | base64 -d\n```\n\n`meta.json` is the source of truth for what's renamed or dead (deprecated examples are removed from the repo tree but still listed here, each with a `message`). If an example is in its `deprecated` map, don't recommend it — follow the `message` to the modern path. If it's in `aliases`, use the `destination`.\n\n### 2a. Inspiration mode — study without touching the user's project\n\nThe common case: the user already has an app and wants to see how Expo does something. Read the example as **reference** and apply the patterns by hand — never scaffold an example on top of their project.\n\n**First, list the whole example in one call.** Integration code is often nested (e.g. Stripe's server routes live in `app\u002Fapi\u002F`), so a one-level listing misses the important files:\n\n```bash\ngh api 'repos\u002Fexpo\u002Fexamples\u002Fgit\u002Ftrees\u002Fmaster?recursive=1' \\\n  --jq '.tree[].path | select(startswith(\"with-stripe\u002F\"))'\n```\n\n**Then read the high-signal files first:** `README.md` (setup) → `package.json` (deps) → `app.json` (config plugins \u002F permissions) → the integration code the manifest revealed → `.env` (required secrets). Per file:\n\n```bash\ngh api repos\u002Fexpo\u002Fexamples\u002Fcontents\u002Fwith-stripe\u002Futils\u002Fstripe-server.ts --jq '.content' | base64 -d\n# No gh? Raw URL (branch is master):\ncurl -s https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexamples\u002Fmaster\u002Fwith-stripe\u002Futils\u002Fstripe-server.ts\n```\n\n**Reading more than a couple of files?** Many integrations are spread across server routes, a client provider, and config (Stripe is). Skip the per-file calls — pull the whole example into a **throwaway\u002Fgitignored dir (not the user's project)** and read it freely with Grep\u002FRead, then apply by hand:\n\n```bash\nnpx degit expo\u002Fexamples\u002Fwith-stripe \u002Ftmp\u002Fexpo-ref\u002Fwith-stripe   # clean copy, no git history\n# fallback without degit (sparse-checkout, no full ~64 MB clone):\ngit clone --depth 1 --filter=blob:none --sparse https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples.git \u002Ftmp\u002Fexpo-ref\u002Fexamples \\\n  && (cd \u002Ftmp\u002Fexpo-ref\u002Fexamples && git sparse-checkout set with-stripe)\n```\n\nRead from there with Grep\u002FRead; delete the scratch dir when done.\n\n### 2b. Scaffold mode — new project from an example\n\n```bash\nnpx create-expo --example with-stripe   # short form:  npx create-expo -e with-stripe\nbun create expo --example with-stripe    # with bun\n```\n\n### 3. Adapt into the user's app — non-destructively (critical)\n\nWhen the user already has an app, **add only what the example introduces; never overwrite their setup.**\n\n- **Version-align — don't copy pinned versions.** Examples track the **latest** SDK, so their `package.json` pins won't match an older project. Add only the *missing* deps with `npx expo install \u003Cpkg>` (it resolves SDK-correct versions) instead of copying exact versions.\n- **Merge config, don't replace it.** Add only the `app.json`\u002F`app.config.*` plugins and permissions the example introduces that the user lacks — keep their existing config block intact.\n- **Port the integration code.**\n- **Recreate env vars** from the example's `.env` shape — it holds placeholders, never working secrets.\n\n**Done when** the integration code is ported and every dependency, config plugin, permission, and env var it needs is accounted for in the user's app — not when it merely *looks* wired up.\n\n## Gotchas\n\n- **Default branch is `master`,** not `main` (matters for raw URLs and sparse checkout).\n- **Single-click deploy.** Every example has a launch URL: `https:\u002F\u002Flaunch.expo.dev\u002F?github=https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples\u002Ftree\u002Fmaster\u002F\u003Cexample>`.\n\n## Related skills\n\n- Tailwind \u002F NativeWind styling → `expo-tailwind-setup`\n- Native UI components (@expo\u002Fui package) → `expo-ui`\n- Styling and native-feeling screens → `expo-native-ui`\n- Navigation and routing → `expo-router`\n- Authoring a native module → `expo-module`\n- Upgrade the SDK before adopting a latest-SDK example → `expo-upgrade`\n\n## References\n\n- `.\u002Freferences\u002Fcatalog.md` — categorized snapshot of the example library for fast triage.\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-examples\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\n",{"data":35,"body":38},{"name":4,"description":6,"allowed-tools":36,"version":37,"license":26},"Read,Bash(gh api:*),Bash(git clone:*),Bash(npx create-expo:*),Bash(npx degit:*),Bash(bun create:*)","1.0.0",{"type":39,"children":40},"root",[41,49,150,163,170,201,207,214,241,365,415,421,433,451,509,550,627,644,788,793,799,863,869,879,971,988,994,1040,1046,1115,1121,1134,1140,1145,1212,1217],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Expo Examples",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53,62,64,70,72,79,81,87,89,95,97,102,104,109,111,117,119,125,127,132,134,140,142,148],{"type":42,"tag":54,"props":55,"children":59},"a",{"href":56,"rel":57},"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples",[58],"nofollow",[60],{"type":47,"value":61},"expo\u002Fexamples",{"type":47,"value":63}," is Expo's official library of ~70 ",{"type":42,"tag":65,"props":66,"children":67},"strong",{},[68],{"type":47,"value":69},"integration examples",{"type":47,"value":71}," — directories named ",{"type":42,"tag":73,"props":74,"children":76},"code",{"className":75},[],[77],{"type":47,"value":78},"with-\u003Clibrary>",{"type":47,"value":80}," (e.g. ",{"type":42,"tag":73,"props":82,"children":84},{"className":83},[],[85],{"type":47,"value":86},"with-stripe",{"type":47,"value":88},", ",{"type":42,"tag":73,"props":90,"children":92},{"className":91},[],[93],{"type":47,"value":94},"with-maps",{"type":47,"value":96},"), each built around ",{"type":42,"tag":65,"props":98,"children":99},{},[100],{"type":47,"value":101},"one",{"type":47,"value":103}," library or service. These are not full apps: they're ",{"type":42,"tag":65,"props":105,"children":106},{},[107],{"type":47,"value":108},"managed",{"type":47,"value":110}," projects (no ",{"type":42,"tag":73,"props":112,"children":114},{"className":113},[],[115],{"type":47,"value":116},"ios\u002F",{"type":47,"value":118},"\u002F",{"type":42,"tag":73,"props":120,"children":122},{"className":121},[],[123],{"type":47,"value":124},"android\u002F",{"type":47,"value":126}," dirs — native setup is via config plugins), and the typical one is a ",{"type":42,"tag":65,"props":128,"children":129},{},[130],{"type":47,"value":131},"single screen of ~100–200 lines",{"type":47,"value":133},". Mine them for the canonical integration ",{"type":42,"tag":135,"props":136,"children":137},"em",{},[138],{"type":47,"value":139},"pattern",{"type":47,"value":141}," — the dependency set, ",{"type":42,"tag":73,"props":143,"children":145},{"className":144},[],[146],{"type":47,"value":147},"app.json",{"type":47,"value":149}," config plugins, and minimal wiring Expo maintains against the current SDK — and adapt that into the user's app. Don't expect to lift an application architecture from them.",{"type":42,"tag":50,"props":151,"children":152},{},[153,155,161],{"type":47,"value":154},"Reach for an example before hand-rolling an integration. (Kinds — full-stack, showcases, starters — are noted in ",{"type":42,"tag":73,"props":156,"children":158},{"className":157},[],[159],{"type":47,"value":160},".\u002Freferences\u002Fcatalog.md",{"type":47,"value":162},".)",{"type":42,"tag":164,"props":165,"children":167},"h2",{"id":166},"two-modes",[168],{"type":47,"value":169},"Two modes",{"type":42,"tag":171,"props":172,"children":173},"ol",{},[174,191],{"type":42,"tag":175,"props":176,"children":177},"li",{},[178,183,185,189],{"type":42,"tag":65,"props":179,"children":180},{},[181],{"type":47,"value":182},"Inspiration \u002F adapt",{"type":47,"value":184}," (most common) — the user already has a project. Find the matching example, read its key files, and apply the ",{"type":42,"tag":135,"props":186,"children":187},{},[188],{"type":47,"value":139},{"type":47,"value":190}," to their code.",{"type":42,"tag":175,"props":192,"children":193},{},[194,199],{"type":42,"tag":65,"props":195,"children":196},{},[197],{"type":47,"value":198},"Scaffold",{"type":47,"value":200}," — greenfield. Start a fresh project directly from the example.",{"type":42,"tag":164,"props":202,"children":204},{"id":203},"workflow",[205],{"type":47,"value":206},"Workflow",{"type":42,"tag":208,"props":209,"children":211},"h3",{"id":210},"_1-find-the-right-example",[212],{"type":47,"value":213},"1. Find the right example",{"type":42,"tag":50,"props":215,"children":216},{},[217,219,224,226,232,234,239],{"type":47,"value":218},"Map the user's need to an example name (e.g. payments → ",{"type":42,"tag":73,"props":220,"children":222},{"className":221},[],[223],{"type":47,"value":86},{"type":47,"value":225},", auth → ",{"type":42,"tag":73,"props":227,"children":229},{"className":228},[],[230],{"type":47,"value":231},"with-clerk",{"type":47,"value":233},"). ",{"type":42,"tag":73,"props":235,"children":237},{"className":236},[],[238],{"type":47,"value":160},{"type":47,"value":240}," is a categorized snapshot for fast triage — but it drifts, so confirm against the live list:",{"type":42,"tag":242,"props":243,"children":248},"pre",{"className":244,"code":245,"language":246,"meta":247,"style":247},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Live example names:\ngh api repos\u002Fexpo\u002Fexamples\u002Fcontents --jq '.[] | select(.type==\"dir\" and (.name|startswith(\".\")|not)) | .name'\n# Aliases (renamed) + deprecated (dead\u002Fmoved) examples — check before recommending:\ngh api repos\u002Fexpo\u002Fexamples\u002Fcontents\u002Fmeta.json --jq '.content' | base64 -d\n","bash","",[249],{"type":42,"tag":73,"props":250,"children":251},{"__ignoreMap":247},[252,264,306,315],{"type":42,"tag":253,"props":254,"children":257},"span",{"class":255,"line":256},"line",1,[258],{"type":42,"tag":253,"props":259,"children":261},{"style":260},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[262],{"type":47,"value":263},"# Live example names:\n",{"type":42,"tag":253,"props":265,"children":267},{"class":255,"line":266},2,[268,274,280,285,290,296,301],{"type":42,"tag":253,"props":269,"children":271},{"style":270},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[272],{"type":47,"value":273},"gh",{"type":42,"tag":253,"props":275,"children":277},{"style":276},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[278],{"type":47,"value":279}," api",{"type":42,"tag":253,"props":281,"children":282},{"style":276},[283],{"type":47,"value":284}," repos\u002Fexpo\u002Fexamples\u002Fcontents",{"type":42,"tag":253,"props":286,"children":287},{"style":276},[288],{"type":47,"value":289}," --jq",{"type":42,"tag":253,"props":291,"children":293},{"style":292},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[294],{"type":47,"value":295}," '",{"type":42,"tag":253,"props":297,"children":298},{"style":276},[299],{"type":47,"value":300},".[] | select(.type==\"dir\" and (.name|startswith(\".\")|not)) | .name",{"type":42,"tag":253,"props":302,"children":303},{"style":292},[304],{"type":47,"value":305},"'\n",{"type":42,"tag":253,"props":307,"children":309},{"class":255,"line":308},3,[310],{"type":42,"tag":253,"props":311,"children":312},{"style":260},[313],{"type":47,"value":314},"# Aliases (renamed) + deprecated (dead\u002Fmoved) examples — check before recommending:\n",{"type":42,"tag":253,"props":316,"children":318},{"class":255,"line":317},4,[319,323,327,332,336,340,345,350,355,360],{"type":42,"tag":253,"props":320,"children":321},{"style":270},[322],{"type":47,"value":273},{"type":42,"tag":253,"props":324,"children":325},{"style":276},[326],{"type":47,"value":279},{"type":42,"tag":253,"props":328,"children":329},{"style":276},[330],{"type":47,"value":331}," repos\u002Fexpo\u002Fexamples\u002Fcontents\u002Fmeta.json",{"type":42,"tag":253,"props":333,"children":334},{"style":276},[335],{"type":47,"value":289},{"type":42,"tag":253,"props":337,"children":338},{"style":292},[339],{"type":47,"value":295},{"type":42,"tag":253,"props":341,"children":342},{"style":276},[343],{"type":47,"value":344},".content",{"type":42,"tag":253,"props":346,"children":347},{"style":292},[348],{"type":47,"value":349},"'",{"type":42,"tag":253,"props":351,"children":352},{"style":292},[353],{"type":47,"value":354}," |",{"type":42,"tag":253,"props":356,"children":357},{"style":270},[358],{"type":47,"value":359}," base64",{"type":42,"tag":253,"props":361,"children":362},{"style":276},[363],{"type":47,"value":364}," -d\n",{"type":42,"tag":50,"props":366,"children":367},{},[368,374,376,382,384,390,392,397,399,405,407,413],{"type":42,"tag":73,"props":369,"children":371},{"className":370},[],[372],{"type":47,"value":373},"meta.json",{"type":47,"value":375}," is the source of truth for what's renamed or dead (deprecated examples are removed from the repo tree but still listed here, each with a ",{"type":42,"tag":73,"props":377,"children":379},{"className":378},[],[380],{"type":47,"value":381},"message",{"type":47,"value":383},"). If an example is in its ",{"type":42,"tag":73,"props":385,"children":387},{"className":386},[],[388],{"type":47,"value":389},"deprecated",{"type":47,"value":391}," map, don't recommend it — follow the ",{"type":42,"tag":73,"props":393,"children":395},{"className":394},[],[396],{"type":47,"value":381},{"type":47,"value":398}," to the modern path. If it's in ",{"type":42,"tag":73,"props":400,"children":402},{"className":401},[],[403],{"type":47,"value":404},"aliases",{"type":47,"value":406},", use the ",{"type":42,"tag":73,"props":408,"children":410},{"className":409},[],[411],{"type":47,"value":412},"destination",{"type":47,"value":414},".",{"type":42,"tag":208,"props":416,"children":418},{"id":417},"_2a-inspiration-mode-study-without-touching-the-users-project",[419],{"type":47,"value":420},"2a. Inspiration mode — study without touching the user's project",{"type":42,"tag":50,"props":422,"children":423},{},[424,426,431],{"type":47,"value":425},"The common case: the user already has an app and wants to see how Expo does something. Read the example as ",{"type":42,"tag":65,"props":427,"children":428},{},[429],{"type":47,"value":430},"reference",{"type":47,"value":432}," and apply the patterns by hand — never scaffold an example on top of their project.",{"type":42,"tag":50,"props":434,"children":435},{},[436,441,443,449],{"type":42,"tag":65,"props":437,"children":438},{},[439],{"type":47,"value":440},"First, list the whole example in one call.",{"type":47,"value":442}," Integration code is often nested (e.g. Stripe's server routes live in ",{"type":42,"tag":73,"props":444,"children":446},{"className":445},[],[447],{"type":47,"value":448},"app\u002Fapi\u002F",{"type":47,"value":450},"), so a one-level listing misses the important files:",{"type":42,"tag":242,"props":452,"children":454},{"className":244,"code":453,"language":246,"meta":247,"style":247},"gh api 'repos\u002Fexpo\u002Fexamples\u002Fgit\u002Ftrees\u002Fmaster?recursive=1' \\\n  --jq '.tree[].path | select(startswith(\"with-stripe\u002F\"))'\n",[455],{"type":42,"tag":73,"props":456,"children":457},{"__ignoreMap":247},[458,488],{"type":42,"tag":253,"props":459,"children":460},{"class":255,"line":256},[461,465,469,473,478,482],{"type":42,"tag":253,"props":462,"children":463},{"style":270},[464],{"type":47,"value":273},{"type":42,"tag":253,"props":466,"children":467},{"style":276},[468],{"type":47,"value":279},{"type":42,"tag":253,"props":470,"children":471},{"style":292},[472],{"type":47,"value":295},{"type":42,"tag":253,"props":474,"children":475},{"style":276},[476],{"type":47,"value":477},"repos\u002Fexpo\u002Fexamples\u002Fgit\u002Ftrees\u002Fmaster?recursive=1",{"type":42,"tag":253,"props":479,"children":480},{"style":292},[481],{"type":47,"value":349},{"type":42,"tag":253,"props":483,"children":485},{"style":484},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[486],{"type":47,"value":487}," \\\n",{"type":42,"tag":253,"props":489,"children":490},{"class":255,"line":266},[491,496,500,505],{"type":42,"tag":253,"props":492,"children":493},{"style":276},[494],{"type":47,"value":495},"  --jq",{"type":42,"tag":253,"props":497,"children":498},{"style":292},[499],{"type":47,"value":295},{"type":42,"tag":253,"props":501,"children":502},{"style":276},[503],{"type":47,"value":504},".tree[].path | select(startswith(\"with-stripe\u002F\"))",{"type":42,"tag":253,"props":506,"children":507},{"style":292},[508],{"type":47,"value":305},{"type":42,"tag":50,"props":510,"children":511},{},[512,517,519,525,527,533,535,540,542,548],{"type":42,"tag":65,"props":513,"children":514},{},[515],{"type":47,"value":516},"Then read the high-signal files first:",{"type":47,"value":518}," ",{"type":42,"tag":73,"props":520,"children":522},{"className":521},[],[523],{"type":47,"value":524},"README.md",{"type":47,"value":526}," (setup) → ",{"type":42,"tag":73,"props":528,"children":530},{"className":529},[],[531],{"type":47,"value":532},"package.json",{"type":47,"value":534}," (deps) → ",{"type":42,"tag":73,"props":536,"children":538},{"className":537},[],[539],{"type":47,"value":147},{"type":47,"value":541}," (config plugins \u002F permissions) → the integration code the manifest revealed → ",{"type":42,"tag":73,"props":543,"children":545},{"className":544},[],[546],{"type":47,"value":547},".env",{"type":47,"value":549}," (required secrets). Per file:",{"type":42,"tag":242,"props":551,"children":553},{"className":244,"code":552,"language":246,"meta":247,"style":247},"gh api repos\u002Fexpo\u002Fexamples\u002Fcontents\u002Fwith-stripe\u002Futils\u002Fstripe-server.ts --jq '.content' | base64 -d\n# No gh? Raw URL (branch is master):\ncurl -s https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexamples\u002Fmaster\u002Fwith-stripe\u002Futils\u002Fstripe-server.ts\n",[554],{"type":42,"tag":73,"props":555,"children":556},{"__ignoreMap":247},[557,601,609],{"type":42,"tag":253,"props":558,"children":559},{"class":255,"line":256},[560,564,568,573,577,581,585,589,593,597],{"type":42,"tag":253,"props":561,"children":562},{"style":270},[563],{"type":47,"value":273},{"type":42,"tag":253,"props":565,"children":566},{"style":276},[567],{"type":47,"value":279},{"type":42,"tag":253,"props":569,"children":570},{"style":276},[571],{"type":47,"value":572}," repos\u002Fexpo\u002Fexamples\u002Fcontents\u002Fwith-stripe\u002Futils\u002Fstripe-server.ts",{"type":42,"tag":253,"props":574,"children":575},{"style":276},[576],{"type":47,"value":289},{"type":42,"tag":253,"props":578,"children":579},{"style":292},[580],{"type":47,"value":295},{"type":42,"tag":253,"props":582,"children":583},{"style":276},[584],{"type":47,"value":344},{"type":42,"tag":253,"props":586,"children":587},{"style":292},[588],{"type":47,"value":349},{"type":42,"tag":253,"props":590,"children":591},{"style":292},[592],{"type":47,"value":354},{"type":42,"tag":253,"props":594,"children":595},{"style":270},[596],{"type":47,"value":359},{"type":42,"tag":253,"props":598,"children":599},{"style":276},[600],{"type":47,"value":364},{"type":42,"tag":253,"props":602,"children":603},{"class":255,"line":266},[604],{"type":42,"tag":253,"props":605,"children":606},{"style":260},[607],{"type":47,"value":608},"# No gh? Raw URL (branch is master):\n",{"type":42,"tag":253,"props":610,"children":611},{"class":255,"line":308},[612,617,622],{"type":42,"tag":253,"props":613,"children":614},{"style":270},[615],{"type":47,"value":616},"curl",{"type":42,"tag":253,"props":618,"children":619},{"style":276},[620],{"type":47,"value":621}," -s",{"type":42,"tag":253,"props":623,"children":624},{"style":276},[625],{"type":47,"value":626}," https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexamples\u002Fmaster\u002Fwith-stripe\u002Futils\u002Fstripe-server.ts\n",{"type":42,"tag":50,"props":628,"children":629},{},[630,635,637,642],{"type":42,"tag":65,"props":631,"children":632},{},[633],{"type":47,"value":634},"Reading more than a couple of files?",{"type":47,"value":636}," Many integrations are spread across server routes, a client provider, and config (Stripe is). Skip the per-file calls — pull the whole example into a ",{"type":42,"tag":65,"props":638,"children":639},{},[640],{"type":47,"value":641},"throwaway\u002Fgitignored dir (not the user's project)",{"type":47,"value":643}," and read it freely with Grep\u002FRead, then apply by hand:",{"type":42,"tag":242,"props":645,"children":647},{"className":244,"code":646,"language":246,"meta":247,"style":247},"npx degit expo\u002Fexamples\u002Fwith-stripe \u002Ftmp\u002Fexpo-ref\u002Fwith-stripe   # clean copy, no git history\n# fallback without degit (sparse-checkout, no full ~64 MB clone):\ngit clone --depth 1 --filter=blob:none --sparse https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples.git \u002Ftmp\u002Fexpo-ref\u002Fexamples \\\n  && (cd \u002Ftmp\u002Fexpo-ref\u002Fexamples && git sparse-checkout set with-stripe)\n",[648],{"type":42,"tag":73,"props":649,"children":650},{"__ignoreMap":247},[651,679,687,735],{"type":42,"tag":253,"props":652,"children":653},{"class":255,"line":256},[654,659,664,669,674],{"type":42,"tag":253,"props":655,"children":656},{"style":270},[657],{"type":47,"value":658},"npx",{"type":42,"tag":253,"props":660,"children":661},{"style":276},[662],{"type":47,"value":663}," degit",{"type":42,"tag":253,"props":665,"children":666},{"style":276},[667],{"type":47,"value":668}," expo\u002Fexamples\u002Fwith-stripe",{"type":42,"tag":253,"props":670,"children":671},{"style":276},[672],{"type":47,"value":673}," \u002Ftmp\u002Fexpo-ref\u002Fwith-stripe",{"type":42,"tag":253,"props":675,"children":676},{"style":260},[677],{"type":47,"value":678},"   # clean copy, no git history\n",{"type":42,"tag":253,"props":680,"children":681},{"class":255,"line":266},[682],{"type":42,"tag":253,"props":683,"children":684},{"style":260},[685],{"type":47,"value":686},"# fallback without degit (sparse-checkout, no full ~64 MB clone):\n",{"type":42,"tag":253,"props":688,"children":689},{"class":255,"line":308},[690,695,700,705,711,716,721,726,731],{"type":42,"tag":253,"props":691,"children":692},{"style":270},[693],{"type":47,"value":694},"git",{"type":42,"tag":253,"props":696,"children":697},{"style":276},[698],{"type":47,"value":699}," clone",{"type":42,"tag":253,"props":701,"children":702},{"style":276},[703],{"type":47,"value":704}," --depth",{"type":42,"tag":253,"props":706,"children":708},{"style":707},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[709],{"type":47,"value":710}," 1",{"type":42,"tag":253,"props":712,"children":713},{"style":276},[714],{"type":47,"value":715}," --filter=blob:none",{"type":42,"tag":253,"props":717,"children":718},{"style":276},[719],{"type":47,"value":720}," --sparse",{"type":42,"tag":253,"props":722,"children":723},{"style":276},[724],{"type":47,"value":725}," https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples.git",{"type":42,"tag":253,"props":727,"children":728},{"style":276},[729],{"type":47,"value":730}," \u002Ftmp\u002Fexpo-ref\u002Fexamples",{"type":42,"tag":253,"props":732,"children":733},{"style":484},[734],{"type":47,"value":487},{"type":42,"tag":253,"props":736,"children":737},{"class":255,"line":317},[738,743,748,754,758,763,768,773,778,783],{"type":42,"tag":253,"props":739,"children":740},{"style":292},[741],{"type":47,"value":742},"  &&",{"type":42,"tag":253,"props":744,"children":745},{"style":292},[746],{"type":47,"value":747}," (",{"type":42,"tag":253,"props":749,"children":751},{"style":750},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[752],{"type":47,"value":753},"cd",{"type":42,"tag":253,"props":755,"children":756},{"style":276},[757],{"type":47,"value":730},{"type":42,"tag":253,"props":759,"children":760},{"style":292},[761],{"type":47,"value":762}," &&",{"type":42,"tag":253,"props":764,"children":765},{"style":270},[766],{"type":47,"value":767}," git",{"type":42,"tag":253,"props":769,"children":770},{"style":276},[771],{"type":47,"value":772}," sparse-checkout",{"type":42,"tag":253,"props":774,"children":775},{"style":276},[776],{"type":47,"value":777}," set",{"type":42,"tag":253,"props":779,"children":780},{"style":276},[781],{"type":47,"value":782}," with-stripe",{"type":42,"tag":253,"props":784,"children":785},{"style":292},[786],{"type":47,"value":787},")\n",{"type":42,"tag":50,"props":789,"children":790},{},[791],{"type":47,"value":792},"Read from there with Grep\u002FRead; delete the scratch dir when done.",{"type":42,"tag":208,"props":794,"children":796},{"id":795},"_2b-scaffold-mode-new-project-from-an-example",[797],{"type":47,"value":798},"2b. Scaffold mode — new project from an example",{"type":42,"tag":242,"props":800,"children":802},{"className":244,"code":801,"language":246,"meta":247,"style":247},"npx create-expo --example with-stripe   # short form:  npx create-expo -e with-stripe\nbun create expo --example with-stripe    # with bun\n",[803],{"type":42,"tag":73,"props":804,"children":805},{"__ignoreMap":247},[806,832],{"type":42,"tag":253,"props":807,"children":808},{"class":255,"line":256},[809,813,818,823,827],{"type":42,"tag":253,"props":810,"children":811},{"style":270},[812],{"type":47,"value":658},{"type":42,"tag":253,"props":814,"children":815},{"style":276},[816],{"type":47,"value":817}," create-expo",{"type":42,"tag":253,"props":819,"children":820},{"style":276},[821],{"type":47,"value":822}," --example",{"type":42,"tag":253,"props":824,"children":825},{"style":276},[826],{"type":47,"value":782},{"type":42,"tag":253,"props":828,"children":829},{"style":260},[830],{"type":47,"value":831},"   # short form:  npx create-expo -e with-stripe\n",{"type":42,"tag":253,"props":833,"children":834},{"class":255,"line":266},[835,840,845,850,854,858],{"type":42,"tag":253,"props":836,"children":837},{"style":270},[838],{"type":47,"value":839},"bun",{"type":42,"tag":253,"props":841,"children":842},{"style":276},[843],{"type":47,"value":844}," create",{"type":42,"tag":253,"props":846,"children":847},{"style":276},[848],{"type":47,"value":849}," expo",{"type":42,"tag":253,"props":851,"children":852},{"style":276},[853],{"type":47,"value":822},{"type":42,"tag":253,"props":855,"children":856},{"style":276},[857],{"type":47,"value":782},{"type":42,"tag":253,"props":859,"children":860},{"style":260},[861],{"type":47,"value":862},"    # with bun\n",{"type":42,"tag":208,"props":864,"children":866},{"id":865},"_3-adapt-into-the-users-app-non-destructively-critical",[867],{"type":47,"value":868},"3. Adapt into the user's app — non-destructively (critical)",{"type":42,"tag":50,"props":870,"children":871},{},[872,874],{"type":47,"value":873},"When the user already has an app, ",{"type":42,"tag":65,"props":875,"children":876},{},[877],{"type":47,"value":878},"add only what the example introduces; never overwrite their setup.",{"type":42,"tag":880,"props":881,"children":882},"ul",{},[883,922,946,954],{"type":42,"tag":175,"props":884,"children":885},{},[886,891,893,898,900,905,907,912,914,920],{"type":42,"tag":65,"props":887,"children":888},{},[889],{"type":47,"value":890},"Version-align — don't copy pinned versions.",{"type":47,"value":892}," Examples track the ",{"type":42,"tag":65,"props":894,"children":895},{},[896],{"type":47,"value":897},"latest",{"type":47,"value":899}," SDK, so their ",{"type":42,"tag":73,"props":901,"children":903},{"className":902},[],[904],{"type":47,"value":532},{"type":47,"value":906}," pins won't match an older project. Add only the ",{"type":42,"tag":135,"props":908,"children":909},{},[910],{"type":47,"value":911},"missing",{"type":47,"value":913}," deps with ",{"type":42,"tag":73,"props":915,"children":917},{"className":916},[],[918],{"type":47,"value":919},"npx expo install \u003Cpkg>",{"type":47,"value":921}," (it resolves SDK-correct versions) instead of copying exact versions.",{"type":42,"tag":175,"props":923,"children":924},{},[925,930,932,937,938,944],{"type":42,"tag":65,"props":926,"children":927},{},[928],{"type":47,"value":929},"Merge config, don't replace it.",{"type":47,"value":931}," Add only the ",{"type":42,"tag":73,"props":933,"children":935},{"className":934},[],[936],{"type":47,"value":147},{"type":47,"value":118},{"type":42,"tag":73,"props":939,"children":941},{"className":940},[],[942],{"type":47,"value":943},"app.config.*",{"type":47,"value":945}," plugins and permissions the example introduces that the user lacks — keep their existing config block intact.",{"type":42,"tag":175,"props":947,"children":948},{},[949],{"type":42,"tag":65,"props":950,"children":951},{},[952],{"type":47,"value":953},"Port the integration code.",{"type":42,"tag":175,"props":955,"children":956},{},[957,962,964,969],{"type":42,"tag":65,"props":958,"children":959},{},[960],{"type":47,"value":961},"Recreate env vars",{"type":47,"value":963}," from the example's ",{"type":42,"tag":73,"props":965,"children":967},{"className":966},[],[968],{"type":47,"value":547},{"type":47,"value":970}," shape — it holds placeholders, never working secrets.",{"type":42,"tag":50,"props":972,"children":973},{},[974,979,981,986],{"type":42,"tag":65,"props":975,"children":976},{},[977],{"type":47,"value":978},"Done when",{"type":47,"value":980}," the integration code is ported and every dependency, config plugin, permission, and env var it needs is accounted for in the user's app — not when it merely ",{"type":42,"tag":135,"props":982,"children":983},{},[984],{"type":47,"value":985},"looks",{"type":47,"value":987}," wired up.",{"type":42,"tag":164,"props":989,"children":991},{"id":990},"gotchas",[992],{"type":47,"value":993},"Gotchas",{"type":42,"tag":880,"props":995,"children":996},{},[997,1023],{"type":42,"tag":175,"props":998,"children":999},{},[1000,1013,1015,1021],{"type":42,"tag":65,"props":1001,"children":1002},{},[1003,1005,1011],{"type":47,"value":1004},"Default branch is ",{"type":42,"tag":73,"props":1006,"children":1008},{"className":1007},[],[1009],{"type":47,"value":1010},"master",{"type":47,"value":1012},",",{"type":47,"value":1014}," not ",{"type":42,"tag":73,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":47,"value":1020},"main",{"type":47,"value":1022}," (matters for raw URLs and sparse checkout).",{"type":42,"tag":175,"props":1024,"children":1025},{},[1026,1031,1033,1039],{"type":42,"tag":65,"props":1027,"children":1028},{},[1029],{"type":47,"value":1030},"Single-click deploy.",{"type":47,"value":1032}," Every example has a launch URL: ",{"type":42,"tag":73,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":47,"value":1038},"https:\u002F\u002Flaunch.expo.dev\u002F?github=https:\u002F\u002Fgithub.com\u002Fexpo\u002Fexamples\u002Ftree\u002Fmaster\u002F\u003Cexample>",{"type":47,"value":414},{"type":42,"tag":164,"props":1041,"children":1043},{"id":1042},"related-skills",[1044],{"type":47,"value":1045},"Related skills",{"type":42,"tag":880,"props":1047,"children":1048},{},[1049,1060,1071,1082,1093,1104],{"type":42,"tag":175,"props":1050,"children":1051},{},[1052,1054],{"type":47,"value":1053},"Tailwind \u002F NativeWind styling → ",{"type":42,"tag":73,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":47,"value":1059},"expo-tailwind-setup",{"type":42,"tag":175,"props":1061,"children":1062},{},[1063,1065],{"type":47,"value":1064},"Native UI components (@expo\u002Fui package) → ",{"type":42,"tag":73,"props":1066,"children":1068},{"className":1067},[],[1069],{"type":47,"value":1070},"expo-ui",{"type":42,"tag":175,"props":1072,"children":1073},{},[1074,1076],{"type":47,"value":1075},"Styling and native-feeling screens → ",{"type":42,"tag":73,"props":1077,"children":1079},{"className":1078},[],[1080],{"type":47,"value":1081},"expo-native-ui",{"type":42,"tag":175,"props":1083,"children":1084},{},[1085,1087],{"type":47,"value":1086},"Navigation and routing → ",{"type":42,"tag":73,"props":1088,"children":1090},{"className":1089},[],[1091],{"type":47,"value":1092},"expo-router",{"type":42,"tag":175,"props":1094,"children":1095},{},[1096,1098],{"type":47,"value":1097},"Authoring a native module → ",{"type":42,"tag":73,"props":1099,"children":1101},{"className":1100},[],[1102],{"type":47,"value":1103},"expo-module",{"type":42,"tag":175,"props":1105,"children":1106},{},[1107,1109],{"type":47,"value":1108},"Upgrade the SDK before adopting a latest-SDK example → ",{"type":42,"tag":73,"props":1110,"children":1112},{"className":1111},[],[1113],{"type":47,"value":1114},"expo-upgrade",{"type":42,"tag":164,"props":1116,"children":1118},{"id":1117},"references",[1119],{"type":47,"value":1120},"References",{"type":42,"tag":880,"props":1122,"children":1123},{},[1124],{"type":42,"tag":175,"props":1125,"children":1126},{},[1127,1132],{"type":42,"tag":73,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":47,"value":160},{"type":47,"value":1133}," — categorized snapshot of the example library for fast triage.",{"type":42,"tag":164,"props":1135,"children":1137},{"id":1136},"submitting-feedback",[1138],{"type":47,"value":1139},"Submitting Feedback",{"type":42,"tag":50,"props":1141,"children":1142},{},[1143],{"type":47,"value":1144},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":42,"tag":242,"props":1146,"children":1148},{"className":244,"code":1147,"language":246,"meta":247,"style":247},"npx --yes submit-expo-feedback@latest --category skills --subject \"expo-examples\" \"\u003Cactionable feedback>\"\n",[1149],{"type":42,"tag":73,"props":1150,"children":1151},{"__ignoreMap":247},[1152],{"type":42,"tag":253,"props":1153,"children":1154},{"class":255,"line":256},[1155,1159,1164,1169,1174,1179,1184,1189,1193,1198,1202,1207],{"type":42,"tag":253,"props":1156,"children":1157},{"style":270},[1158],{"type":47,"value":658},{"type":42,"tag":253,"props":1160,"children":1161},{"style":276},[1162],{"type":47,"value":1163}," --yes",{"type":42,"tag":253,"props":1165,"children":1166},{"style":276},[1167],{"type":47,"value":1168}," submit-expo-feedback@latest",{"type":42,"tag":253,"props":1170,"children":1171},{"style":276},[1172],{"type":47,"value":1173}," --category",{"type":42,"tag":253,"props":1175,"children":1176},{"style":276},[1177],{"type":47,"value":1178}," skills",{"type":42,"tag":253,"props":1180,"children":1181},{"style":276},[1182],{"type":47,"value":1183}," --subject",{"type":42,"tag":253,"props":1185,"children":1186},{"style":292},[1187],{"type":47,"value":1188}," \"",{"type":42,"tag":253,"props":1190,"children":1191},{"style":276},[1192],{"type":47,"value":4},{"type":42,"tag":253,"props":1194,"children":1195},{"style":292},[1196],{"type":47,"value":1197},"\"",{"type":42,"tag":253,"props":1199,"children":1200},{"style":292},[1201],{"type":47,"value":1188},{"type":42,"tag":253,"props":1203,"children":1204},{"style":276},[1205],{"type":47,"value":1206},"\u003Cactionable feedback>",{"type":42,"tag":253,"props":1208,"children":1209},{"style":292},[1210],{"type":47,"value":1211},"\"\n",{"type":42,"tag":50,"props":1213,"children":1214},{},[1215],{"type":47,"value":1216},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":42,"tag":1218,"props":1219,"children":1220},"style",{},[1221],{"type":47,"value":1222},"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":1224,"total":1328},[1225,1243,1258,1271,1285,1299,1317],{"slug":1226,"name":1226,"fn":1227,"description":1228,"org":1229,"tags":1230,"stars":23,"repoUrl":24,"updatedAt":1242},"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},[1231,1234,1237,1238,1241],{"name":1232,"slug":1233,"type":15},"Android","android",{"name":1235,"slug":1236,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},"iOS","ios",{"name":21,"slug":22,"type":15},"2026-07-24T05:36:44.164663",{"slug":1244,"name":1244,"fn":1245,"description":1246,"org":1247,"tags":1248,"stars":23,"repoUrl":24,"updatedAt":1257},"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},[1249,1250,1251,1254],{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":1252,"slug":1253,"type":15},"Frontend","frontend",{"name":1255,"slug":1256,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":1259,"name":1259,"fn":1260,"description":1261,"org":1262,"tags":1263,"stars":23,"repoUrl":24,"updatedAt":1270},"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},[1264,1265,1266,1269],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1267,"slug":1268,"type":15},"Observability","observability",{"name":13,"slug":14,"type":15},"2026-07-24T05:36:45.220605",{"slug":1272,"name":1272,"fn":1273,"description":1274,"org":1275,"tags":1276,"stars":23,"repoUrl":24,"updatedAt":1284},"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},[1277,1278,1281,1282,1283],{"name":1232,"slug":1233,"type":15},{"name":1279,"slug":1280,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},{"name":21,"slug":22,"type":15},"2026-07-31T05:52:18.602058",{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1289,"tags":1290,"stars":23,"repoUrl":24,"updatedAt":1298},"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},[1291,1294,1295,1296,1297],{"name":1292,"slug":1293,"type":15},"Analytics","analytics",{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1267,"slug":1268,"type":15},"2026-07-24T05:36:50.17095",{"slug":1300,"name":1300,"fn":1301,"description":1302,"org":1303,"tags":1304,"stars":23,"repoUrl":24,"updatedAt":1316},"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},[1305,1308,1311,1312,1313],{"name":1306,"slug":1307,"type":15},"Automation","automation",{"name":1309,"slug":1310,"type":15},"CI\u002FCD","ci-cd",{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":1314,"slug":1315,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1321,"tags":1322,"stars":23,"repoUrl":24,"updatedAt":1327},"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},[1323,1324,1325,1326],{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:46.195935",22,{"items":1330,"total":1448},[1331,1339,1346,1353,1361,1369,1377,1384,1397,1415,1430,1441],{"slug":1226,"name":1226,"fn":1227,"description":1228,"org":1332,"tags":1333,"stars":23,"repoUrl":24,"updatedAt":1242},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1334,1335,1336,1337,1338],{"name":1232,"slug":1233,"type":15},{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},{"name":21,"slug":22,"type":15},{"slug":1244,"name":1244,"fn":1245,"description":1246,"org":1340,"tags":1341,"stars":23,"repoUrl":24,"updatedAt":1257},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1342,1343,1344,1345],{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":1252,"slug":1253,"type":15},{"name":1255,"slug":1256,"type":15},{"slug":1259,"name":1259,"fn":1260,"description":1261,"org":1347,"tags":1348,"stars":23,"repoUrl":24,"updatedAt":1270},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1349,1350,1351,1352],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1267,"slug":1268,"type":15},{"name":13,"slug":14,"type":15},{"slug":1272,"name":1272,"fn":1273,"description":1274,"org":1354,"tags":1355,"stars":23,"repoUrl":24,"updatedAt":1284},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1356,1357,1358,1359,1360],{"name":1232,"slug":1233,"type":15},{"name":1279,"slug":1280,"type":15},{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},{"name":21,"slug":22,"type":15},{"slug":1286,"name":1286,"fn":1287,"description":1288,"org":1362,"tags":1363,"stars":23,"repoUrl":24,"updatedAt":1298},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1364,1365,1366,1367,1368],{"name":1292,"slug":1293,"type":15},{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1267,"slug":1268,"type":15},{"slug":1300,"name":1300,"fn":1301,"description":1302,"org":1370,"tags":1371,"stars":23,"repoUrl":24,"updatedAt":1316},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1372,1373,1374,1375,1376],{"name":1306,"slug":1307,"type":15},{"name":1309,"slug":1310,"type":15},{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":1314,"slug":1315,"type":15},{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1378,"tags":1379,"stars":23,"repoUrl":24,"updatedAt":1327},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1380,1381,1382,1383],{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},{"slug":1385,"name":1385,"fn":1386,"description":1387,"org":1388,"tags":1389,"stars":23,"repoUrl":24,"updatedAt":1396},"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},[1390,1391,1392,1393,1394,1395],{"name":1232,"slug":1233,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1239,"slug":1240,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:39.682299",{"slug":1398,"name":1398,"fn":1399,"description":1400,"org":1401,"tags":1402,"stars":23,"repoUrl":24,"updatedAt":1414},"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},[1403,1406,1409,1410,1411],{"name":1404,"slug":1405,"type":15},"API Development","api-development",{"name":1407,"slug":1408,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1412,"slug":1413,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":1416,"name":1416,"fn":1417,"description":1418,"org":1419,"tags":1420,"stars":23,"repoUrl":24,"updatedAt":1429},"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},[1421,1422,1423,1424,1425,1428],{"name":1232,"slug":1233,"type":15},{"name":1235,"slug":1236,"type":15},{"name":9,"slug":8,"type":15},{"name":1239,"slug":1240,"type":15},{"name":1426,"slug":1427,"type":15},"Local Development","local-development",{"name":21,"slug":22,"type":15},"2026-07-24T05:36:51.160719",{"slug":1431,"name":1431,"fn":1432,"description":1433,"org":1434,"tags":1435,"stars":23,"repoUrl":24,"updatedAt":1440},"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},[1436,1437,1438,1439],{"name":9,"slug":8,"type":15},{"name":1252,"slug":1253,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:41.176872",{"slug":4,"name":4,"fn":5,"description":6,"org":1442,"tags":1443,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1444,1445,1446,1447],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},24]