[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-eas-workflows":3,"mdc--nw3e9h-key":37,"related-org-expo-eas-workflows":833,"related-repo-expo-eas-workflows":1001},{"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-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},"expo","Expo","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fexpo.png",[12,14,17,20,23],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Automation","automation",{"name":18,"slug":19,"type":13},"YAML","yaml",{"name":21,"slug":22,"type":13},"Deployment","deployment",{"name":24,"slug":25,"type":13},"CI\u002FCD","ci-cd",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:43.205514","MIT License",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-workflows","---\nname: eas-workflows\ndescription: 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.\nallowed-tools: \"Read,Write,Bash(node:*)\"\nversion: 1.0.0\nlicense: MIT License\n---\n\n# EAS Workflows Skill\n\n> **EAS service - costs apply.** EAS Workflows run on Expo Application Services, a paid product with free-tier limits. Each workflow job consumes your plan's build\u002Fcompute minutes, and jobs that build or submit also need paid Apple Developer and Google Play accounts. Review https:\u002F\u002Fexpo.dev\u002Fpricing before triggering runs.\n\nHelp developers write and edit EAS CI\u002FCD workflow YAML files.\n\n## Reference Documentation\n\nFetch these resources before generating or validating workflow files. First resolve this skill's directory, then use the fetch script in its `scripts\u002F` directory. It is implemented using Node.js and caches responses using ETags for efficiency:\n\n```bash\n# Fetch resources\nnode \u003Cskill-dir>\u002Fscripts\u002Ffetch.js \u003Curl>\n```\n\n1. **JSON Schema** — https:\u002F\u002Fapi.expo.dev\u002Fv2\u002Fworkflows\u002Fschema\n   - It is NECESSARY to fetch this schema\n   - Source of truth for validation\n   - All job types and their required\u002Foptional parameters\n   - Trigger types and configurations\n   - Runner types, VM images, and all enums\n\n2. **Syntax Documentation** — https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexpo\u002Frefs\u002Fheads\u002Fmain\u002Fdocs\u002Fpages\u002Feas\u002Fworkflows\u002Fsyntax.mdx\n   - Overview of workflow YAML syntax\n   - Examples and English explanations\n   - Expression syntax and contexts\n\n3. **Pre-packaged Jobs** — https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexpo\u002Frefs\u002Fheads\u002Fmain\u002Fdocs\u002Fpages\u002Feas\u002Fworkflows\u002Fpre-packaged-jobs.mdx\n   - Documentation for supported pre-packaged job types\n   - Job-specific parameters and outputs\n\nDo not rely on memorized values; these resources evolve as new features are added.\n\n## Workflow File Location\n\nWorkflows live in `.eas\u002Fworkflows\u002F*.yml` (or `.yaml`).\n\n## Top-Level Structure\n\nA workflow file has these top-level keys:\n\n- `name` — Display name for the workflow\n- `on` — Triggers that start the workflow (at least one required)\n- `jobs` — Job definitions (required)\n- `defaults` — Shared defaults for all jobs\n- `concurrency` — Control parallel workflow runs\n\nConsult the schema for the full specification of each section.\n\n## Expressions\n\nUse `${{ }}` syntax for dynamic values. The schema defines available contexts:\n\n- `github.*` — GitHub repository and event information\n- `inputs.*` — Values from `workflow_dispatch` inputs\n- `needs.*` — Outputs and status from dependent jobs\n- `jobs.*` — Job outputs (alternative syntax)\n- `steps.*` — Step outputs within custom jobs\n- `workflow.*` — Workflow metadata\n\n## Generating Workflows\n\nWhen generating or editing workflows:\n\n1. Fetch the schema to get current job types, parameters, and allowed values\n2. Validate that required fields are present for each job type\n3. Verify job references in `needs` and `after` exist in the workflow\n4. Check that expressions reference valid contexts and outputs\n5. Ensure `if` conditions respect the schema's length constraints\n\n## Validation\n\nAfter generating or editing a workflow file, validate it against the schema:\n\n```sh\n# Install dependencies if missing\n[ -d \"\u003Cskill-dir>\u002Fscripts\u002Fnode_modules\" ] || npm install --prefix \u003Cskill-dir>\u002Fscripts\n\nnode \u003Cskill-dir>\u002Fscripts\u002Fvalidate.js \u003Cworkflow.yml> [workflow2.yml ...]\n```\n\nThe validator fetches the latest schema and checks the YAML structure. Fix any reported errors before considering the workflow complete.\n\n## Answering Questions\n\nWhen users ask about available options (job types, triggers, runner types, etc.), fetch the schema and derive the answer from it rather than relying on potentially outdated information.\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-workflows\" \"\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":41},{"name":4,"description":6,"allowed-tools":39,"version":40,"license":29},"Read,Write,Bash(node:*)","1.0.0",{"type":42,"children":43},"root",[44,53,79,84,91,105,185,296,301,307,328,334,339,397,402,408,421,498,504,509,561,567,572,729,734,740,745,751,756,822,827],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"eas-workflows-skill",[50],{"type":51,"value":52},"text","EAS Workflows Skill",{"type":45,"tag":54,"props":55,"children":56},"blockquote",{},[57],{"type":45,"tag":58,"props":59,"children":60},"p",{},[61,67,69,77],{"type":45,"tag":62,"props":63,"children":64},"strong",{},[65],{"type":51,"value":66},"EAS service - costs apply.",{"type":51,"value":68}," EAS Workflows run on Expo Application Services, a paid product with free-tier limits. Each workflow job consumes your plan's build\u002Fcompute minutes, and jobs that build or submit also need paid Apple Developer and Google Play accounts. Review ",{"type":45,"tag":70,"props":71,"children":75},"a",{"href":72,"rel":73},"https:\u002F\u002Fexpo.dev\u002Fpricing",[74],"nofollow",[76],{"type":51,"value":72},{"type":51,"value":78}," before triggering runs.",{"type":45,"tag":58,"props":80,"children":81},{},[82],{"type":51,"value":83},"Help developers write and edit EAS CI\u002FCD workflow YAML files.",{"type":45,"tag":85,"props":86,"children":88},"h2",{"id":87},"reference-documentation",[89],{"type":51,"value":90},"Reference Documentation",{"type":45,"tag":58,"props":92,"children":93},{},[94,96,103],{"type":51,"value":95},"Fetch these resources before generating or validating workflow files. First resolve this skill's directory, then use the fetch script in its ",{"type":45,"tag":97,"props":98,"children":100},"code",{"className":99},[],[101],{"type":51,"value":102},"scripts\u002F",{"type":51,"value":104}," directory. It is implemented using Node.js and caches responses using ETags for efficiency:",{"type":45,"tag":106,"props":107,"children":112},"pre",{"className":108,"code":109,"language":110,"meta":111,"style":111},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Fetch resources\nnode \u003Cskill-dir>\u002Fscripts\u002Ffetch.js \u003Curl>\n","bash","",[113],{"type":45,"tag":97,"props":114,"children":115},{"__ignoreMap":111},[116,128],{"type":45,"tag":117,"props":118,"children":121},"span",{"class":119,"line":120},"line",1,[122],{"type":45,"tag":117,"props":123,"children":125},{"style":124},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[126],{"type":51,"value":127},"# Fetch resources\n",{"type":45,"tag":117,"props":129,"children":131},{"class":119,"line":130},2,[132,138,144,150,156,161,166,170,175,180],{"type":45,"tag":117,"props":133,"children":135},{"style":134},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[136],{"type":51,"value":137},"node",{"type":45,"tag":117,"props":139,"children":141},{"style":140},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[142],{"type":51,"value":143}," \u003C",{"type":45,"tag":117,"props":145,"children":147},{"style":146},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[148],{"type":51,"value":149},"skill-di",{"type":45,"tag":117,"props":151,"children":153},{"style":152},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[154],{"type":51,"value":155},"r",{"type":45,"tag":117,"props":157,"children":158},{"style":140},[159],{"type":51,"value":160},">",{"type":45,"tag":117,"props":162,"children":163},{"style":146},[164],{"type":51,"value":165},"\u002Fscripts\u002Ffetch.js",{"type":45,"tag":117,"props":167,"children":168},{"style":140},[169],{"type":51,"value":143},{"type":45,"tag":117,"props":171,"children":172},{"style":146},[173],{"type":51,"value":174},"ur",{"type":45,"tag":117,"props":176,"children":177},{"style":152},[178],{"type":51,"value":179},"l",{"type":45,"tag":117,"props":181,"children":182},{"style":140},[183],{"type":51,"value":184},">\n",{"type":45,"tag":186,"props":187,"children":188},"ol",{},[189,235,268],{"type":45,"tag":190,"props":191,"children":192},"li",{},[193,198,200,206],{"type":45,"tag":62,"props":194,"children":195},{},[196],{"type":51,"value":197},"JSON Schema",{"type":51,"value":199}," — ",{"type":45,"tag":70,"props":201,"children":204},{"href":202,"rel":203},"https:\u002F\u002Fapi.expo.dev\u002Fv2\u002Fworkflows\u002Fschema",[74],[205],{"type":51,"value":202},{"type":45,"tag":207,"props":208,"children":209},"ul",{},[210,215,220,225,230],{"type":45,"tag":190,"props":211,"children":212},{},[213],{"type":51,"value":214},"It is NECESSARY to fetch this schema",{"type":45,"tag":190,"props":216,"children":217},{},[218],{"type":51,"value":219},"Source of truth for validation",{"type":45,"tag":190,"props":221,"children":222},{},[223],{"type":51,"value":224},"All job types and their required\u002Foptional parameters",{"type":45,"tag":190,"props":226,"children":227},{},[228],{"type":51,"value":229},"Trigger types and configurations",{"type":45,"tag":190,"props":231,"children":232},{},[233],{"type":51,"value":234},"Runner types, VM images, and all enums",{"type":45,"tag":190,"props":236,"children":237},{},[238,243,244,250],{"type":45,"tag":62,"props":239,"children":240},{},[241],{"type":51,"value":242},"Syntax Documentation",{"type":51,"value":199},{"type":45,"tag":70,"props":245,"children":248},{"href":246,"rel":247},"https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexpo\u002Frefs\u002Fheads\u002Fmain\u002Fdocs\u002Fpages\u002Feas\u002Fworkflows\u002Fsyntax.mdx",[74],[249],{"type":51,"value":246},{"type":45,"tag":207,"props":251,"children":252},{},[253,258,263],{"type":45,"tag":190,"props":254,"children":255},{},[256],{"type":51,"value":257},"Overview of workflow YAML syntax",{"type":45,"tag":190,"props":259,"children":260},{},[261],{"type":51,"value":262},"Examples and English explanations",{"type":45,"tag":190,"props":264,"children":265},{},[266],{"type":51,"value":267},"Expression syntax and contexts",{"type":45,"tag":190,"props":269,"children":270},{},[271,276,277,283],{"type":45,"tag":62,"props":272,"children":273},{},[274],{"type":51,"value":275},"Pre-packaged Jobs",{"type":51,"value":199},{"type":45,"tag":70,"props":278,"children":281},{"href":279,"rel":280},"https:\u002F\u002Fraw.githubusercontent.com\u002Fexpo\u002Fexpo\u002Frefs\u002Fheads\u002Fmain\u002Fdocs\u002Fpages\u002Feas\u002Fworkflows\u002Fpre-packaged-jobs.mdx",[74],[282],{"type":51,"value":279},{"type":45,"tag":207,"props":284,"children":285},{},[286,291],{"type":45,"tag":190,"props":287,"children":288},{},[289],{"type":51,"value":290},"Documentation for supported pre-packaged job types",{"type":45,"tag":190,"props":292,"children":293},{},[294],{"type":51,"value":295},"Job-specific parameters and outputs",{"type":45,"tag":58,"props":297,"children":298},{},[299],{"type":51,"value":300},"Do not rely on memorized values; these resources evolve as new features are added.",{"type":45,"tag":85,"props":302,"children":304},{"id":303},"workflow-file-location",[305],{"type":51,"value":306},"Workflow File Location",{"type":45,"tag":58,"props":308,"children":309},{},[310,312,318,320,326],{"type":51,"value":311},"Workflows live in ",{"type":45,"tag":97,"props":313,"children":315},{"className":314},[],[316],{"type":51,"value":317},".eas\u002Fworkflows\u002F*.yml",{"type":51,"value":319}," (or ",{"type":45,"tag":97,"props":321,"children":323},{"className":322},[],[324],{"type":51,"value":325},".yaml",{"type":51,"value":327},").",{"type":45,"tag":85,"props":329,"children":331},{"id":330},"top-level-structure",[332],{"type":51,"value":333},"Top-Level Structure",{"type":45,"tag":58,"props":335,"children":336},{},[337],{"type":51,"value":338},"A workflow file has these top-level keys:",{"type":45,"tag":207,"props":340,"children":341},{},[342,353,364,375,386],{"type":45,"tag":190,"props":343,"children":344},{},[345,351],{"type":45,"tag":97,"props":346,"children":348},{"className":347},[],[349],{"type":51,"value":350},"name",{"type":51,"value":352}," — Display name for the workflow",{"type":45,"tag":190,"props":354,"children":355},{},[356,362],{"type":45,"tag":97,"props":357,"children":359},{"className":358},[],[360],{"type":51,"value":361},"on",{"type":51,"value":363}," — Triggers that start the workflow (at least one required)",{"type":45,"tag":190,"props":365,"children":366},{},[367,373],{"type":45,"tag":97,"props":368,"children":370},{"className":369},[],[371],{"type":51,"value":372},"jobs",{"type":51,"value":374}," — Job definitions (required)",{"type":45,"tag":190,"props":376,"children":377},{},[378,384],{"type":45,"tag":97,"props":379,"children":381},{"className":380},[],[382],{"type":51,"value":383},"defaults",{"type":51,"value":385}," — Shared defaults for all jobs",{"type":45,"tag":190,"props":387,"children":388},{},[389,395],{"type":45,"tag":97,"props":390,"children":392},{"className":391},[],[393],{"type":51,"value":394},"concurrency",{"type":51,"value":396}," — Control parallel workflow runs",{"type":45,"tag":58,"props":398,"children":399},{},[400],{"type":51,"value":401},"Consult the schema for the full specification of each section.",{"type":45,"tag":85,"props":403,"children":405},{"id":404},"expressions",[406],{"type":51,"value":407},"Expressions",{"type":45,"tag":58,"props":409,"children":410},{},[411,413,419],{"type":51,"value":412},"Use ",{"type":45,"tag":97,"props":414,"children":416},{"className":415},[],[417],{"type":51,"value":418},"${{ }}",{"type":51,"value":420}," syntax for dynamic values. The schema defines available contexts:",{"type":45,"tag":207,"props":422,"children":423},{},[424,435,454,465,476,487],{"type":45,"tag":190,"props":425,"children":426},{},[427,433],{"type":45,"tag":97,"props":428,"children":430},{"className":429},[],[431],{"type":51,"value":432},"github.*",{"type":51,"value":434}," — GitHub repository and event information",{"type":45,"tag":190,"props":436,"children":437},{},[438,444,446,452],{"type":45,"tag":97,"props":439,"children":441},{"className":440},[],[442],{"type":51,"value":443},"inputs.*",{"type":51,"value":445}," — Values from ",{"type":45,"tag":97,"props":447,"children":449},{"className":448},[],[450],{"type":51,"value":451},"workflow_dispatch",{"type":51,"value":453}," inputs",{"type":45,"tag":190,"props":455,"children":456},{},[457,463],{"type":45,"tag":97,"props":458,"children":460},{"className":459},[],[461],{"type":51,"value":462},"needs.*",{"type":51,"value":464}," — Outputs and status from dependent jobs",{"type":45,"tag":190,"props":466,"children":467},{},[468,474],{"type":45,"tag":97,"props":469,"children":471},{"className":470},[],[472],{"type":51,"value":473},"jobs.*",{"type":51,"value":475}," — Job outputs (alternative syntax)",{"type":45,"tag":190,"props":477,"children":478},{},[479,485],{"type":45,"tag":97,"props":480,"children":482},{"className":481},[],[483],{"type":51,"value":484},"steps.*",{"type":51,"value":486}," — Step outputs within custom jobs",{"type":45,"tag":190,"props":488,"children":489},{},[490,496],{"type":45,"tag":97,"props":491,"children":493},{"className":492},[],[494],{"type":51,"value":495},"workflow.*",{"type":51,"value":497}," — Workflow metadata",{"type":45,"tag":85,"props":499,"children":501},{"id":500},"generating-workflows",[502],{"type":51,"value":503},"Generating Workflows",{"type":45,"tag":58,"props":505,"children":506},{},[507],{"type":51,"value":508},"When generating or editing workflows:",{"type":45,"tag":186,"props":510,"children":511},{},[512,517,522,543,548],{"type":45,"tag":190,"props":513,"children":514},{},[515],{"type":51,"value":516},"Fetch the schema to get current job types, parameters, and allowed values",{"type":45,"tag":190,"props":518,"children":519},{},[520],{"type":51,"value":521},"Validate that required fields are present for each job type",{"type":45,"tag":190,"props":523,"children":524},{},[525,527,533,535,541],{"type":51,"value":526},"Verify job references in ",{"type":45,"tag":97,"props":528,"children":530},{"className":529},[],[531],{"type":51,"value":532},"needs",{"type":51,"value":534}," and ",{"type":45,"tag":97,"props":536,"children":538},{"className":537},[],[539],{"type":51,"value":540},"after",{"type":51,"value":542}," exist in the workflow",{"type":45,"tag":190,"props":544,"children":545},{},[546],{"type":51,"value":547},"Check that expressions reference valid contexts and outputs",{"type":45,"tag":190,"props":549,"children":550},{},[551,553,559],{"type":51,"value":552},"Ensure ",{"type":45,"tag":97,"props":554,"children":556},{"className":555},[],[557],{"type":51,"value":558},"if",{"type":51,"value":560}," conditions respect the schema's length constraints",{"type":45,"tag":85,"props":562,"children":564},{"id":563},"validation",[565],{"type":51,"value":566},"Validation",{"type":45,"tag":58,"props":568,"children":569},{},[570],{"type":51,"value":571},"After generating or editing a workflow file, validate it against the schema:",{"type":45,"tag":106,"props":573,"children":577},{"className":574,"code":575,"language":576,"meta":111,"style":111},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Install dependencies if missing\n[ -d \"\u003Cskill-dir>\u002Fscripts\u002Fnode_modules\" ] || npm install --prefix \u003Cskill-dir>\u002Fscripts\n\nnode \u003Cskill-dir>\u002Fscripts\u002Fvalidate.js \u003Cworkflow.yml> [workflow2.yml ...]\n","sh",[578],{"type":45,"tag":97,"props":579,"children":580},{"__ignoreMap":111},[581,589,663,673],{"type":45,"tag":117,"props":582,"children":583},{"class":119,"line":120},[584],{"type":45,"tag":117,"props":585,"children":586},{"style":124},[587],{"type":51,"value":588},"# Install dependencies if missing\n",{"type":45,"tag":117,"props":590,"children":591},{"class":119,"line":130},[592,597,602,607,612,617,622,627,632,637,642,646,650,654,658],{"type":45,"tag":117,"props":593,"children":594},{"style":140},[595],{"type":51,"value":596},"[",{"type":45,"tag":117,"props":598,"children":599},{"style":140},[600],{"type":51,"value":601}," -d",{"type":45,"tag":117,"props":603,"children":604},{"style":140},[605],{"type":51,"value":606}," \"",{"type":45,"tag":117,"props":608,"children":609},{"style":146},[610],{"type":51,"value":611},"\u003Cskill-dir>\u002Fscripts\u002Fnode_modules",{"type":45,"tag":117,"props":613,"children":614},{"style":140},[615],{"type":51,"value":616},"\"",{"type":45,"tag":117,"props":618,"children":619},{"style":140},[620],{"type":51,"value":621}," ]",{"type":45,"tag":117,"props":623,"children":624},{"style":140},[625],{"type":51,"value":626}," ||",{"type":45,"tag":117,"props":628,"children":629},{"style":134},[630],{"type":51,"value":631}," npm",{"type":45,"tag":117,"props":633,"children":634},{"style":146},[635],{"type":51,"value":636}," install",{"type":45,"tag":117,"props":638,"children":639},{"style":146},[640],{"type":51,"value":641}," --prefix",{"type":45,"tag":117,"props":643,"children":644},{"style":140},[645],{"type":51,"value":143},{"type":45,"tag":117,"props":647,"children":648},{"style":146},[649],{"type":51,"value":149},{"type":45,"tag":117,"props":651,"children":652},{"style":152},[653],{"type":51,"value":155},{"type":45,"tag":117,"props":655,"children":656},{"style":140},[657],{"type":51,"value":160},{"type":45,"tag":117,"props":659,"children":660},{"style":146},[661],{"type":51,"value":662},"\u002Fscripts\n",{"type":45,"tag":117,"props":664,"children":666},{"class":119,"line":665},3,[667],{"type":45,"tag":117,"props":668,"children":670},{"emptyLinePlaceholder":669},true,[671],{"type":51,"value":672},"\n",{"type":45,"tag":117,"props":674,"children":676},{"class":119,"line":675},4,[677,681,685,689,693,697,702,706,711,715,719,724],{"type":45,"tag":117,"props":678,"children":679},{"style":134},[680],{"type":51,"value":137},{"type":45,"tag":117,"props":682,"children":683},{"style":140},[684],{"type":51,"value":143},{"type":45,"tag":117,"props":686,"children":687},{"style":146},[688],{"type":51,"value":149},{"type":45,"tag":117,"props":690,"children":691},{"style":152},[692],{"type":51,"value":155},{"type":45,"tag":117,"props":694,"children":695},{"style":140},[696],{"type":51,"value":160},{"type":45,"tag":117,"props":698,"children":699},{"style":146},[700],{"type":51,"value":701},"\u002Fscripts\u002Fvalidate.js",{"type":45,"tag":117,"props":703,"children":704},{"style":140},[705],{"type":51,"value":143},{"type":45,"tag":117,"props":707,"children":708},{"style":146},[709],{"type":51,"value":710},"workflow.ym",{"type":45,"tag":117,"props":712,"children":713},{"style":152},[714],{"type":51,"value":179},{"type":45,"tag":117,"props":716,"children":717},{"style":140},[718],{"type":51,"value":160},{"type":45,"tag":117,"props":720,"children":721},{"style":152},[722],{"type":51,"value":723}," [workflow2.yml ",{"type":45,"tag":117,"props":725,"children":726},{"style":146},[727],{"type":51,"value":728},"...]\n",{"type":45,"tag":58,"props":730,"children":731},{},[732],{"type":51,"value":733},"The validator fetches the latest schema and checks the YAML structure. Fix any reported errors before considering the workflow complete.",{"type":45,"tag":85,"props":735,"children":737},{"id":736},"answering-questions",[738],{"type":51,"value":739},"Answering Questions",{"type":45,"tag":58,"props":741,"children":742},{},[743],{"type":51,"value":744},"When users ask about available options (job types, triggers, runner types, etc.), fetch the schema and derive the answer from it rather than relying on potentially outdated information.",{"type":45,"tag":85,"props":746,"children":748},{"id":747},"submitting-feedback",[749],{"type":51,"value":750},"Submitting Feedback",{"type":45,"tag":58,"props":752,"children":753},{},[754],{"type":51,"value":755},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":45,"tag":106,"props":757,"children":759},{"className":108,"code":758,"language":110,"meta":111,"style":111},"npx --yes submit-expo-feedback@latest --category skills --subject \"eas-workflows\" \"\u003Cactionable feedback>\"\n",[760],{"type":45,"tag":97,"props":761,"children":762},{"__ignoreMap":111},[763],{"type":45,"tag":117,"props":764,"children":765},{"class":119,"line":120},[766,771,776,781,786,791,796,800,804,808,812,817],{"type":45,"tag":117,"props":767,"children":768},{"style":134},[769],{"type":51,"value":770},"npx",{"type":45,"tag":117,"props":772,"children":773},{"style":146},[774],{"type":51,"value":775}," --yes",{"type":45,"tag":117,"props":777,"children":778},{"style":146},[779],{"type":51,"value":780}," submit-expo-feedback@latest",{"type":45,"tag":117,"props":782,"children":783},{"style":146},[784],{"type":51,"value":785}," --category",{"type":45,"tag":117,"props":787,"children":788},{"style":146},[789],{"type":51,"value":790}," skills",{"type":45,"tag":117,"props":792,"children":793},{"style":146},[794],{"type":51,"value":795}," --subject",{"type":45,"tag":117,"props":797,"children":798},{"style":140},[799],{"type":51,"value":606},{"type":45,"tag":117,"props":801,"children":802},{"style":146},[803],{"type":51,"value":4},{"type":45,"tag":117,"props":805,"children":806},{"style":140},[807],{"type":51,"value":616},{"type":45,"tag":117,"props":809,"children":810},{"style":140},[811],{"type":51,"value":606},{"type":45,"tag":117,"props":813,"children":814},{"style":146},[815],{"type":51,"value":816},"\u003Cactionable feedback>",{"type":45,"tag":117,"props":818,"children":819},{"style":140},[820],{"type":51,"value":821},"\"\n",{"type":45,"tag":58,"props":823,"children":824},{},[825],{"type":51,"value":826},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":45,"tag":828,"props":829,"children":830},"style",{},[831],{"type":51,"value":832},"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":834,"total":1000},[835,853,868,883,897,911,919,930,945,963,978,989],{"slug":836,"name":836,"fn":837,"description":838,"org":839,"tags":840,"stars":26,"repoUrl":27,"updatedAt":852},"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},[841,844,845,846,849],{"name":842,"slug":843,"type":13},"Android","android",{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},"iOS","ios",{"name":850,"slug":851,"type":13},"Mobile","mobile","2026-07-24T05:36:44.164663",{"slug":854,"name":854,"fn":855,"description":856,"org":857,"tags":858,"stars":26,"repoUrl":27,"updatedAt":867},"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},[859,860,861,864],{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":862,"slug":863,"type":13},"Frontend","frontend",{"name":865,"slug":866,"type":13},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":869,"name":869,"fn":870,"description":871,"org":872,"tags":873,"stars":26,"repoUrl":27,"updatedAt":882},"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},[874,875,876,879],{"name":9,"slug":8,"type":13},{"name":850,"slug":851,"type":13},{"name":877,"slug":878,"type":13},"Observability","observability",{"name":880,"slug":881,"type":13},"React Native","react-native","2026-07-24T05:36:45.220605",{"slug":884,"name":884,"fn":885,"description":886,"org":887,"tags":888,"stars":26,"repoUrl":27,"updatedAt":896},"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},[889,890,893,894,895],{"name":842,"slug":843,"type":13},{"name":891,"slug":892,"type":13},"CLI","cli",{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},{"name":850,"slug":851,"type":13},"2026-07-31T05:52:18.602058",{"slug":898,"name":898,"fn":899,"description":900,"org":901,"tags":902,"stars":26,"repoUrl":27,"updatedAt":910},"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},[903,906,907,908,909],{"name":904,"slug":905,"type":13},"Analytics","analytics",{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":850,"slug":851,"type":13},{"name":877,"slug":878,"type":13},"2026-07-24T05:36:50.17095",{"slug":4,"name":4,"fn":5,"description":6,"org":912,"tags":913,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[914,915,916,917,918],{"name":15,"slug":16,"type":13},{"name":24,"slug":25,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":18,"slug":19,"type":13},{"slug":920,"name":920,"fn":921,"description":922,"org":923,"tags":924,"stars":26,"repoUrl":27,"updatedAt":929},"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},[925,926,927,928],{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},{"name":850,"slug":851,"type":13},{"name":880,"slug":881,"type":13},"2026-07-24T05:36:46.195935",{"slug":931,"name":931,"fn":932,"description":933,"org":934,"tags":935,"stars":26,"repoUrl":27,"updatedAt":944},"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},[936,937,938,941,942,943],{"name":842,"slug":843,"type":13},{"name":9,"slug":8,"type":13},{"name":939,"slug":940,"type":13},"Integrations","integrations",{"name":847,"slug":848,"type":13},{"name":850,"slug":851,"type":13},{"name":880,"slug":881,"type":13},"2026-07-24T05:36:39.682299",{"slug":946,"name":946,"fn":947,"description":948,"org":949,"tags":950,"stars":26,"repoUrl":27,"updatedAt":962},"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},[951,954,957,958,959],{"name":952,"slug":953,"type":13},"API Development","api-development",{"name":955,"slug":956,"type":13},"Caching","caching",{"name":9,"slug":8,"type":13},{"name":850,"slug":851,"type":13},{"name":960,"slug":961,"type":13},"React","react","2026-07-24T05:36:42.177188",{"slug":964,"name":964,"fn":965,"description":966,"org":967,"tags":968,"stars":26,"repoUrl":27,"updatedAt":977},"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},[969,970,971,972,973,976],{"name":842,"slug":843,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},{"name":974,"slug":975,"type":13},"Local Development","local-development",{"name":850,"slug":851,"type":13},"2026-07-24T05:36:51.160719",{"slug":979,"name":979,"fn":980,"description":981,"org":982,"tags":983,"stars":26,"repoUrl":27,"updatedAt":988},"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},[984,985,986,987],{"name":9,"slug":8,"type":13},{"name":862,"slug":863,"type":13},{"name":850,"slug":851,"type":13},{"name":880,"slug":881,"type":13},"2026-07-24T05:36:41.176872",{"slug":990,"name":990,"fn":991,"description":992,"org":993,"tags":994,"stars":26,"repoUrl":27,"updatedAt":999},"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},[995,996,997,998],{"name":9,"slug":8,"type":13},{"name":939,"slug":940,"type":13},{"name":850,"slug":851,"type":13},{"name":880,"slug":881,"type":13},"2026-07-24T05:36:35.174379",24,{"items":1002,"total":1056},[1003,1011,1018,1025,1033,1041,1049],{"slug":836,"name":836,"fn":837,"description":838,"org":1004,"tags":1005,"stars":26,"repoUrl":27,"updatedAt":852},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1006,1007,1008,1009,1010],{"name":842,"slug":843,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},{"name":850,"slug":851,"type":13},{"slug":854,"name":854,"fn":855,"description":856,"org":1012,"tags":1013,"stars":26,"repoUrl":27,"updatedAt":867},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1014,1015,1016,1017],{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":862,"slug":863,"type":13},{"name":865,"slug":866,"type":13},{"slug":869,"name":869,"fn":870,"description":871,"org":1019,"tags":1020,"stars":26,"repoUrl":27,"updatedAt":882},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1021,1022,1023,1024],{"name":9,"slug":8,"type":13},{"name":850,"slug":851,"type":13},{"name":877,"slug":878,"type":13},{"name":880,"slug":881,"type":13},{"slug":884,"name":884,"fn":885,"description":886,"org":1026,"tags":1027,"stars":26,"repoUrl":27,"updatedAt":896},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1028,1029,1030,1031,1032],{"name":842,"slug":843,"type":13},{"name":891,"slug":892,"type":13},{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},{"name":850,"slug":851,"type":13},{"slug":898,"name":898,"fn":899,"description":900,"org":1034,"tags":1035,"stars":26,"repoUrl":27,"updatedAt":910},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1036,1037,1038,1039,1040],{"name":904,"slug":905,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":850,"slug":851,"type":13},{"name":877,"slug":878,"type":13},{"slug":4,"name":4,"fn":5,"description":6,"org":1042,"tags":1043,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1044,1045,1046,1047,1048],{"name":15,"slug":16,"type":13},{"name":24,"slug":25,"type":13},{"name":21,"slug":22,"type":13},{"name":9,"slug":8,"type":13},{"name":18,"slug":19,"type":13},{"slug":920,"name":920,"fn":921,"description":922,"org":1050,"tags":1051,"stars":26,"repoUrl":27,"updatedAt":929},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1052,1053,1054,1055],{"name":9,"slug":8,"type":13},{"name":847,"slug":848,"type":13},{"name":850,"slug":851,"type":13},{"name":880,"slug":881,"type":13},22]