[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-upgrade":3,"mdc--lore0-key":34,"related-org-expo-expo-upgrade":1259,"related-repo-expo-expo-upgrade":1433},{"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-upgrade","upgrade Expo SDK versions","Framework (OSS). Guidelines for upgrading Expo SDK versions and fixing dependency issues",{"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},"Migration","migration",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:32.176244","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-upgrade","---\nname: expo-upgrade\ndescription: Framework (OSS). Guidelines for upgrading Expo SDK versions and fixing dependency issues\nversion: 1.0.0\nlicense: MIT\n---\n\n## References\n\n- .\u002Freferences\u002Freact-19.md -- SDK +54: React 19 changes (useContext → use, Context.Provider → Context, forwardRef removal)\n- .\u002Freferences\u002Fnew-architecture.md -- SDK +53: New Architecture migration guide\n- .\u002Freferences\u002Freact-compiler.md -- SDK +54: React Compiler setup and migration guide\n- .\u002Freferences\u002Fnative-tabs.md -- SDK +55: Native tabs changes (Icon\u002FLabel\u002FBadge now accessed via NativeTabs.Trigger.\\*)\n- .\u002Freferences\u002Fexpo-av-to-audio.md -- SDK +55: Migrate audio playback and recording from expo-av to expo-audio\n- .\u002Freferences\u002Fexpo-av-to-video.md -- SDK +55: Migrate video playback from expo-av to expo-video\n- .\u002Freferences\u002Freact-navigation-to-expo-router.md -- SDK +56: Migrate `@react-navigation\u002F*` imports to `expo-router` entry points (codemod + manual mapping)\n\n## Beta\u002FPreview Releases\n\nBeta versions use `.preview` suffix (e.g., `55.0.0-preview.2`), published under `@next` tag.\n\nCheck if latest is beta: https:\u002F\u002Fexp.host\u002F--\u002Fapi\u002Fv2\u002Fversions (look for `-preview` in `expoVersion`)\n\n```bash\nnpx expo install expo@next --fix  # install beta\n```\n\n## Step-by-Step Upgrade Process\n\n1. Upgrade Expo and dependencies\n\n```bash\nnpx expo install expo@latest\nnpx expo install --fix\n```\n\n2. Run diagnostics: `npx expo-doctor`\n\n3. Clear caches and reinstall\n\n```bash\nnpx expo export -p ios --clear\nrm -rf node_modules .expo\nwatchman watch-del-all\n```\n\n## Breaking Changes Checklist\n\n- Check for removed APIs in release notes\n- Update import paths for moved modules\n- Review native module changes requiring prebuild\n- Test all camera, audio, and video features\n- Verify navigation still works correctly\n\n## Prebuild for Native Changes\n\n**First check if `ios\u002F` and `android\u002F` directories exist in the project.** If neither directory exists, the project uses Continuous Native Generation (CNG) and native projects are regenerated at build time — skip this section and \"Clear caches for bare workflow\" entirely.\n\nIf upgrading requires native changes:\n\n```bash\nnpx expo prebuild --clean\n```\n\nThis regenerates the `ios` and `android` directories. Ensure the project is not a bare workflow app before running this command.\n\n## Clear caches for bare workflow\n\nThese steps only apply when `ios\u002F` and\u002For `android\u002F` directories exist in the project:\n\n- Clear the cocoapods cache for iOS: `cd ios && pod install --repo-update`\n- Clear derived data for Xcode: `npx expo run:ios --no-build-cache`\n- Clear the Gradle cache for Android: `cd android && .\u002Fgradlew clean`\n\n## Housekeeping\n\n- Review release notes for the target SDK version at https:\u002F\u002Fexpo.dev\u002Fchangelog\n- Update versioned docs links in agent instruction files (`AGENTS.md`). The default template links to `https:\u002F\u002Fdocs.expo.dev\u002Fversions\u002Fv\u003Cversion>\u002F`. Search for `docs.expo.dev\u002Fversions\u002F` and bump each link to the new SDK version.\n- If using Expo SDK 54 or later, ensure react-native-worklets is installed — this is required for react-native-reanimated to work.\n- Enable React Compiler in SDK 54+ by adding `\"experiments\": { \"reactCompiler\": true }` to app.json — it's stable and recommended\n- Delete sdkVersion from `app.json` to let Expo manage it automatically\n- Remove implicit packages from `package.json`: `@babel\u002Fcore`, `babel-preset-expo`, `expo-constants`.\n- If the babel.config.js only contains 'babel-preset-expo', delete the file\n- If the metro.config.js only contains expo defaults, delete the file\n\n## Deprecated Packages\n\n| Old Package          | Replacement                                          |\n| -------------------- | ---------------------------------------------------- |\n| `expo-av`            | `expo-audio` and `expo-video`                        |\n| `expo-permissions`   | Individual package permission APIs                   |\n| `@expo\u002Fvector-icons` | `expo-symbols` (for SF Symbols)                      |\n| `AsyncStorage`       | `expo-sqlite\u002FlocalStorage\u002Finstall`                   |\n| `expo-app-loading`   | `expo-splash-screen`                                 |\n| expo-linear-gradient | experimental_backgroundImage + CSS gradients in View |\n\nWhen migrating deprecated packages, update all code usage before removing the old package. For expo-av, consult the migration references to convert Audio.Sound to useAudioPlayer, Audio.Recording to useAudioRecorder, and Video components to VideoView with useVideoPlayer.\n\n## expo.install.exclude\n\nCheck if package.json has excluded packages:\n\n```json\n{\n  \"expo\": { \"install\": { \"exclude\": [\"react-native-reanimated\"] } }\n}\n```\n\nExclusions are often workarounds that may no longer be needed after upgrading. Review each one.\n\n## Removing patches\n\nCheck if there are any outdated patches in the `patches\u002F` directory. Remove them if they are no longer needed.\n\n## Postcss\n\n- `autoprefixer` isn't needed in SDK +53. Remove it from dependencies and check `postcss.config.js` or `postcss.config.mjs` to remove it from the plugins list.\n- Use `postcss.config.mjs` in SDK +53.\n\n## Metro\n\nRemove redundant metro config options:\n\n- resolver.unstable_enablePackageExports is enabled by default in SDK +53.\n- `experimentalImportSupport` is enabled by default in SDK +54.\n- `EXPO_USE_FAST_RESOLVER=1` is removed in SDK +54.\n- cjs and mjs extensions are supported by default in SDK +50.\n- Expo webpack is deprecated, migrate to [Expo Router and Metro web](https:\u002F\u002Fdocs.expo.dev\u002Frouter\u002Fmigrate\u002Ffrom-expo-webpack\u002F).\n\n## Hermes engine v1\n\nSince SDK 55, users can opt-in to use Hermes engine v1 for improved runtime performance. This requires setting `useHermesV1: true` in the `expo-build-properties` config plugin, and may require a specific version of the `hermes-compiler` npm package. Hermes v1 will become a default in some future SDK release.\n\n## New Architecture\n\nThe new architecture is enabled by default, the app.json field `\"newArchEnabled\": true` is no longer needed as it's the default. Expo Go only supports the new architecture as of SDK +53.\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-upgrade\" \"\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":37},{"name":4,"description":6,"version":36,"license":26},"1.0.0",{"type":38,"children":39},"root",[40,49,106,112,142,173,223,229,238,286,305,380,386,414,420,447,452,480,500,506,525,561,567,687,693,844,849,855,860,987,992,998,1011,1017,1059,1065,1070,1118,1124,1153,1159,1172,1178,1183,1248,1253],{"type":41,"tag":42,"props":43,"children":45},"element","h2",{"id":44},"references",[46],{"type":47,"value":48},"text","References",{"type":41,"tag":50,"props":51,"children":52},"ul",{},[53,59,64,69,74,79,84],{"type":41,"tag":54,"props":55,"children":56},"li",{},[57],{"type":47,"value":58},".\u002Freferences\u002Freact-19.md -- SDK +54: React 19 changes (useContext → use, Context.Provider → Context, forwardRef removal)",{"type":41,"tag":54,"props":60,"children":61},{},[62],{"type":47,"value":63},".\u002Freferences\u002Fnew-architecture.md -- SDK +53: New Architecture migration guide",{"type":41,"tag":54,"props":65,"children":66},{},[67],{"type":47,"value":68},".\u002Freferences\u002Freact-compiler.md -- SDK +54: React Compiler setup and migration guide",{"type":41,"tag":54,"props":70,"children":71},{},[72],{"type":47,"value":73},".\u002Freferences\u002Fnative-tabs.md -- SDK +55: Native tabs changes (Icon\u002FLabel\u002FBadge now accessed via NativeTabs.Trigger.*)",{"type":41,"tag":54,"props":75,"children":76},{},[77],{"type":47,"value":78},".\u002Freferences\u002Fexpo-av-to-audio.md -- SDK +55: Migrate audio playback and recording from expo-av to expo-audio",{"type":41,"tag":54,"props":80,"children":81},{},[82],{"type":47,"value":83},".\u002Freferences\u002Fexpo-av-to-video.md -- SDK +55: Migrate video playback from expo-av to expo-video",{"type":41,"tag":54,"props":85,"children":86},{},[87,89,96,98,104],{"type":47,"value":88},".\u002Freferences\u002Freact-navigation-to-expo-router.md -- SDK +56: Migrate ",{"type":41,"tag":90,"props":91,"children":93},"code",{"className":92},[],[94],{"type":47,"value":95},"@react-navigation\u002F*",{"type":47,"value":97}," imports to ",{"type":41,"tag":90,"props":99,"children":101},{"className":100},[],[102],{"type":47,"value":103},"expo-router",{"type":47,"value":105}," entry points (codemod + manual mapping)",{"type":41,"tag":42,"props":107,"children":109},{"id":108},"betapreview-releases",[110],{"type":47,"value":111},"Beta\u002FPreview Releases",{"type":41,"tag":113,"props":114,"children":115},"p",{},[116,118,124,126,132,134,140],{"type":47,"value":117},"Beta versions use ",{"type":41,"tag":90,"props":119,"children":121},{"className":120},[],[122],{"type":47,"value":123},".preview",{"type":47,"value":125}," suffix (e.g., ",{"type":41,"tag":90,"props":127,"children":129},{"className":128},[],[130],{"type":47,"value":131},"55.0.0-preview.2",{"type":47,"value":133},"), published under ",{"type":41,"tag":90,"props":135,"children":137},{"className":136},[],[138],{"type":47,"value":139},"@next",{"type":47,"value":141}," tag.",{"type":41,"tag":113,"props":143,"children":144},{},[145,147,155,157,163,165,171],{"type":47,"value":146},"Check if latest is beta: ",{"type":41,"tag":148,"props":149,"children":153},"a",{"href":150,"rel":151},"https:\u002F\u002Fexp.host\u002F--\u002Fapi\u002Fv2\u002Fversions",[152],"nofollow",[154],{"type":47,"value":150},{"type":47,"value":156}," (look for ",{"type":41,"tag":90,"props":158,"children":160},{"className":159},[],[161],{"type":47,"value":162},"-preview",{"type":47,"value":164}," in ",{"type":41,"tag":90,"props":166,"children":168},{"className":167},[],[169],{"type":47,"value":170},"expoVersion",{"type":47,"value":172},")",{"type":41,"tag":174,"props":175,"children":180},"pre",{"className":176,"code":177,"language":178,"meta":179,"style":179},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx expo install expo@next --fix  # install beta\n","bash","",[181],{"type":41,"tag":90,"props":182,"children":183},{"__ignoreMap":179},[184],{"type":41,"tag":185,"props":186,"children":189},"span",{"class":187,"line":188},"line",1,[190,196,202,207,212,217],{"type":41,"tag":185,"props":191,"children":193},{"style":192},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[194],{"type":47,"value":195},"npx",{"type":41,"tag":185,"props":197,"children":199},{"style":198},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[200],{"type":47,"value":201}," expo",{"type":41,"tag":185,"props":203,"children":204},{"style":198},[205],{"type":47,"value":206}," install",{"type":41,"tag":185,"props":208,"children":209},{"style":198},[210],{"type":47,"value":211}," expo@next",{"type":41,"tag":185,"props":213,"children":214},{"style":198},[215],{"type":47,"value":216}," --fix",{"type":41,"tag":185,"props":218,"children":220},{"style":219},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[221],{"type":47,"value":222},"  # install beta\n",{"type":41,"tag":42,"props":224,"children":226},{"id":225},"step-by-step-upgrade-process",[227],{"type":47,"value":228},"Step-by-Step Upgrade Process",{"type":41,"tag":230,"props":231,"children":232},"ol",{},[233],{"type":41,"tag":54,"props":234,"children":235},{},[236],{"type":47,"value":237},"Upgrade Expo and dependencies",{"type":41,"tag":174,"props":239,"children":241},{"className":176,"code":240,"language":178,"meta":179,"style":179},"npx expo install expo@latest\nnpx expo install --fix\n",[242],{"type":41,"tag":90,"props":243,"children":244},{"__ignoreMap":179},[245,265],{"type":41,"tag":185,"props":246,"children":247},{"class":187,"line":188},[248,252,256,260],{"type":41,"tag":185,"props":249,"children":250},{"style":192},[251],{"type":47,"value":195},{"type":41,"tag":185,"props":253,"children":254},{"style":198},[255],{"type":47,"value":201},{"type":41,"tag":185,"props":257,"children":258},{"style":198},[259],{"type":47,"value":206},{"type":41,"tag":185,"props":261,"children":262},{"style":198},[263],{"type":47,"value":264}," expo@latest\n",{"type":41,"tag":185,"props":266,"children":268},{"class":187,"line":267},2,[269,273,277,281],{"type":41,"tag":185,"props":270,"children":271},{"style":192},[272],{"type":47,"value":195},{"type":41,"tag":185,"props":274,"children":275},{"style":198},[276],{"type":47,"value":201},{"type":41,"tag":185,"props":278,"children":279},{"style":198},[280],{"type":47,"value":206},{"type":41,"tag":185,"props":282,"children":283},{"style":198},[284],{"type":47,"value":285}," --fix\n",{"type":41,"tag":230,"props":287,"children":288},{"start":267},[289,300],{"type":41,"tag":54,"props":290,"children":291},{},[292,294],{"type":47,"value":293},"Run diagnostics: ",{"type":41,"tag":90,"props":295,"children":297},{"className":296},[],[298],{"type":47,"value":299},"npx expo-doctor",{"type":41,"tag":54,"props":301,"children":302},{},[303],{"type":47,"value":304},"Clear caches and reinstall",{"type":41,"tag":174,"props":306,"children":308},{"className":176,"code":307,"language":178,"meta":179,"style":179},"npx expo export -p ios --clear\nrm -rf node_modules .expo\nwatchman watch-del-all\n",[309],{"type":41,"tag":90,"props":310,"children":311},{"__ignoreMap":179},[312,343,366],{"type":41,"tag":185,"props":313,"children":314},{"class":187,"line":188},[315,319,323,328,333,338],{"type":41,"tag":185,"props":316,"children":317},{"style":192},[318],{"type":47,"value":195},{"type":41,"tag":185,"props":320,"children":321},{"style":198},[322],{"type":47,"value":201},{"type":41,"tag":185,"props":324,"children":325},{"style":198},[326],{"type":47,"value":327}," export",{"type":41,"tag":185,"props":329,"children":330},{"style":198},[331],{"type":47,"value":332}," -p",{"type":41,"tag":185,"props":334,"children":335},{"style":198},[336],{"type":47,"value":337}," ios",{"type":41,"tag":185,"props":339,"children":340},{"style":198},[341],{"type":47,"value":342}," --clear\n",{"type":41,"tag":185,"props":344,"children":345},{"class":187,"line":267},[346,351,356,361],{"type":41,"tag":185,"props":347,"children":348},{"style":192},[349],{"type":47,"value":350},"rm",{"type":41,"tag":185,"props":352,"children":353},{"style":198},[354],{"type":47,"value":355}," -rf",{"type":41,"tag":185,"props":357,"children":358},{"style":198},[359],{"type":47,"value":360}," node_modules",{"type":41,"tag":185,"props":362,"children":363},{"style":198},[364],{"type":47,"value":365}," .expo\n",{"type":41,"tag":185,"props":367,"children":369},{"class":187,"line":368},3,[370,375],{"type":41,"tag":185,"props":371,"children":372},{"style":192},[373],{"type":47,"value":374},"watchman",{"type":41,"tag":185,"props":376,"children":377},{"style":198},[378],{"type":47,"value":379}," watch-del-all\n",{"type":41,"tag":42,"props":381,"children":383},{"id":382},"breaking-changes-checklist",[384],{"type":47,"value":385},"Breaking Changes Checklist",{"type":41,"tag":50,"props":387,"children":388},{},[389,394,399,404,409],{"type":41,"tag":54,"props":390,"children":391},{},[392],{"type":47,"value":393},"Check for removed APIs in release notes",{"type":41,"tag":54,"props":395,"children":396},{},[397],{"type":47,"value":398},"Update import paths for moved modules",{"type":41,"tag":54,"props":400,"children":401},{},[402],{"type":47,"value":403},"Review native module changes requiring prebuild",{"type":41,"tag":54,"props":405,"children":406},{},[407],{"type":47,"value":408},"Test all camera, audio, and video features",{"type":41,"tag":54,"props":410,"children":411},{},[412],{"type":47,"value":413},"Verify navigation still works correctly",{"type":41,"tag":42,"props":415,"children":417},{"id":416},"prebuild-for-native-changes",[418],{"type":47,"value":419},"Prebuild for Native Changes",{"type":41,"tag":113,"props":421,"children":422},{},[423,445],{"type":41,"tag":424,"props":425,"children":426},"strong",{},[427,429,435,437,443],{"type":47,"value":428},"First check if ",{"type":41,"tag":90,"props":430,"children":432},{"className":431},[],[433],{"type":47,"value":434},"ios\u002F",{"type":47,"value":436}," and ",{"type":41,"tag":90,"props":438,"children":440},{"className":439},[],[441],{"type":47,"value":442},"android\u002F",{"type":47,"value":444}," directories exist in the project.",{"type":47,"value":446}," If neither directory exists, the project uses Continuous Native Generation (CNG) and native projects are regenerated at build time — skip this section and \"Clear caches for bare workflow\" entirely.",{"type":41,"tag":113,"props":448,"children":449},{},[450],{"type":47,"value":451},"If upgrading requires native changes:",{"type":41,"tag":174,"props":453,"children":455},{"className":176,"code":454,"language":178,"meta":179,"style":179},"npx expo prebuild --clean\n",[456],{"type":41,"tag":90,"props":457,"children":458},{"__ignoreMap":179},[459],{"type":41,"tag":185,"props":460,"children":461},{"class":187,"line":188},[462,466,470,475],{"type":41,"tag":185,"props":463,"children":464},{"style":192},[465],{"type":47,"value":195},{"type":41,"tag":185,"props":467,"children":468},{"style":198},[469],{"type":47,"value":201},{"type":41,"tag":185,"props":471,"children":472},{"style":198},[473],{"type":47,"value":474}," prebuild",{"type":41,"tag":185,"props":476,"children":477},{"style":198},[478],{"type":47,"value":479}," --clean\n",{"type":41,"tag":113,"props":481,"children":482},{},[483,485,491,492,498],{"type":47,"value":484},"This regenerates the ",{"type":41,"tag":90,"props":486,"children":488},{"className":487},[],[489],{"type":47,"value":490},"ios",{"type":47,"value":436},{"type":41,"tag":90,"props":493,"children":495},{"className":494},[],[496],{"type":47,"value":497},"android",{"type":47,"value":499}," directories. Ensure the project is not a bare workflow app before running this command.",{"type":41,"tag":42,"props":501,"children":503},{"id":502},"clear-caches-for-bare-workflow",[504],{"type":47,"value":505},"Clear caches for bare workflow",{"type":41,"tag":113,"props":507,"children":508},{},[509,511,516,518,523],{"type":47,"value":510},"These steps only apply when ",{"type":41,"tag":90,"props":512,"children":514},{"className":513},[],[515],{"type":47,"value":434},{"type":47,"value":517}," and\u002For ",{"type":41,"tag":90,"props":519,"children":521},{"className":520},[],[522],{"type":47,"value":442},{"type":47,"value":524}," directories exist in the project:",{"type":41,"tag":50,"props":526,"children":527},{},[528,539,550],{"type":41,"tag":54,"props":529,"children":530},{},[531,533],{"type":47,"value":532},"Clear the cocoapods cache for iOS: ",{"type":41,"tag":90,"props":534,"children":536},{"className":535},[],[537],{"type":47,"value":538},"cd ios && pod install --repo-update",{"type":41,"tag":54,"props":540,"children":541},{},[542,544],{"type":47,"value":543},"Clear derived data for Xcode: ",{"type":41,"tag":90,"props":545,"children":547},{"className":546},[],[548],{"type":47,"value":549},"npx expo run:ios --no-build-cache",{"type":41,"tag":54,"props":551,"children":552},{},[553,555],{"type":47,"value":554},"Clear the Gradle cache for Android: ",{"type":41,"tag":90,"props":556,"children":558},{"className":557},[],[559],{"type":47,"value":560},"cd android && .\u002Fgradlew clean",{"type":41,"tag":42,"props":562,"children":564},{"id":563},"housekeeping",[565],{"type":47,"value":566},"Housekeeping",{"type":41,"tag":50,"props":568,"children":569},{},[570,581,610,615,628,641,677,682],{"type":41,"tag":54,"props":571,"children":572},{},[573,575],{"type":47,"value":574},"Review release notes for the target SDK version at ",{"type":41,"tag":148,"props":576,"children":579},{"href":577,"rel":578},"https:\u002F\u002Fexpo.dev\u002Fchangelog",[152],[580],{"type":47,"value":577},{"type":41,"tag":54,"props":582,"children":583},{},[584,586,592,594,600,602,608],{"type":47,"value":585},"Update versioned docs links in agent instruction files (",{"type":41,"tag":90,"props":587,"children":589},{"className":588},[],[590],{"type":47,"value":591},"AGENTS.md",{"type":47,"value":593},"). The default template links to ",{"type":41,"tag":90,"props":595,"children":597},{"className":596},[],[598],{"type":47,"value":599},"https:\u002F\u002Fdocs.expo.dev\u002Fversions\u002Fv\u003Cversion>\u002F",{"type":47,"value":601},". Search for ",{"type":41,"tag":90,"props":603,"children":605},{"className":604},[],[606],{"type":47,"value":607},"docs.expo.dev\u002Fversions\u002F",{"type":47,"value":609}," and bump each link to the new SDK version.",{"type":41,"tag":54,"props":611,"children":612},{},[613],{"type":47,"value":614},"If using Expo SDK 54 or later, ensure react-native-worklets is installed — this is required for react-native-reanimated to work.",{"type":41,"tag":54,"props":616,"children":617},{},[618,620,626],{"type":47,"value":619},"Enable React Compiler in SDK 54+ by adding ",{"type":41,"tag":90,"props":621,"children":623},{"className":622},[],[624],{"type":47,"value":625},"\"experiments\": { \"reactCompiler\": true }",{"type":47,"value":627}," to app.json — it's stable and recommended",{"type":41,"tag":54,"props":629,"children":630},{},[631,633,639],{"type":47,"value":632},"Delete sdkVersion from ",{"type":41,"tag":90,"props":634,"children":636},{"className":635},[],[637],{"type":47,"value":638},"app.json",{"type":47,"value":640}," to let Expo manage it automatically",{"type":41,"tag":54,"props":642,"children":643},{},[644,646,652,654,660,662,668,669,675],{"type":47,"value":645},"Remove implicit packages from ",{"type":41,"tag":90,"props":647,"children":649},{"className":648},[],[650],{"type":47,"value":651},"package.json",{"type":47,"value":653},": ",{"type":41,"tag":90,"props":655,"children":657},{"className":656},[],[658],{"type":47,"value":659},"@babel\u002Fcore",{"type":47,"value":661},", ",{"type":41,"tag":90,"props":663,"children":665},{"className":664},[],[666],{"type":47,"value":667},"babel-preset-expo",{"type":47,"value":661},{"type":41,"tag":90,"props":670,"children":672},{"className":671},[],[673],{"type":47,"value":674},"expo-constants",{"type":47,"value":676},".",{"type":41,"tag":54,"props":678,"children":679},{},[680],{"type":47,"value":681},"If the babel.config.js only contains 'babel-preset-expo', delete the file",{"type":41,"tag":54,"props":683,"children":684},{},[685],{"type":47,"value":686},"If the metro.config.js only contains expo defaults, delete the file",{"type":41,"tag":42,"props":688,"children":690},{"id":689},"deprecated-packages",[691],{"type":47,"value":692},"Deprecated Packages",{"type":41,"tag":694,"props":695,"children":696},"table",{},[697,716],{"type":41,"tag":698,"props":699,"children":700},"thead",{},[701],{"type":41,"tag":702,"props":703,"children":704},"tr",{},[705,711],{"type":41,"tag":706,"props":707,"children":708},"th",{},[709],{"type":47,"value":710},"Old Package",{"type":41,"tag":706,"props":712,"children":713},{},[714],{"type":47,"value":715},"Replacement",{"type":41,"tag":717,"props":718,"children":719},"tbody",{},[720,749,766,789,810,831],{"type":41,"tag":702,"props":721,"children":722},{},[723,733],{"type":41,"tag":724,"props":725,"children":726},"td",{},[727],{"type":41,"tag":90,"props":728,"children":730},{"className":729},[],[731],{"type":47,"value":732},"expo-av",{"type":41,"tag":724,"props":734,"children":735},{},[736,742,743],{"type":41,"tag":90,"props":737,"children":739},{"className":738},[],[740],{"type":47,"value":741},"expo-audio",{"type":47,"value":436},{"type":41,"tag":90,"props":744,"children":746},{"className":745},[],[747],{"type":47,"value":748},"expo-video",{"type":41,"tag":702,"props":750,"children":751},{},[752,761],{"type":41,"tag":724,"props":753,"children":754},{},[755],{"type":41,"tag":90,"props":756,"children":758},{"className":757},[],[759],{"type":47,"value":760},"expo-permissions",{"type":41,"tag":724,"props":762,"children":763},{},[764],{"type":47,"value":765},"Individual package permission APIs",{"type":41,"tag":702,"props":767,"children":768},{},[769,778],{"type":41,"tag":724,"props":770,"children":771},{},[772],{"type":41,"tag":90,"props":773,"children":775},{"className":774},[],[776],{"type":47,"value":777},"@expo\u002Fvector-icons",{"type":41,"tag":724,"props":779,"children":780},{},[781,787],{"type":41,"tag":90,"props":782,"children":784},{"className":783},[],[785],{"type":47,"value":786},"expo-symbols",{"type":47,"value":788}," (for SF Symbols)",{"type":41,"tag":702,"props":790,"children":791},{},[792,801],{"type":41,"tag":724,"props":793,"children":794},{},[795],{"type":41,"tag":90,"props":796,"children":798},{"className":797},[],[799],{"type":47,"value":800},"AsyncStorage",{"type":41,"tag":724,"props":802,"children":803},{},[804],{"type":41,"tag":90,"props":805,"children":807},{"className":806},[],[808],{"type":47,"value":809},"expo-sqlite\u002FlocalStorage\u002Finstall",{"type":41,"tag":702,"props":811,"children":812},{},[813,822],{"type":41,"tag":724,"props":814,"children":815},{},[816],{"type":41,"tag":90,"props":817,"children":819},{"className":818},[],[820],{"type":47,"value":821},"expo-app-loading",{"type":41,"tag":724,"props":823,"children":824},{},[825],{"type":41,"tag":90,"props":826,"children":828},{"className":827},[],[829],{"type":47,"value":830},"expo-splash-screen",{"type":41,"tag":702,"props":832,"children":833},{},[834,839],{"type":41,"tag":724,"props":835,"children":836},{},[837],{"type":47,"value":838},"expo-linear-gradient",{"type":41,"tag":724,"props":840,"children":841},{},[842],{"type":47,"value":843},"experimental_backgroundImage + CSS gradients in View",{"type":41,"tag":113,"props":845,"children":846},{},[847],{"type":47,"value":848},"When migrating deprecated packages, update all code usage before removing the old package. For expo-av, consult the migration references to convert Audio.Sound to useAudioPlayer, Audio.Recording to useAudioRecorder, and Video components to VideoView with useVideoPlayer.",{"type":41,"tag":42,"props":850,"children":852},{"id":851},"expoinstallexclude",[853],{"type":47,"value":854},"expo.install.exclude",{"type":41,"tag":113,"props":856,"children":857},{},[858],{"type":47,"value":859},"Check if package.json has excluded packages:",{"type":41,"tag":174,"props":861,"children":865},{"className":862,"code":863,"language":864,"meta":179,"style":179},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"expo\": { \"install\": { \"exclude\": [\"react-native-reanimated\"] } }\n}\n","json",[866],{"type":41,"tag":90,"props":867,"children":868},{"__ignoreMap":179},[869,878,979],{"type":41,"tag":185,"props":870,"children":871},{"class":187,"line":188},[872],{"type":41,"tag":185,"props":873,"children":875},{"style":874},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[876],{"type":47,"value":877},"{\n",{"type":41,"tag":185,"props":879,"children":880},{"class":187,"line":267},[881,886,891,896,901,906,911,916,920,924,928,932,938,942,946,951,955,960,964,969,974],{"type":41,"tag":185,"props":882,"children":883},{"style":874},[884],{"type":47,"value":885},"  \"",{"type":41,"tag":185,"props":887,"children":889},{"style":888},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[890],{"type":47,"value":8},{"type":41,"tag":185,"props":892,"children":893},{"style":874},[894],{"type":47,"value":895},"\"",{"type":41,"tag":185,"props":897,"children":898},{"style":874},[899],{"type":47,"value":900},":",{"type":41,"tag":185,"props":902,"children":903},{"style":874},[904],{"type":47,"value":905}," {",{"type":41,"tag":185,"props":907,"children":908},{"style":874},[909],{"type":47,"value":910}," \"",{"type":41,"tag":185,"props":912,"children":913},{"style":192},[914],{"type":47,"value":915},"install",{"type":41,"tag":185,"props":917,"children":918},{"style":874},[919],{"type":47,"value":895},{"type":41,"tag":185,"props":921,"children":922},{"style":874},[923],{"type":47,"value":900},{"type":41,"tag":185,"props":925,"children":926},{"style":874},[927],{"type":47,"value":905},{"type":41,"tag":185,"props":929,"children":930},{"style":874},[931],{"type":47,"value":910},{"type":41,"tag":185,"props":933,"children":935},{"style":934},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[936],{"type":47,"value":937},"exclude",{"type":41,"tag":185,"props":939,"children":940},{"style":874},[941],{"type":47,"value":895},{"type":41,"tag":185,"props":943,"children":944},{"style":874},[945],{"type":47,"value":900},{"type":41,"tag":185,"props":947,"children":948},{"style":874},[949],{"type":47,"value":950}," [",{"type":41,"tag":185,"props":952,"children":953},{"style":874},[954],{"type":47,"value":895},{"type":41,"tag":185,"props":956,"children":957},{"style":198},[958],{"type":47,"value":959},"react-native-reanimated",{"type":41,"tag":185,"props":961,"children":962},{"style":874},[963],{"type":47,"value":895},{"type":41,"tag":185,"props":965,"children":966},{"style":874},[967],{"type":47,"value":968},"]",{"type":41,"tag":185,"props":970,"children":971},{"style":874},[972],{"type":47,"value":973}," }",{"type":41,"tag":185,"props":975,"children":976},{"style":874},[977],{"type":47,"value":978}," }\n",{"type":41,"tag":185,"props":980,"children":981},{"class":187,"line":368},[982],{"type":41,"tag":185,"props":983,"children":984},{"style":874},[985],{"type":47,"value":986},"}\n",{"type":41,"tag":113,"props":988,"children":989},{},[990],{"type":47,"value":991},"Exclusions are often workarounds that may no longer be needed after upgrading. Review each one.",{"type":41,"tag":42,"props":993,"children":995},{"id":994},"removing-patches",[996],{"type":47,"value":997},"Removing patches",{"type":41,"tag":113,"props":999,"children":1000},{},[1001,1003,1009],{"type":47,"value":1002},"Check if there are any outdated patches in the ",{"type":41,"tag":90,"props":1004,"children":1006},{"className":1005},[],[1007],{"type":47,"value":1008},"patches\u002F",{"type":47,"value":1010}," directory. Remove them if they are no longer needed.",{"type":41,"tag":42,"props":1012,"children":1014},{"id":1013},"postcss",[1015],{"type":47,"value":1016},"Postcss",{"type":41,"tag":50,"props":1018,"children":1019},{},[1020,1047],{"type":41,"tag":54,"props":1021,"children":1022},{},[1023,1029,1031,1037,1039,1045],{"type":41,"tag":90,"props":1024,"children":1026},{"className":1025},[],[1027],{"type":47,"value":1028},"autoprefixer",{"type":47,"value":1030}," isn't needed in SDK +53. Remove it from dependencies and check ",{"type":41,"tag":90,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":47,"value":1036},"postcss.config.js",{"type":47,"value":1038}," or ",{"type":41,"tag":90,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":47,"value":1044},"postcss.config.mjs",{"type":47,"value":1046}," to remove it from the plugins list.",{"type":41,"tag":54,"props":1048,"children":1049},{},[1050,1052,1057],{"type":47,"value":1051},"Use ",{"type":41,"tag":90,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":47,"value":1044},{"type":47,"value":1058}," in SDK +53.",{"type":41,"tag":42,"props":1060,"children":1062},{"id":1061},"metro",[1063],{"type":47,"value":1064},"Metro",{"type":41,"tag":113,"props":1066,"children":1067},{},[1068],{"type":47,"value":1069},"Remove redundant metro config options:",{"type":41,"tag":50,"props":1071,"children":1072},{},[1073,1078,1089,1100,1105],{"type":41,"tag":54,"props":1074,"children":1075},{},[1076],{"type":47,"value":1077},"resolver.unstable_enablePackageExports is enabled by default in SDK +53.",{"type":41,"tag":54,"props":1079,"children":1080},{},[1081,1087],{"type":41,"tag":90,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":47,"value":1086},"experimentalImportSupport",{"type":47,"value":1088}," is enabled by default in SDK +54.",{"type":41,"tag":54,"props":1090,"children":1091},{},[1092,1098],{"type":41,"tag":90,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":47,"value":1097},"EXPO_USE_FAST_RESOLVER=1",{"type":47,"value":1099}," is removed in SDK +54.",{"type":41,"tag":54,"props":1101,"children":1102},{},[1103],{"type":47,"value":1104},"cjs and mjs extensions are supported by default in SDK +50.",{"type":41,"tag":54,"props":1106,"children":1107},{},[1108,1110,1117],{"type":47,"value":1109},"Expo webpack is deprecated, migrate to ",{"type":41,"tag":148,"props":1111,"children":1114},{"href":1112,"rel":1113},"https:\u002F\u002Fdocs.expo.dev\u002Frouter\u002Fmigrate\u002Ffrom-expo-webpack\u002F",[152],[1115],{"type":47,"value":1116},"Expo Router and Metro web",{"type":47,"value":676},{"type":41,"tag":42,"props":1119,"children":1121},{"id":1120},"hermes-engine-v1",[1122],{"type":47,"value":1123},"Hermes engine v1",{"type":41,"tag":113,"props":1125,"children":1126},{},[1127,1129,1135,1137,1143,1145,1151],{"type":47,"value":1128},"Since SDK 55, users can opt-in to use Hermes engine v1 for improved runtime performance. This requires setting ",{"type":41,"tag":90,"props":1130,"children":1132},{"className":1131},[],[1133],{"type":47,"value":1134},"useHermesV1: true",{"type":47,"value":1136}," in the ",{"type":41,"tag":90,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":47,"value":1142},"expo-build-properties",{"type":47,"value":1144}," config plugin, and may require a specific version of the ",{"type":41,"tag":90,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":47,"value":1150},"hermes-compiler",{"type":47,"value":1152}," npm package. Hermes v1 will become a default in some future SDK release.",{"type":41,"tag":42,"props":1154,"children":1156},{"id":1155},"new-architecture",[1157],{"type":47,"value":1158},"New Architecture",{"type":41,"tag":113,"props":1160,"children":1161},{},[1162,1164,1170],{"type":47,"value":1163},"The new architecture is enabled by default, the app.json field ",{"type":41,"tag":90,"props":1165,"children":1167},{"className":1166},[],[1168],{"type":47,"value":1169},"\"newArchEnabled\": true",{"type":47,"value":1171}," is no longer needed as it's the default. Expo Go only supports the new architecture as of SDK +53.",{"type":41,"tag":42,"props":1173,"children":1175},{"id":1174},"submitting-feedback",[1176],{"type":47,"value":1177},"Submitting Feedback",{"type":41,"tag":113,"props":1179,"children":1180},{},[1181],{"type":47,"value":1182},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":41,"tag":174,"props":1184,"children":1186},{"className":176,"code":1185,"language":178,"meta":179,"style":179},"npx --yes submit-expo-feedback@latest --category skills --subject \"expo-upgrade\" \"\u003Cactionable feedback>\"\n",[1187],{"type":41,"tag":90,"props":1188,"children":1189},{"__ignoreMap":179},[1190],{"type":41,"tag":185,"props":1191,"children":1192},{"class":187,"line":188},[1193,1197,1202,1207,1212,1217,1222,1226,1230,1234,1238,1243],{"type":41,"tag":185,"props":1194,"children":1195},{"style":192},[1196],{"type":47,"value":195},{"type":41,"tag":185,"props":1198,"children":1199},{"style":198},[1200],{"type":47,"value":1201}," --yes",{"type":41,"tag":185,"props":1203,"children":1204},{"style":198},[1205],{"type":47,"value":1206}," submit-expo-feedback@latest",{"type":41,"tag":185,"props":1208,"children":1209},{"style":198},[1210],{"type":47,"value":1211}," --category",{"type":41,"tag":185,"props":1213,"children":1214},{"style":198},[1215],{"type":47,"value":1216}," skills",{"type":41,"tag":185,"props":1218,"children":1219},{"style":198},[1220],{"type":47,"value":1221}," --subject",{"type":41,"tag":185,"props":1223,"children":1224},{"style":874},[1225],{"type":47,"value":910},{"type":41,"tag":185,"props":1227,"children":1228},{"style":198},[1229],{"type":47,"value":4},{"type":41,"tag":185,"props":1231,"children":1232},{"style":874},[1233],{"type":47,"value":895},{"type":41,"tag":185,"props":1235,"children":1236},{"style":874},[1237],{"type":47,"value":910},{"type":41,"tag":185,"props":1239,"children":1240},{"style":198},[1241],{"type":47,"value":1242},"\u003Cactionable feedback>",{"type":41,"tag":185,"props":1244,"children":1245},{"style":874},[1246],{"type":47,"value":1247},"\"\n",{"type":41,"tag":113,"props":1249,"children":1250},{},[1251],{"type":47,"value":1252},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":41,"tag":1254,"props":1255,"children":1256},"style",{},[1257],{"type":47,"value":1258},"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":1260,"total":1432},[1261,1277,1292,1305,1319,1333,1351,1362,1377,1395,1410,1421],{"slug":1262,"name":1262,"fn":1263,"description":1264,"org":1265,"tags":1266,"stars":23,"repoUrl":24,"updatedAt":1276},"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},[1267,1269,1272,1273,1275],{"name":1268,"slug":497,"type":15},"Android",{"name":1270,"slug":1271,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},"iOS",{"name":18,"slug":19,"type":15},"2026-07-24T05:36:44.164663",{"slug":1278,"name":1278,"fn":1279,"description":1280,"org":1281,"tags":1282,"stars":23,"repoUrl":24,"updatedAt":1291},"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},[1283,1284,1285,1288],{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},"Frontend","frontend",{"name":1289,"slug":1290,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1296,"tags":1297,"stars":23,"repoUrl":24,"updatedAt":1304},"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},[1298,1299,1300,1303],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1301,"slug":1302,"type":15},"Observability","observability",{"name":13,"slug":14,"type":15},"2026-07-24T05:36:45.220605",{"slug":1306,"name":1306,"fn":1307,"description":1308,"org":1309,"tags":1310,"stars":23,"repoUrl":24,"updatedAt":1318},"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},[1311,1312,1315,1316,1317],{"name":1268,"slug":497,"type":15},{"name":1313,"slug":1314,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},{"name":18,"slug":19,"type":15},"2026-07-31T05:52:18.602058",{"slug":1320,"name":1320,"fn":1321,"description":1322,"org":1323,"tags":1324,"stars":23,"repoUrl":24,"updatedAt":1332},"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},[1325,1328,1329,1330,1331],{"name":1326,"slug":1327,"type":15},"Analytics","analytics",{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1301,"slug":1302,"type":15},"2026-07-24T05:36:50.17095",{"slug":1334,"name":1334,"fn":1335,"description":1336,"org":1337,"tags":1338,"stars":23,"repoUrl":24,"updatedAt":1350},"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},[1339,1342,1345,1346,1347],{"name":1340,"slug":1341,"type":15},"Automation","automation",{"name":1343,"slug":1344,"type":15},"CI\u002FCD","ci-cd",{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":1348,"slug":1349,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":1352,"name":1352,"fn":1353,"description":1354,"org":1355,"tags":1356,"stars":23,"repoUrl":24,"updatedAt":1361},"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},[1357,1358,1359,1360],{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:46.195935",{"slug":1363,"name":1363,"fn":1364,"description":1365,"org":1366,"tags":1367,"stars":23,"repoUrl":24,"updatedAt":1376},"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},[1368,1369,1370,1373,1374,1375],{"name":1268,"slug":497,"type":15},{"name":9,"slug":8,"type":15},{"name":1371,"slug":1372,"type":15},"Integrations","integrations",{"name":1274,"slug":490,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:39.682299",{"slug":1378,"name":1378,"fn":1379,"description":1380,"org":1381,"tags":1382,"stars":23,"repoUrl":24,"updatedAt":1394},"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},[1383,1386,1389,1390,1391],{"name":1384,"slug":1385,"type":15},"API Development","api-development",{"name":1387,"slug":1388,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1392,"slug":1393,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":1396,"name":1396,"fn":1397,"description":1398,"org":1399,"tags":1400,"stars":23,"repoUrl":24,"updatedAt":1409},"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},[1401,1402,1403,1404,1405,1408],{"name":1268,"slug":497,"type":15},{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},{"name":1406,"slug":1407,"type":15},"Local Development","local-development",{"name":18,"slug":19,"type":15},"2026-07-24T05:36:51.160719",{"slug":1411,"name":1411,"fn":1412,"description":1413,"org":1414,"tags":1415,"stars":23,"repoUrl":24,"updatedAt":1420},"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},[1416,1417,1418,1419],{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:41.176872",{"slug":1422,"name":1422,"fn":1423,"description":1424,"org":1425,"tags":1426,"stars":23,"repoUrl":24,"updatedAt":1431},"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},[1427,1428,1429,1430],{"name":9,"slug":8,"type":15},{"name":1371,"slug":1372,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:35.174379",24,{"items":1434,"total":1488},[1435,1443,1450,1457,1465,1473,1481],{"slug":1262,"name":1262,"fn":1263,"description":1264,"org":1436,"tags":1437,"stars":23,"repoUrl":24,"updatedAt":1276},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1438,1439,1440,1441,1442],{"name":1268,"slug":497,"type":15},{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},{"name":18,"slug":19,"type":15},{"slug":1278,"name":1278,"fn":1279,"description":1280,"org":1444,"tags":1445,"stars":23,"repoUrl":24,"updatedAt":1291},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1446,1447,1448,1449],{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":1286,"slug":1287,"type":15},{"name":1289,"slug":1290,"type":15},{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1451,"tags":1452,"stars":23,"repoUrl":24,"updatedAt":1304},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1453,1454,1455,1456],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1301,"slug":1302,"type":15},{"name":13,"slug":14,"type":15},{"slug":1306,"name":1306,"fn":1307,"description":1308,"org":1458,"tags":1459,"stars":23,"repoUrl":24,"updatedAt":1318},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1460,1461,1462,1463,1464],{"name":1268,"slug":497,"type":15},{"name":1313,"slug":1314,"type":15},{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},{"name":18,"slug":19,"type":15},{"slug":1320,"name":1320,"fn":1321,"description":1322,"org":1466,"tags":1467,"stars":23,"repoUrl":24,"updatedAt":1332},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1468,1469,1470,1471,1472],{"name":1326,"slug":1327,"type":15},{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1301,"slug":1302,"type":15},{"slug":1334,"name":1334,"fn":1335,"description":1336,"org":1474,"tags":1475,"stars":23,"repoUrl":24,"updatedAt":1350},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1476,1477,1478,1479,1480],{"name":1340,"slug":1341,"type":15},{"name":1343,"slug":1344,"type":15},{"name":1270,"slug":1271,"type":15},{"name":9,"slug":8,"type":15},{"name":1348,"slug":1349,"type":15},{"slug":1352,"name":1352,"fn":1353,"description":1354,"org":1482,"tags":1483,"stars":23,"repoUrl":24,"updatedAt":1361},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1484,1485,1486,1487],{"name":9,"slug":8,"type":15},{"name":1274,"slug":490,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},22]