[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-eas-app-stores":3,"mdc-333kmn-key":37,"related-org-expo-eas-app-stores":1621,"related-repo-expo-eas-app-stores":1785},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"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},"expo","Expo","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fexpo.png",[12,16,17,20,23],{"name":13,"slug":14,"type":15},"Android","android","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"iOS","ios",{"name":21,"slug":22,"type":15},"Mobile","mobile",{"name":24,"slug":25,"type":15},"Deployment","deployment",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:44.164663","MIT",111,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"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\u002Feas-app-stores","---\nname: eas-app-stores\ndescription: 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.\nversion: 1.0.0\nlicense: MIT\n---\n\n# App Store Deployment\n\n> **EAS service - costs apply.** This skill uses Expo Application Services (EAS), a paid product with free-tier limits. `eas build` and `eas submit` consume your plan's build minutes, and store submission requires paid Apple Developer and Google Play accounts. Review https:\u002F\u002Fexpo.dev\u002Fpricing before running cloud commands.\n\nThis skill covers building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). For deploying an Expo website or API routes to EAS Hosting, use the `eas-hosting` skill.\n\n## References\n\nConsult these resources as needed:\n\n- .\u002Freferences\u002Fworkflows.md -- CI\u002FCD workflows for automated store releases and PR previews\n- .\u002Freferences\u002Ftestflight.md -- Submitting iOS builds to TestFlight for beta testing\n- .\u002Freferences\u002Fapp-store-metadata.md -- Managing App Store metadata and ASO optimization\n- .\u002Freferences\u002Fplay-store.md -- Submitting Android builds to Google Play Store\n- .\u002Freferences\u002Fios-app-store.md -- iOS App Store submission and review process\n\n## Quick Start\n\n### Install EAS CLI\n\n```bash\nnpm install -g eas-cli\neas login\n```\n\n### Initialize EAS\n\n```bash\nnpx eas-cli@latest init\n```\n\nThis creates `eas.json` with build profiles.\n\n## Build Commands\n\n### Production Builds\n\n```bash\n# iOS App Store build\nnpx eas-cli@latest build -p ios --profile production\n\n# Android Play Store build\nnpx eas-cli@latest build -p android --profile production\n\n# Both platforms\nnpx eas-cli@latest build --profile production\n```\n\n### Submit to Stores\n\n```bash\n# iOS: Build and submit to App Store Connect\nnpx eas-cli@latest build -p ios --profile production --submit\n\n# Android: Build and submit to Play Store\nnpx eas-cli@latest build -p android --profile production --submit\n\n# Shortcut for iOS TestFlight\nnpx testflight\n```\n\n## Web & API Route Hosting\n\nDeploying an Expo website or Expo Router API routes to EAS Hosting (`npx expo export -p web` then `eas deploy`) is covered by the `eas-hosting` skill. This skill focuses on native app store releases.\n\n## EAS Configuration\n\nStandard `eas.json` for production deployments:\n\n```json\n{\n  \"cli\": {\n    \"version\": \">= 16.0.1\",\n    \"appVersionSource\": \"remote\"\n  },\n  \"build\": {\n    \"production\": {\n      \"autoIncrement\": true,\n      \"ios\": {\n        \"resourceClass\": \"m-medium\"\n      }\n    },\n    \"development\": {\n      \"developmentClient\": true,\n      \"distribution\": \"internal\"\n    }\n  },\n  \"submit\": {\n    \"production\": {\n      \"ios\": {\n        \"appleId\": \"your@email.com\",\n        \"ascAppId\": \"1234567890\"\n      },\n      \"android\": {\n        \"serviceAccountKeyPath\": \".\u002Fgoogle-service-account.json\",\n        \"track\": \"internal\"\n      }\n    }\n  }\n}\n```\n\n## Platform-Specific Guides\n\n### iOS\n\n- Use `npx testflight` for quick TestFlight submissions\n- Configure Apple credentials via `eas credentials`\n- See .\u002Freferences\u002Ftestflight.md for credential setup\n- See .\u002Freferences\u002Fios-app-store.md for App Store submission\n\n### Android\n\n- Set up Google Play Console service account\n- Configure tracks: internal → closed → open → production\n- See .\u002Freferences\u002Fplay-store.md for detailed setup\n\n## Automated Releases\n\nEAS Workflows automate the build → submit → update pipeline for CI\u002FCD. See .\u002Freferences\u002Fworkflows.md for store-release examples. To author or validate workflow YAML, use the `eas-workflows` skill - it works from the live workflow schema.\n\n## Version Management\n\nEAS manages version numbers automatically with `appVersionSource: \"remote\"`:\n\n```bash\n# Check current versions\neas build:version:get\n\n# Manually set version\neas build:version:set -p ios --build-number 42\n```\n\n## Monitoring\n\n```bash\n# List recent builds\neas build:list\n\n# Check build status\neas build:view\n\n# View submission status\neas submit:list\n```\n\n## Submitting Feedback\nIf you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:\n```bash\nnpx --yes submit-expo-feedback@latest --category skills --subject \"eas-app-stores\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\n",{"data":38,"body":40},{"name":4,"description":6,"version":39,"license":29},"1.0.0",{"type":41,"children":42},"root",[43,52,95,108,115,120,150,156,163,216,222,247,260,266,272,417,423,552,558,586,592,604,1270,1276,1280,1317,1321,1339,1345,1358,1364,1376,1448,1454,1535,1541,1546,1610,1615],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"app-store-deployment",[49],{"type":50,"value":51},"text","App Store Deployment",{"type":44,"tag":53,"props":54,"children":55},"blockquote",{},[56],{"type":44,"tag":57,"props":58,"children":59},"p",{},[60,66,68,75,77,83,85,93],{"type":44,"tag":61,"props":62,"children":63},"strong",{},[64],{"type":50,"value":65},"EAS service - costs apply.",{"type":50,"value":67}," This skill uses Expo Application Services (EAS), a paid product with free-tier limits. ",{"type":44,"tag":69,"props":70,"children":72},"code",{"className":71},[],[73],{"type":50,"value":74},"eas build",{"type":50,"value":76}," and ",{"type":44,"tag":69,"props":78,"children":80},{"className":79},[],[81],{"type":50,"value":82},"eas submit",{"type":50,"value":84}," consume your plan's build minutes, and store submission requires paid Apple Developer and Google Play accounts. Review ",{"type":44,"tag":86,"props":87,"children":91},"a",{"href":88,"rel":89},"https:\u002F\u002Fexpo.dev\u002Fpricing",[90],"nofollow",[92],{"type":50,"value":88},{"type":50,"value":94}," before running cloud commands.",{"type":44,"tag":57,"props":96,"children":97},{},[98,100,106],{"type":50,"value":99},"This skill covers building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). For deploying an Expo website or API routes to EAS Hosting, use the ",{"type":44,"tag":69,"props":101,"children":103},{"className":102},[],[104],{"type":50,"value":105},"eas-hosting",{"type":50,"value":107}," skill.",{"type":44,"tag":109,"props":110,"children":112},"h2",{"id":111},"references",[113],{"type":50,"value":114},"References",{"type":44,"tag":57,"props":116,"children":117},{},[118],{"type":50,"value":119},"Consult these resources as needed:",{"type":44,"tag":121,"props":122,"children":123},"ul",{},[124,130,135,140,145],{"type":44,"tag":125,"props":126,"children":127},"li",{},[128],{"type":50,"value":129},".\u002Freferences\u002Fworkflows.md -- CI\u002FCD workflows for automated store releases and PR previews",{"type":44,"tag":125,"props":131,"children":132},{},[133],{"type":50,"value":134},".\u002Freferences\u002Ftestflight.md -- Submitting iOS builds to TestFlight for beta testing",{"type":44,"tag":125,"props":136,"children":137},{},[138],{"type":50,"value":139},".\u002Freferences\u002Fapp-store-metadata.md -- Managing App Store metadata and ASO optimization",{"type":44,"tag":125,"props":141,"children":142},{},[143],{"type":50,"value":144},".\u002Freferences\u002Fplay-store.md -- Submitting Android builds to Google Play Store",{"type":44,"tag":125,"props":146,"children":147},{},[148],{"type":50,"value":149},".\u002Freferences\u002Fios-app-store.md -- iOS App Store submission and review process",{"type":44,"tag":109,"props":151,"children":153},{"id":152},"quick-start",[154],{"type":50,"value":155},"Quick Start",{"type":44,"tag":157,"props":158,"children":160},"h3",{"id":159},"install-eas-cli",[161],{"type":50,"value":162},"Install EAS CLI",{"type":44,"tag":164,"props":165,"children":170},"pre",{"className":166,"code":167,"language":168,"meta":169,"style":169},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install -g eas-cli\neas login\n","bash","",[171],{"type":44,"tag":69,"props":172,"children":173},{"__ignoreMap":169},[174,202],{"type":44,"tag":175,"props":176,"children":179},"span",{"class":177,"line":178},"line",1,[180,186,192,197],{"type":44,"tag":175,"props":181,"children":183},{"style":182},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[184],{"type":50,"value":185},"npm",{"type":44,"tag":175,"props":187,"children":189},{"style":188},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[190],{"type":50,"value":191}," install",{"type":44,"tag":175,"props":193,"children":194},{"style":188},[195],{"type":50,"value":196}," -g",{"type":44,"tag":175,"props":198,"children":199},{"style":188},[200],{"type":50,"value":201}," eas-cli\n",{"type":44,"tag":175,"props":203,"children":205},{"class":177,"line":204},2,[206,211],{"type":44,"tag":175,"props":207,"children":208},{"style":182},[209],{"type":50,"value":210},"eas",{"type":44,"tag":175,"props":212,"children":213},{"style":188},[214],{"type":50,"value":215}," login\n",{"type":44,"tag":157,"props":217,"children":219},{"id":218},"initialize-eas",[220],{"type":50,"value":221},"Initialize EAS",{"type":44,"tag":164,"props":223,"children":225},{"className":166,"code":224,"language":168,"meta":169,"style":169},"npx eas-cli@latest init\n",[226],{"type":44,"tag":69,"props":227,"children":228},{"__ignoreMap":169},[229],{"type":44,"tag":175,"props":230,"children":231},{"class":177,"line":178},[232,237,242],{"type":44,"tag":175,"props":233,"children":234},{"style":182},[235],{"type":50,"value":236},"npx",{"type":44,"tag":175,"props":238,"children":239},{"style":188},[240],{"type":50,"value":241}," eas-cli@latest",{"type":44,"tag":175,"props":243,"children":244},{"style":188},[245],{"type":50,"value":246}," init\n",{"type":44,"tag":57,"props":248,"children":249},{},[250,252,258],{"type":50,"value":251},"This creates ",{"type":44,"tag":69,"props":253,"children":255},{"className":254},[],[256],{"type":50,"value":257},"eas.json",{"type":50,"value":259}," with build profiles.",{"type":44,"tag":109,"props":261,"children":263},{"id":262},"build-commands",[264],{"type":50,"value":265},"Build Commands",{"type":44,"tag":157,"props":267,"children":269},{"id":268},"production-builds",[270],{"type":50,"value":271},"Production Builds",{"type":44,"tag":164,"props":273,"children":275},{"className":166,"code":274,"language":168,"meta":169,"style":169},"# iOS App Store build\nnpx eas-cli@latest build -p ios --profile production\n\n# Android Play Store build\nnpx eas-cli@latest build -p android --profile production\n\n# Both platforms\nnpx eas-cli@latest build --profile production\n",[276],{"type":44,"tag":69,"props":277,"children":278},{"__ignoreMap":169},[279,288,324,334,343,376,384,393],{"type":44,"tag":175,"props":280,"children":281},{"class":177,"line":178},[282],{"type":44,"tag":175,"props":283,"children":285},{"style":284},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[286],{"type":50,"value":287},"# iOS App Store build\n",{"type":44,"tag":175,"props":289,"children":290},{"class":177,"line":204},[291,295,299,304,309,314,319],{"type":44,"tag":175,"props":292,"children":293},{"style":182},[294],{"type":50,"value":236},{"type":44,"tag":175,"props":296,"children":297},{"style":188},[298],{"type":50,"value":241},{"type":44,"tag":175,"props":300,"children":301},{"style":188},[302],{"type":50,"value":303}," build",{"type":44,"tag":175,"props":305,"children":306},{"style":188},[307],{"type":50,"value":308}," -p",{"type":44,"tag":175,"props":310,"children":311},{"style":188},[312],{"type":50,"value":313}," ios",{"type":44,"tag":175,"props":315,"children":316},{"style":188},[317],{"type":50,"value":318}," --profile",{"type":44,"tag":175,"props":320,"children":321},{"style":188},[322],{"type":50,"value":323}," production\n",{"type":44,"tag":175,"props":325,"children":327},{"class":177,"line":326},3,[328],{"type":44,"tag":175,"props":329,"children":331},{"emptyLinePlaceholder":330},true,[332],{"type":50,"value":333},"\n",{"type":44,"tag":175,"props":335,"children":337},{"class":177,"line":336},4,[338],{"type":44,"tag":175,"props":339,"children":340},{"style":284},[341],{"type":50,"value":342},"# Android Play Store build\n",{"type":44,"tag":175,"props":344,"children":346},{"class":177,"line":345},5,[347,351,355,359,363,368,372],{"type":44,"tag":175,"props":348,"children":349},{"style":182},[350],{"type":50,"value":236},{"type":44,"tag":175,"props":352,"children":353},{"style":188},[354],{"type":50,"value":241},{"type":44,"tag":175,"props":356,"children":357},{"style":188},[358],{"type":50,"value":303},{"type":44,"tag":175,"props":360,"children":361},{"style":188},[362],{"type":50,"value":308},{"type":44,"tag":175,"props":364,"children":365},{"style":188},[366],{"type":50,"value":367}," android",{"type":44,"tag":175,"props":369,"children":370},{"style":188},[371],{"type":50,"value":318},{"type":44,"tag":175,"props":373,"children":374},{"style":188},[375],{"type":50,"value":323},{"type":44,"tag":175,"props":377,"children":379},{"class":177,"line":378},6,[380],{"type":44,"tag":175,"props":381,"children":382},{"emptyLinePlaceholder":330},[383],{"type":50,"value":333},{"type":44,"tag":175,"props":385,"children":387},{"class":177,"line":386},7,[388],{"type":44,"tag":175,"props":389,"children":390},{"style":284},[391],{"type":50,"value":392},"# Both platforms\n",{"type":44,"tag":175,"props":394,"children":396},{"class":177,"line":395},8,[397,401,405,409,413],{"type":44,"tag":175,"props":398,"children":399},{"style":182},[400],{"type":50,"value":236},{"type":44,"tag":175,"props":402,"children":403},{"style":188},[404],{"type":50,"value":241},{"type":44,"tag":175,"props":406,"children":407},{"style":188},[408],{"type":50,"value":303},{"type":44,"tag":175,"props":410,"children":411},{"style":188},[412],{"type":50,"value":318},{"type":44,"tag":175,"props":414,"children":415},{"style":188},[416],{"type":50,"value":323},{"type":44,"tag":157,"props":418,"children":420},{"id":419},"submit-to-stores",[421],{"type":50,"value":422},"Submit to Stores",{"type":44,"tag":164,"props":424,"children":426},{"className":166,"code":425,"language":168,"meta":169,"style":169},"# iOS: Build and submit to App Store Connect\nnpx eas-cli@latest build -p ios --profile production --submit\n\n# Android: Build and submit to Play Store\nnpx eas-cli@latest build -p android --profile production --submit\n\n# Shortcut for iOS TestFlight\nnpx testflight\n",[427],{"type":44,"tag":69,"props":428,"children":429},{"__ignoreMap":169},[430,438,475,482,490,525,532,540],{"type":44,"tag":175,"props":431,"children":432},{"class":177,"line":178},[433],{"type":44,"tag":175,"props":434,"children":435},{"style":284},[436],{"type":50,"value":437},"# iOS: Build and submit to App Store Connect\n",{"type":44,"tag":175,"props":439,"children":440},{"class":177,"line":204},[441,445,449,453,457,461,465,470],{"type":44,"tag":175,"props":442,"children":443},{"style":182},[444],{"type":50,"value":236},{"type":44,"tag":175,"props":446,"children":447},{"style":188},[448],{"type":50,"value":241},{"type":44,"tag":175,"props":450,"children":451},{"style":188},[452],{"type":50,"value":303},{"type":44,"tag":175,"props":454,"children":455},{"style":188},[456],{"type":50,"value":308},{"type":44,"tag":175,"props":458,"children":459},{"style":188},[460],{"type":50,"value":313},{"type":44,"tag":175,"props":462,"children":463},{"style":188},[464],{"type":50,"value":318},{"type":44,"tag":175,"props":466,"children":467},{"style":188},[468],{"type":50,"value":469}," production",{"type":44,"tag":175,"props":471,"children":472},{"style":188},[473],{"type":50,"value":474}," --submit\n",{"type":44,"tag":175,"props":476,"children":477},{"class":177,"line":326},[478],{"type":44,"tag":175,"props":479,"children":480},{"emptyLinePlaceholder":330},[481],{"type":50,"value":333},{"type":44,"tag":175,"props":483,"children":484},{"class":177,"line":336},[485],{"type":44,"tag":175,"props":486,"children":487},{"style":284},[488],{"type":50,"value":489},"# Android: Build and submit to Play Store\n",{"type":44,"tag":175,"props":491,"children":492},{"class":177,"line":345},[493,497,501,505,509,513,517,521],{"type":44,"tag":175,"props":494,"children":495},{"style":182},[496],{"type":50,"value":236},{"type":44,"tag":175,"props":498,"children":499},{"style":188},[500],{"type":50,"value":241},{"type":44,"tag":175,"props":502,"children":503},{"style":188},[504],{"type":50,"value":303},{"type":44,"tag":175,"props":506,"children":507},{"style":188},[508],{"type":50,"value":308},{"type":44,"tag":175,"props":510,"children":511},{"style":188},[512],{"type":50,"value":367},{"type":44,"tag":175,"props":514,"children":515},{"style":188},[516],{"type":50,"value":318},{"type":44,"tag":175,"props":518,"children":519},{"style":188},[520],{"type":50,"value":469},{"type":44,"tag":175,"props":522,"children":523},{"style":188},[524],{"type":50,"value":474},{"type":44,"tag":175,"props":526,"children":527},{"class":177,"line":378},[528],{"type":44,"tag":175,"props":529,"children":530},{"emptyLinePlaceholder":330},[531],{"type":50,"value":333},{"type":44,"tag":175,"props":533,"children":534},{"class":177,"line":386},[535],{"type":44,"tag":175,"props":536,"children":537},{"style":284},[538],{"type":50,"value":539},"# Shortcut for iOS TestFlight\n",{"type":44,"tag":175,"props":541,"children":542},{"class":177,"line":395},[543,547],{"type":44,"tag":175,"props":544,"children":545},{"style":182},[546],{"type":50,"value":236},{"type":44,"tag":175,"props":548,"children":549},{"style":188},[550],{"type":50,"value":551}," testflight\n",{"type":44,"tag":109,"props":553,"children":555},{"id":554},"web-api-route-hosting",[556],{"type":50,"value":557},"Web & API Route Hosting",{"type":44,"tag":57,"props":559,"children":560},{},[561,563,569,571,577,579,584],{"type":50,"value":562},"Deploying an Expo website or Expo Router API routes to EAS Hosting (",{"type":44,"tag":69,"props":564,"children":566},{"className":565},[],[567],{"type":50,"value":568},"npx expo export -p web",{"type":50,"value":570}," then ",{"type":44,"tag":69,"props":572,"children":574},{"className":573},[],[575],{"type":50,"value":576},"eas deploy",{"type":50,"value":578},") is covered by the ",{"type":44,"tag":69,"props":580,"children":582},{"className":581},[],[583],{"type":50,"value":105},{"type":50,"value":585}," skill. This skill focuses on native app store releases.",{"type":44,"tag":109,"props":587,"children":589},{"id":588},"eas-configuration",[590],{"type":50,"value":591},"EAS Configuration",{"type":44,"tag":57,"props":593,"children":594},{},[595,597,602],{"type":50,"value":596},"Standard ",{"type":44,"tag":69,"props":598,"children":600},{"className":599},[],[601],{"type":50,"value":257},{"type":50,"value":603}," for production deployments:",{"type":44,"tag":164,"props":605,"children":609},{"className":606,"code":607,"language":608,"meta":169,"style":169},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"cli\": {\n    \"version\": \">= 16.0.1\",\n    \"appVersionSource\": \"remote\"\n  },\n  \"build\": {\n    \"production\": {\n      \"autoIncrement\": true,\n      \"ios\": {\n        \"resourceClass\": \"m-medium\"\n      }\n    },\n    \"development\": {\n      \"developmentClient\": true,\n      \"distribution\": \"internal\"\n    }\n  },\n  \"submit\": {\n    \"production\": {\n      \"ios\": {\n        \"appleId\": \"your@email.com\",\n        \"ascAppId\": \"1234567890\"\n      },\n      \"android\": {\n        \"serviceAccountKeyPath\": \".\u002Fgoogle-service-account.json\",\n        \"track\": \"internal\"\n      }\n    }\n  }\n}\n","json",[610],{"type":44,"tag":69,"props":611,"children":612},{"__ignoreMap":169},[613,622,651,691,725,733,757,781,808,832,868,877,886,911,936,970,979,987,1012,1036,1060,1098,1132,1141,1165,1203,1236,1244,1252,1261],{"type":44,"tag":175,"props":614,"children":615},{"class":177,"line":178},[616],{"type":44,"tag":175,"props":617,"children":619},{"style":618},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[620],{"type":50,"value":621},"{\n",{"type":44,"tag":175,"props":623,"children":624},{"class":177,"line":204},[625,630,636,641,646],{"type":44,"tag":175,"props":626,"children":627},{"style":618},[628],{"type":50,"value":629},"  \"",{"type":44,"tag":175,"props":631,"children":633},{"style":632},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[634],{"type":50,"value":635},"cli",{"type":44,"tag":175,"props":637,"children":638},{"style":618},[639],{"type":50,"value":640},"\"",{"type":44,"tag":175,"props":642,"children":643},{"style":618},[644],{"type":50,"value":645},":",{"type":44,"tag":175,"props":647,"children":648},{"style":618},[649],{"type":50,"value":650}," {\n",{"type":44,"tag":175,"props":652,"children":653},{"class":177,"line":326},[654,659,664,668,672,677,682,686],{"type":44,"tag":175,"props":655,"children":656},{"style":618},[657],{"type":50,"value":658},"    \"",{"type":44,"tag":175,"props":660,"children":661},{"style":182},[662],{"type":50,"value":663},"version",{"type":44,"tag":175,"props":665,"children":666},{"style":618},[667],{"type":50,"value":640},{"type":44,"tag":175,"props":669,"children":670},{"style":618},[671],{"type":50,"value":645},{"type":44,"tag":175,"props":673,"children":674},{"style":618},[675],{"type":50,"value":676}," \"",{"type":44,"tag":175,"props":678,"children":679},{"style":188},[680],{"type":50,"value":681},">= 16.0.1",{"type":44,"tag":175,"props":683,"children":684},{"style":618},[685],{"type":50,"value":640},{"type":44,"tag":175,"props":687,"children":688},{"style":618},[689],{"type":50,"value":690},",\n",{"type":44,"tag":175,"props":692,"children":693},{"class":177,"line":336},[694,698,703,707,711,715,720],{"type":44,"tag":175,"props":695,"children":696},{"style":618},[697],{"type":50,"value":658},{"type":44,"tag":175,"props":699,"children":700},{"style":182},[701],{"type":50,"value":702},"appVersionSource",{"type":44,"tag":175,"props":704,"children":705},{"style":618},[706],{"type":50,"value":640},{"type":44,"tag":175,"props":708,"children":709},{"style":618},[710],{"type":50,"value":645},{"type":44,"tag":175,"props":712,"children":713},{"style":618},[714],{"type":50,"value":676},{"type":44,"tag":175,"props":716,"children":717},{"style":188},[718],{"type":50,"value":719},"remote",{"type":44,"tag":175,"props":721,"children":722},{"style":618},[723],{"type":50,"value":724},"\"\n",{"type":44,"tag":175,"props":726,"children":727},{"class":177,"line":345},[728],{"type":44,"tag":175,"props":729,"children":730},{"style":618},[731],{"type":50,"value":732},"  },\n",{"type":44,"tag":175,"props":734,"children":735},{"class":177,"line":378},[736,740,745,749,753],{"type":44,"tag":175,"props":737,"children":738},{"style":618},[739],{"type":50,"value":629},{"type":44,"tag":175,"props":741,"children":742},{"style":632},[743],{"type":50,"value":744},"build",{"type":44,"tag":175,"props":746,"children":747},{"style":618},[748],{"type":50,"value":640},{"type":44,"tag":175,"props":750,"children":751},{"style":618},[752],{"type":50,"value":645},{"type":44,"tag":175,"props":754,"children":755},{"style":618},[756],{"type":50,"value":650},{"type":44,"tag":175,"props":758,"children":759},{"class":177,"line":386},[760,764,769,773,777],{"type":44,"tag":175,"props":761,"children":762},{"style":618},[763],{"type":50,"value":658},{"type":44,"tag":175,"props":765,"children":766},{"style":182},[767],{"type":50,"value":768},"production",{"type":44,"tag":175,"props":770,"children":771},{"style":618},[772],{"type":50,"value":640},{"type":44,"tag":175,"props":774,"children":775},{"style":618},[776],{"type":50,"value":645},{"type":44,"tag":175,"props":778,"children":779},{"style":618},[780],{"type":50,"value":650},{"type":44,"tag":175,"props":782,"children":783},{"class":177,"line":395},[784,789,795,799,803],{"type":44,"tag":175,"props":785,"children":786},{"style":618},[787],{"type":50,"value":788},"      \"",{"type":44,"tag":175,"props":790,"children":792},{"style":791},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[793],{"type":50,"value":794},"autoIncrement",{"type":44,"tag":175,"props":796,"children":797},{"style":618},[798],{"type":50,"value":640},{"type":44,"tag":175,"props":800,"children":801},{"style":618},[802],{"type":50,"value":645},{"type":44,"tag":175,"props":804,"children":805},{"style":618},[806],{"type":50,"value":807}," true,\n",{"type":44,"tag":175,"props":809,"children":811},{"class":177,"line":810},9,[812,816,820,824,828],{"type":44,"tag":175,"props":813,"children":814},{"style":618},[815],{"type":50,"value":788},{"type":44,"tag":175,"props":817,"children":818},{"style":791},[819],{"type":50,"value":19},{"type":44,"tag":175,"props":821,"children":822},{"style":618},[823],{"type":50,"value":640},{"type":44,"tag":175,"props":825,"children":826},{"style":618},[827],{"type":50,"value":645},{"type":44,"tag":175,"props":829,"children":830},{"style":618},[831],{"type":50,"value":650},{"type":44,"tag":175,"props":833,"children":835},{"class":177,"line":834},10,[836,841,847,851,855,859,864],{"type":44,"tag":175,"props":837,"children":838},{"style":618},[839],{"type":50,"value":840},"        \"",{"type":44,"tag":175,"props":842,"children":844},{"style":843},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[845],{"type":50,"value":846},"resourceClass",{"type":44,"tag":175,"props":848,"children":849},{"style":618},[850],{"type":50,"value":640},{"type":44,"tag":175,"props":852,"children":853},{"style":618},[854],{"type":50,"value":645},{"type":44,"tag":175,"props":856,"children":857},{"style":618},[858],{"type":50,"value":676},{"type":44,"tag":175,"props":860,"children":861},{"style":188},[862],{"type":50,"value":863},"m-medium",{"type":44,"tag":175,"props":865,"children":866},{"style":618},[867],{"type":50,"value":724},{"type":44,"tag":175,"props":869,"children":871},{"class":177,"line":870},11,[872],{"type":44,"tag":175,"props":873,"children":874},{"style":618},[875],{"type":50,"value":876},"      }\n",{"type":44,"tag":175,"props":878,"children":880},{"class":177,"line":879},12,[881],{"type":44,"tag":175,"props":882,"children":883},{"style":618},[884],{"type":50,"value":885},"    },\n",{"type":44,"tag":175,"props":887,"children":889},{"class":177,"line":888},13,[890,894,899,903,907],{"type":44,"tag":175,"props":891,"children":892},{"style":618},[893],{"type":50,"value":658},{"type":44,"tag":175,"props":895,"children":896},{"style":182},[897],{"type":50,"value":898},"development",{"type":44,"tag":175,"props":900,"children":901},{"style":618},[902],{"type":50,"value":640},{"type":44,"tag":175,"props":904,"children":905},{"style":618},[906],{"type":50,"value":645},{"type":44,"tag":175,"props":908,"children":909},{"style":618},[910],{"type":50,"value":650},{"type":44,"tag":175,"props":912,"children":914},{"class":177,"line":913},14,[915,919,924,928,932],{"type":44,"tag":175,"props":916,"children":917},{"style":618},[918],{"type":50,"value":788},{"type":44,"tag":175,"props":920,"children":921},{"style":791},[922],{"type":50,"value":923},"developmentClient",{"type":44,"tag":175,"props":925,"children":926},{"style":618},[927],{"type":50,"value":640},{"type":44,"tag":175,"props":929,"children":930},{"style":618},[931],{"type":50,"value":645},{"type":44,"tag":175,"props":933,"children":934},{"style":618},[935],{"type":50,"value":807},{"type":44,"tag":175,"props":937,"children":939},{"class":177,"line":938},15,[940,944,949,953,957,961,966],{"type":44,"tag":175,"props":941,"children":942},{"style":618},[943],{"type":50,"value":788},{"type":44,"tag":175,"props":945,"children":946},{"style":791},[947],{"type":50,"value":948},"distribution",{"type":44,"tag":175,"props":950,"children":951},{"style":618},[952],{"type":50,"value":640},{"type":44,"tag":175,"props":954,"children":955},{"style":618},[956],{"type":50,"value":645},{"type":44,"tag":175,"props":958,"children":959},{"style":618},[960],{"type":50,"value":676},{"type":44,"tag":175,"props":962,"children":963},{"style":188},[964],{"type":50,"value":965},"internal",{"type":44,"tag":175,"props":967,"children":968},{"style":618},[969],{"type":50,"value":724},{"type":44,"tag":175,"props":971,"children":973},{"class":177,"line":972},16,[974],{"type":44,"tag":175,"props":975,"children":976},{"style":618},[977],{"type":50,"value":978},"    }\n",{"type":44,"tag":175,"props":980,"children":982},{"class":177,"line":981},17,[983],{"type":44,"tag":175,"props":984,"children":985},{"style":618},[986],{"type":50,"value":732},{"type":44,"tag":175,"props":988,"children":990},{"class":177,"line":989},18,[991,995,1000,1004,1008],{"type":44,"tag":175,"props":992,"children":993},{"style":618},[994],{"type":50,"value":629},{"type":44,"tag":175,"props":996,"children":997},{"style":632},[998],{"type":50,"value":999},"submit",{"type":44,"tag":175,"props":1001,"children":1002},{"style":618},[1003],{"type":50,"value":640},{"type":44,"tag":175,"props":1005,"children":1006},{"style":618},[1007],{"type":50,"value":645},{"type":44,"tag":175,"props":1009,"children":1010},{"style":618},[1011],{"type":50,"value":650},{"type":44,"tag":175,"props":1013,"children":1015},{"class":177,"line":1014},19,[1016,1020,1024,1028,1032],{"type":44,"tag":175,"props":1017,"children":1018},{"style":618},[1019],{"type":50,"value":658},{"type":44,"tag":175,"props":1021,"children":1022},{"style":182},[1023],{"type":50,"value":768},{"type":44,"tag":175,"props":1025,"children":1026},{"style":618},[1027],{"type":50,"value":640},{"type":44,"tag":175,"props":1029,"children":1030},{"style":618},[1031],{"type":50,"value":645},{"type":44,"tag":175,"props":1033,"children":1034},{"style":618},[1035],{"type":50,"value":650},{"type":44,"tag":175,"props":1037,"children":1039},{"class":177,"line":1038},20,[1040,1044,1048,1052,1056],{"type":44,"tag":175,"props":1041,"children":1042},{"style":618},[1043],{"type":50,"value":788},{"type":44,"tag":175,"props":1045,"children":1046},{"style":791},[1047],{"type":50,"value":19},{"type":44,"tag":175,"props":1049,"children":1050},{"style":618},[1051],{"type":50,"value":640},{"type":44,"tag":175,"props":1053,"children":1054},{"style":618},[1055],{"type":50,"value":645},{"type":44,"tag":175,"props":1057,"children":1058},{"style":618},[1059],{"type":50,"value":650},{"type":44,"tag":175,"props":1061,"children":1063},{"class":177,"line":1062},21,[1064,1068,1073,1077,1081,1085,1090,1094],{"type":44,"tag":175,"props":1065,"children":1066},{"style":618},[1067],{"type":50,"value":840},{"type":44,"tag":175,"props":1069,"children":1070},{"style":843},[1071],{"type":50,"value":1072},"appleId",{"type":44,"tag":175,"props":1074,"children":1075},{"style":618},[1076],{"type":50,"value":640},{"type":44,"tag":175,"props":1078,"children":1079},{"style":618},[1080],{"type":50,"value":645},{"type":44,"tag":175,"props":1082,"children":1083},{"style":618},[1084],{"type":50,"value":676},{"type":44,"tag":175,"props":1086,"children":1087},{"style":188},[1088],{"type":50,"value":1089},"your@email.com",{"type":44,"tag":175,"props":1091,"children":1092},{"style":618},[1093],{"type":50,"value":640},{"type":44,"tag":175,"props":1095,"children":1096},{"style":618},[1097],{"type":50,"value":690},{"type":44,"tag":175,"props":1099,"children":1101},{"class":177,"line":1100},22,[1102,1106,1111,1115,1119,1123,1128],{"type":44,"tag":175,"props":1103,"children":1104},{"style":618},[1105],{"type":50,"value":840},{"type":44,"tag":175,"props":1107,"children":1108},{"style":843},[1109],{"type":50,"value":1110},"ascAppId",{"type":44,"tag":175,"props":1112,"children":1113},{"style":618},[1114],{"type":50,"value":640},{"type":44,"tag":175,"props":1116,"children":1117},{"style":618},[1118],{"type":50,"value":645},{"type":44,"tag":175,"props":1120,"children":1121},{"style":618},[1122],{"type":50,"value":676},{"type":44,"tag":175,"props":1124,"children":1125},{"style":188},[1126],{"type":50,"value":1127},"1234567890",{"type":44,"tag":175,"props":1129,"children":1130},{"style":618},[1131],{"type":50,"value":724},{"type":44,"tag":175,"props":1133,"children":1135},{"class":177,"line":1134},23,[1136],{"type":44,"tag":175,"props":1137,"children":1138},{"style":618},[1139],{"type":50,"value":1140},"      },\n",{"type":44,"tag":175,"props":1142,"children":1144},{"class":177,"line":1143},24,[1145,1149,1153,1157,1161],{"type":44,"tag":175,"props":1146,"children":1147},{"style":618},[1148],{"type":50,"value":788},{"type":44,"tag":175,"props":1150,"children":1151},{"style":791},[1152],{"type":50,"value":14},{"type":44,"tag":175,"props":1154,"children":1155},{"style":618},[1156],{"type":50,"value":640},{"type":44,"tag":175,"props":1158,"children":1159},{"style":618},[1160],{"type":50,"value":645},{"type":44,"tag":175,"props":1162,"children":1163},{"style":618},[1164],{"type":50,"value":650},{"type":44,"tag":175,"props":1166,"children":1168},{"class":177,"line":1167},25,[1169,1173,1178,1182,1186,1190,1195,1199],{"type":44,"tag":175,"props":1170,"children":1171},{"style":618},[1172],{"type":50,"value":840},{"type":44,"tag":175,"props":1174,"children":1175},{"style":843},[1176],{"type":50,"value":1177},"serviceAccountKeyPath",{"type":44,"tag":175,"props":1179,"children":1180},{"style":618},[1181],{"type":50,"value":640},{"type":44,"tag":175,"props":1183,"children":1184},{"style":618},[1185],{"type":50,"value":645},{"type":44,"tag":175,"props":1187,"children":1188},{"style":618},[1189],{"type":50,"value":676},{"type":44,"tag":175,"props":1191,"children":1192},{"style":188},[1193],{"type":50,"value":1194},".\u002Fgoogle-service-account.json",{"type":44,"tag":175,"props":1196,"children":1197},{"style":618},[1198],{"type":50,"value":640},{"type":44,"tag":175,"props":1200,"children":1201},{"style":618},[1202],{"type":50,"value":690},{"type":44,"tag":175,"props":1204,"children":1206},{"class":177,"line":1205},26,[1207,1211,1216,1220,1224,1228,1232],{"type":44,"tag":175,"props":1208,"children":1209},{"style":618},[1210],{"type":50,"value":840},{"type":44,"tag":175,"props":1212,"children":1213},{"style":843},[1214],{"type":50,"value":1215},"track",{"type":44,"tag":175,"props":1217,"children":1218},{"style":618},[1219],{"type":50,"value":640},{"type":44,"tag":175,"props":1221,"children":1222},{"style":618},[1223],{"type":50,"value":645},{"type":44,"tag":175,"props":1225,"children":1226},{"style":618},[1227],{"type":50,"value":676},{"type":44,"tag":175,"props":1229,"children":1230},{"style":188},[1231],{"type":50,"value":965},{"type":44,"tag":175,"props":1233,"children":1234},{"style":618},[1235],{"type":50,"value":724},{"type":44,"tag":175,"props":1237,"children":1239},{"class":177,"line":1238},27,[1240],{"type":44,"tag":175,"props":1241,"children":1242},{"style":618},[1243],{"type":50,"value":876},{"type":44,"tag":175,"props":1245,"children":1247},{"class":177,"line":1246},28,[1248],{"type":44,"tag":175,"props":1249,"children":1250},{"style":618},[1251],{"type":50,"value":978},{"type":44,"tag":175,"props":1253,"children":1255},{"class":177,"line":1254},29,[1256],{"type":44,"tag":175,"props":1257,"children":1258},{"style":618},[1259],{"type":50,"value":1260},"  }\n",{"type":44,"tag":175,"props":1262,"children":1264},{"class":177,"line":1263},30,[1265],{"type":44,"tag":175,"props":1266,"children":1267},{"style":618},[1268],{"type":50,"value":1269},"}\n",{"type":44,"tag":109,"props":1271,"children":1273},{"id":1272},"platform-specific-guides",[1274],{"type":50,"value":1275},"Platform-Specific Guides",{"type":44,"tag":157,"props":1277,"children":1278},{"id":19},[1279],{"type":50,"value":18},{"type":44,"tag":121,"props":1281,"children":1282},{},[1283,1296,1307,1312],{"type":44,"tag":125,"props":1284,"children":1285},{},[1286,1288,1294],{"type":50,"value":1287},"Use ",{"type":44,"tag":69,"props":1289,"children":1291},{"className":1290},[],[1292],{"type":50,"value":1293},"npx testflight",{"type":50,"value":1295}," for quick TestFlight submissions",{"type":44,"tag":125,"props":1297,"children":1298},{},[1299,1301],{"type":50,"value":1300},"Configure Apple credentials via ",{"type":44,"tag":69,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":50,"value":1306},"eas credentials",{"type":44,"tag":125,"props":1308,"children":1309},{},[1310],{"type":50,"value":1311},"See .\u002Freferences\u002Ftestflight.md for credential setup",{"type":44,"tag":125,"props":1313,"children":1314},{},[1315],{"type":50,"value":1316},"See .\u002Freferences\u002Fios-app-store.md for App Store submission",{"type":44,"tag":157,"props":1318,"children":1319},{"id":14},[1320],{"type":50,"value":13},{"type":44,"tag":121,"props":1322,"children":1323},{},[1324,1329,1334],{"type":44,"tag":125,"props":1325,"children":1326},{},[1327],{"type":50,"value":1328},"Set up Google Play Console service account",{"type":44,"tag":125,"props":1330,"children":1331},{},[1332],{"type":50,"value":1333},"Configure tracks: internal → closed → open → production",{"type":44,"tag":125,"props":1335,"children":1336},{},[1337],{"type":50,"value":1338},"See .\u002Freferences\u002Fplay-store.md for detailed setup",{"type":44,"tag":109,"props":1340,"children":1342},{"id":1341},"automated-releases",[1343],{"type":50,"value":1344},"Automated Releases",{"type":44,"tag":57,"props":1346,"children":1347},{},[1348,1350,1356],{"type":50,"value":1349},"EAS Workflows automate the build → submit → update pipeline for CI\u002FCD. See .\u002Freferences\u002Fworkflows.md for store-release examples. To author or validate workflow YAML, use the ",{"type":44,"tag":69,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":50,"value":1355},"eas-workflows",{"type":50,"value":1357}," skill - it works from the live workflow schema.",{"type":44,"tag":109,"props":1359,"children":1361},{"id":1360},"version-management",[1362],{"type":50,"value":1363},"Version Management",{"type":44,"tag":57,"props":1365,"children":1366},{},[1367,1369,1375],{"type":50,"value":1368},"EAS manages version numbers automatically with ",{"type":44,"tag":69,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":50,"value":1374},"appVersionSource: \"remote\"",{"type":50,"value":645},{"type":44,"tag":164,"props":1377,"children":1379},{"className":166,"code":1378,"language":168,"meta":169,"style":169},"# Check current versions\neas build:version:get\n\n# Manually set version\neas build:version:set -p ios --build-number 42\n",[1380],{"type":44,"tag":69,"props":1381,"children":1382},{"__ignoreMap":169},[1383,1391,1403,1410,1418],{"type":44,"tag":175,"props":1384,"children":1385},{"class":177,"line":178},[1386],{"type":44,"tag":175,"props":1387,"children":1388},{"style":284},[1389],{"type":50,"value":1390},"# Check current versions\n",{"type":44,"tag":175,"props":1392,"children":1393},{"class":177,"line":204},[1394,1398],{"type":44,"tag":175,"props":1395,"children":1396},{"style":182},[1397],{"type":50,"value":210},{"type":44,"tag":175,"props":1399,"children":1400},{"style":188},[1401],{"type":50,"value":1402}," build:version:get\n",{"type":44,"tag":175,"props":1404,"children":1405},{"class":177,"line":326},[1406],{"type":44,"tag":175,"props":1407,"children":1408},{"emptyLinePlaceholder":330},[1409],{"type":50,"value":333},{"type":44,"tag":175,"props":1411,"children":1412},{"class":177,"line":336},[1413],{"type":44,"tag":175,"props":1414,"children":1415},{"style":284},[1416],{"type":50,"value":1417},"# Manually set version\n",{"type":44,"tag":175,"props":1419,"children":1420},{"class":177,"line":345},[1421,1425,1430,1434,1438,1443],{"type":44,"tag":175,"props":1422,"children":1423},{"style":182},[1424],{"type":50,"value":210},{"type":44,"tag":175,"props":1426,"children":1427},{"style":188},[1428],{"type":50,"value":1429}," build:version:set",{"type":44,"tag":175,"props":1431,"children":1432},{"style":188},[1433],{"type":50,"value":308},{"type":44,"tag":175,"props":1435,"children":1436},{"style":188},[1437],{"type":50,"value":313},{"type":44,"tag":175,"props":1439,"children":1440},{"style":188},[1441],{"type":50,"value":1442}," --build-number",{"type":44,"tag":175,"props":1444,"children":1445},{"style":791},[1446],{"type":50,"value":1447}," 42\n",{"type":44,"tag":109,"props":1449,"children":1451},{"id":1450},"monitoring",[1452],{"type":50,"value":1453},"Monitoring",{"type":44,"tag":164,"props":1455,"children":1457},{"className":166,"code":1456,"language":168,"meta":169,"style":169},"# List recent builds\neas build:list\n\n# Check build status\neas build:view\n\n# View submission status\neas submit:list\n",[1458],{"type":44,"tag":69,"props":1459,"children":1460},{"__ignoreMap":169},[1461,1469,1481,1488,1496,1508,1515,1523],{"type":44,"tag":175,"props":1462,"children":1463},{"class":177,"line":178},[1464],{"type":44,"tag":175,"props":1465,"children":1466},{"style":284},[1467],{"type":50,"value":1468},"# List recent builds\n",{"type":44,"tag":175,"props":1470,"children":1471},{"class":177,"line":204},[1472,1476],{"type":44,"tag":175,"props":1473,"children":1474},{"style":182},[1475],{"type":50,"value":210},{"type":44,"tag":175,"props":1477,"children":1478},{"style":188},[1479],{"type":50,"value":1480}," build:list\n",{"type":44,"tag":175,"props":1482,"children":1483},{"class":177,"line":326},[1484],{"type":44,"tag":175,"props":1485,"children":1486},{"emptyLinePlaceholder":330},[1487],{"type":50,"value":333},{"type":44,"tag":175,"props":1489,"children":1490},{"class":177,"line":336},[1491],{"type":44,"tag":175,"props":1492,"children":1493},{"style":284},[1494],{"type":50,"value":1495},"# Check build status\n",{"type":44,"tag":175,"props":1497,"children":1498},{"class":177,"line":345},[1499,1503],{"type":44,"tag":175,"props":1500,"children":1501},{"style":182},[1502],{"type":50,"value":210},{"type":44,"tag":175,"props":1504,"children":1505},{"style":188},[1506],{"type":50,"value":1507}," build:view\n",{"type":44,"tag":175,"props":1509,"children":1510},{"class":177,"line":378},[1511],{"type":44,"tag":175,"props":1512,"children":1513},{"emptyLinePlaceholder":330},[1514],{"type":50,"value":333},{"type":44,"tag":175,"props":1516,"children":1517},{"class":177,"line":386},[1518],{"type":44,"tag":175,"props":1519,"children":1520},{"style":284},[1521],{"type":50,"value":1522},"# View submission status\n",{"type":44,"tag":175,"props":1524,"children":1525},{"class":177,"line":395},[1526,1530],{"type":44,"tag":175,"props":1527,"children":1528},{"style":182},[1529],{"type":50,"value":210},{"type":44,"tag":175,"props":1531,"children":1532},{"style":188},[1533],{"type":50,"value":1534}," submit:list\n",{"type":44,"tag":109,"props":1536,"children":1538},{"id":1537},"submitting-feedback",[1539],{"type":50,"value":1540},"Submitting Feedback",{"type":44,"tag":57,"props":1542,"children":1543},{},[1544],{"type":50,"value":1545},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":44,"tag":164,"props":1547,"children":1549},{"className":166,"code":1548,"language":168,"meta":169,"style":169},"npx --yes submit-expo-feedback@latest --category skills --subject \"eas-app-stores\" \"\u003Cactionable feedback>\"\n",[1550],{"type":44,"tag":69,"props":1551,"children":1552},{"__ignoreMap":169},[1553],{"type":44,"tag":175,"props":1554,"children":1555},{"class":177,"line":178},[1556,1560,1565,1570,1575,1580,1585,1589,1593,1597,1601,1606],{"type":44,"tag":175,"props":1557,"children":1558},{"style":182},[1559],{"type":50,"value":236},{"type":44,"tag":175,"props":1561,"children":1562},{"style":188},[1563],{"type":50,"value":1564}," --yes",{"type":44,"tag":175,"props":1566,"children":1567},{"style":188},[1568],{"type":50,"value":1569}," submit-expo-feedback@latest",{"type":44,"tag":175,"props":1571,"children":1572},{"style":188},[1573],{"type":50,"value":1574}," --category",{"type":44,"tag":175,"props":1576,"children":1577},{"style":188},[1578],{"type":50,"value":1579}," skills",{"type":44,"tag":175,"props":1581,"children":1582},{"style":188},[1583],{"type":50,"value":1584}," --subject",{"type":44,"tag":175,"props":1586,"children":1587},{"style":618},[1588],{"type":50,"value":676},{"type":44,"tag":175,"props":1590,"children":1591},{"style":188},[1592],{"type":50,"value":4},{"type":44,"tag":175,"props":1594,"children":1595},{"style":618},[1596],{"type":50,"value":640},{"type":44,"tag":175,"props":1598,"children":1599},{"style":618},[1600],{"type":50,"value":676},{"type":44,"tag":175,"props":1602,"children":1603},{"style":188},[1604],{"type":50,"value":1605},"\u003Cactionable feedback>",{"type":44,"tag":175,"props":1607,"children":1608},{"style":618},[1609],{"type":50,"value":724},{"type":44,"tag":57,"props":1611,"children":1612},{},[1613],{"type":50,"value":1614},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":44,"tag":1616,"props":1617,"children":1618},"style",{},[1619],{"type":50,"value":1620},"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":1622,"total":1143},[1623,1631,1645,1660,1673,1687,1704,1715,1730,1748,1763,1774],{"slug":4,"name":4,"fn":5,"description":6,"org":1624,"tags":1625,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1626,1627,1628,1629,1630],{"name":13,"slug":14,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":105,"name":105,"fn":1632,"description":1633,"org":1634,"tags":1635,"stars":26,"repoUrl":27,"updatedAt":1644},"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},[1636,1637,1638,1641],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":1639,"slug":1640,"type":15},"Frontend","frontend",{"name":1642,"slug":1643,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":1646,"name":1646,"fn":1647,"description":1648,"org":1649,"tags":1650,"stars":26,"repoUrl":27,"updatedAt":1659},"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},[1651,1652,1653,1656],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1654,"slug":1655,"type":15},"Observability","observability",{"name":1657,"slug":1658,"type":15},"React Native","react-native","2026-07-24T05:36:45.220605",{"slug":1661,"name":1661,"fn":1662,"description":1663,"org":1664,"tags":1665,"stars":26,"repoUrl":27,"updatedAt":1672},"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},[1666,1667,1669,1670,1671],{"name":13,"slug":14,"type":15},{"name":1668,"slug":635,"type":15},"CLI",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},"2026-07-31T05:52:18.602058",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":26,"repoUrl":27,"updatedAt":1686},"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},[1679,1682,1683,1684,1685],{"name":1680,"slug":1681,"type":15},"Analytics","analytics",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1654,"slug":1655,"type":15},"2026-07-24T05:36:50.17095",{"slug":1355,"name":1355,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":26,"repoUrl":27,"updatedAt":1703},"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},[1692,1695,1698,1699,1700],{"name":1693,"slug":1694,"type":15},"Automation","automation",{"name":1696,"slug":1697,"type":15},"CI\u002FCD","ci-cd",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":1701,"slug":1702,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":1705,"name":1705,"fn":1706,"description":1707,"org":1708,"tags":1709,"stars":26,"repoUrl":27,"updatedAt":1714},"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},[1710,1711,1712,1713],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":1657,"slug":1658,"type":15},"2026-07-24T05:36:46.195935",{"slug":1716,"name":1716,"fn":1717,"description":1718,"org":1719,"tags":1720,"stars":26,"repoUrl":27,"updatedAt":1729},"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},[1721,1722,1723,1726,1727,1728],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1724,"slug":1725,"type":15},"Integrations","integrations",{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":1657,"slug":1658,"type":15},"2026-07-24T05:36:39.682299",{"slug":1731,"name":1731,"fn":1732,"description":1733,"org":1734,"tags":1735,"stars":26,"repoUrl":27,"updatedAt":1747},"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},[1736,1739,1742,1743,1744],{"name":1737,"slug":1738,"type":15},"API Development","api-development",{"name":1740,"slug":1741,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1745,"slug":1746,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":1749,"name":1749,"fn":1750,"description":1751,"org":1752,"tags":1753,"stars":26,"repoUrl":27,"updatedAt":1762},"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},[1754,1755,1756,1757,1758,1761],{"name":13,"slug":14,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":1759,"slug":1760,"type":15},"Local Development","local-development",{"name":21,"slug":22,"type":15},"2026-07-24T05:36:51.160719",{"slug":1764,"name":1764,"fn":1765,"description":1766,"org":1767,"tags":1768,"stars":26,"repoUrl":27,"updatedAt":1773},"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},[1769,1770,1771,1772],{"name":9,"slug":8,"type":15},{"name":1639,"slug":1640,"type":15},{"name":21,"slug":22,"type":15},{"name":1657,"slug":1658,"type":15},"2026-07-24T05:36:41.176872",{"slug":1775,"name":1775,"fn":1776,"description":1777,"org":1778,"tags":1779,"stars":26,"repoUrl":27,"updatedAt":1784},"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},[1780,1781,1782,1783],{"name":9,"slug":8,"type":15},{"name":1724,"slug":1725,"type":15},{"name":21,"slug":22,"type":15},{"name":1657,"slug":1658,"type":15},"2026-07-24T05:36:35.174379",{"items":1786,"total":1100},[1787,1795,1802,1809,1817,1825,1833],{"slug":4,"name":4,"fn":5,"description":6,"org":1788,"tags":1789,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1790,1791,1792,1793,1794],{"name":13,"slug":14,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":105,"name":105,"fn":1632,"description":1633,"org":1796,"tags":1797,"stars":26,"repoUrl":27,"updatedAt":1644},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1798,1799,1800,1801],{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":1639,"slug":1640,"type":15},{"name":1642,"slug":1643,"type":15},{"slug":1646,"name":1646,"fn":1647,"description":1648,"org":1803,"tags":1804,"stars":26,"repoUrl":27,"updatedAt":1659},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1805,1806,1807,1808],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1654,"slug":1655,"type":15},{"name":1657,"slug":1658,"type":15},{"slug":1661,"name":1661,"fn":1662,"description":1663,"org":1810,"tags":1811,"stars":26,"repoUrl":27,"updatedAt":1672},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1812,1813,1814,1815,1816],{"name":13,"slug":14,"type":15},{"name":1668,"slug":635,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1818,"tags":1819,"stars":26,"repoUrl":27,"updatedAt":1686},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1820,1821,1822,1823,1824],{"name":1680,"slug":1681,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":1654,"slug":1655,"type":15},{"slug":1355,"name":1355,"fn":1688,"description":1689,"org":1826,"tags":1827,"stars":26,"repoUrl":27,"updatedAt":1703},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1828,1829,1830,1831,1832],{"name":1693,"slug":1694,"type":15},{"name":1696,"slug":1697,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":1701,"slug":1702,"type":15},{"slug":1705,"name":1705,"fn":1706,"description":1707,"org":1834,"tags":1835,"stars":26,"repoUrl":27,"updatedAt":1714},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1836,1837,1838,1839],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":1657,"slug":1658,"type":15}]