[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-eas-update-insights":3,"mdc--y2ersg-key":37,"related-org-expo-eas-update-insights":2796,"related-repo-expo-eas-update-insights":2964},{"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-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},"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},"Observability","observability","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Mobile","mobile",{"name":21,"slug":22,"type":15},"Deployment","deployment",{"name":24,"slug":25,"type":15},"Analytics","analytics",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:50.17095","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-update-insights","---\nname: eas-update-insights\ndescription: \"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.\"\nversion: 1.0.0\nlicense: MIT\nallowed-tools: \"Bash(eas *)\"\n---\n\n# EAS Update Insights\n\n> **EAS service - costs apply.** Insights cover updates published through EAS Update, a paid Expo Application Services product with free-tier limits. Update delivery and the data behind these commands count against your plan's EAS Update usage. Review https:\u002F\u002Fexpo.dev\u002Fpricing.\n\nQuery the health of published EAS Update directly from the CLI: launches, failed launches, crash rates, unique users, payload size, the embedded-vs-OTA user split per channel, and the most popular updates per runtime version. The data is the same data that powers the update and channel detail pages on expo.dev; these commands expose it in the terminal in human and JSON form.\n\n## When to use this skill\n\nUse this when the user wants to assess the health or adoption of a published EAS Update: crash rates, install counts, unique users, bundle size, or the split between embedded and OTA users on a channel.\n\nExample prompts:\n\n- \"How is the latest update doing?\"\n- \"Is the latest update healthy?\"\n- \"Is the new release crashing more than the last one?\"\n- \"How many users are on the latest update vs the embedded build?\"\n- \"Which update is most popular on production right now?\"\n- \"How big is our update bundle?\"\n\nAlso fits: post-publish rollout monitoring and regression detection.\n\nDon't use when the user needs per-user crash detail or device-level reporting; this skill only exposes aggregate EAS metrics.\n\n## Prerequisites\n\n- `eas-cli` installed (`npm install -g eas-cli`).\n- Logged in: `eas login`.\n- For `channel:insights`: run from an Expo project directory (the command resolves the project ID from `app.json`). `update:insights` only needs a login.\n\n## Commands at a glance\n\n| Command | Purpose |\n|---|---|\n| `eas update:list` | Discover recent update groups, their `group` IDs, and branch names |\n| `eas update:insights \u003CgroupId>` | Per-platform launches, failed launches, crash rate, unique users, payload size, daily breakdown |\n| `eas update:view \u003CgroupId> --insights` | Update group details + the same metrics appended |\n| `eas channel:insights --channel \u003Cname> --runtime-version \u003Cversion>` | Embedded\u002FOTA user counts, most popular updates, cumulative metrics for a channel + runtime |\n\nAll of these support `--json --non-interactive` for programmatic parsing.\n\n## Discovering IDs\n\nBefore querying insights for an update group, you need its `group` ID. Use `eas update:list` with either `--branch \u003Cname>` (updates on that branch) or `--all` (updates across all branches). Always pass `--json --non-interactive` when running non-interactively; without a branch\u002F`--all` flag the command will otherwise prompt for a branch selection:\n\n```bash\n# Latest group id across all branches\neas update:list --all --json --non-interactive | jq -r '.currentPage[0].group'\n\n# Latest group id on a specific branch\neas update:list --branch production --json --non-interactive | jq -r '.currentPage[0].group'\n```\n\nThe JSON response has a `currentPage` array with one entry per update group (both platforms of the same publish are collapsed into one entry):\n\n```json\n{\n  \"currentPage\": [\n    {\n      \"branch\": \"production\",\n      \"message\": \"\\\"Fix checkout crash\\\" (1 week ago by someone)\",\n      \"runtimeVersion\": \"1.0.6\",\n      \"group\": \"03d5dfcf-736c-475a-8730-af039c3f4d06\",\n      \"platforms\": \"android, ios\",\n      \"isRollBackToEmbedded\": false\n    }\n  ]\n}\n```\n\nEntries also carry `codeSigningKey` and `rolloutPercentage`, but only when those features are in use for the group (undefined values are omitted from the JSON output).\n\nWhen called with `--branch \u003Cname>`, the response also includes `name` (the branch name) and `id` (the branch ID) at the top level.\n\n## `eas update:insights \u003CgroupId>`\n\nShows launches, failed launches, crash rate, unique users, launch asset count, and average payload size for a single update group, broken down **per platform** (iOS, Android), plus a daily breakdown of launches and failures.\n\n### Basic use\n\n```bash\neas update:insights 03d5dfcf-736c-475a-8730-af039c3f4d06\n```\n\n### Flags\n\n| Flag | Description |\n|---|---|\n| `--days \u003CN>` | Look back N days. Default: **7**. Mutually exclusive with `--start`\u002F`--end`. |\n| `--start \u003Ciso-date>` \u002F `--end \u003Ciso-date>` | Explicit time range, e.g. `--start 2026-04-01 --end 2026-04-15`. |\n| `--platform \u003Cios\\|android>` | Filter to a single platform. Omit to see all platforms in the group. |\n| `--json` | Machine-readable output. Implies `--non-interactive`. |\n| `--non-interactive` | Required when scripting. |\n\n### JSON output shape\n\nTop level: `groupId`, `timespan` (`start`, `end`, `daysBack`), and `platforms[]` with one entry per platform the group was published to. Each platform entry has `updateId`, `totals` (`uniqueUsers`, `installs`, `failedInstalls`, `crashRatePercent`), `payload` (`launchAssetCount`, `averageUpdatePayloadBytes`), and a `daily[]` time series of `{ date, installs, failedInstalls }`.\n\nFor the complete schema and field reference, see [references\u002Fupdate-insights-schema.md](.\u002Freferences\u002Fupdate-insights-schema.md).\n\nFields that matter for health assessment:\n\n- `platforms[].totals.crashRatePercent`, computed as `failedInstalls \u002F (installs + failedInstalls) * 100`. Zero when there are no installs.\n- `platforms[].totals.installs` and `uniqueUsers` give the adoption signal.\n- `platforms[].daily` is a time series, useful for spotting a sudden spike in failures.\n\n### Errors\n\n- `Could not find any updates with group ID: \"\u003Cid>\"` — group doesn't exist or you lack access.\n- `Update group \"\u003Cid>\" has no ios update (available platforms: android)` — `--platform ios` was used but the group wasn't published for iOS.\n- `EAS Update insights is not supported by this version of eas-cli. Please upgrade ...` — the server deprecated a field the CLI relies on. Run `npm install -g eas-cli@latest`.\n\n## `eas update:view \u003CgroupId> --insights`\n\nExtends the standard `update:view` output with the same per-platform insights, inline.\n\n```bash\n# Human-readable\neas update:view 03d5dfcf-... --insights\neas update:view 03d5dfcf-... --insights --days 30\n\n# JSON: wrapped as { updates: [...], insights: {...} }\neas update:view 03d5dfcf-... --json --insights\n```\n\nWithout `--insights`, `update:view` behaves exactly as before — no JSON shape change for existing consumers. The `--days` \u002F `--start` \u002F `--end` flags only apply when `--insights` is set; passing them alone errors.\n\n## `eas channel:insights --channel \u003Cname> --runtime-version \u003Cversion>`\n\nShows, per channel, how many users are on the embedded build vs over-the-air updates and which updates are pulling the most traffic. Must be run from an Expo project directory.\n\n### Basic use\n\n```bash\neas channel:insights --channel production --runtime-version 1.0.6\n```\n\n### Flags\n\n| Flag | Description |\n|---|---|\n| `--channel \u003Cname>` | **Required.** The channel name (e.g. `production`, `staging`). |\n| `--runtime-version \u003Cversion>` | **Required.** Match exactly what was published. Check `runtimeVersion` values in `update:list`. |\n| `--days \u003CN>` | Look back N days. Default: **7**. |\n| `--start` \u002F `--end` | Explicit time range, like `update:insights`. |\n| `--json` \u002F `--non-interactive` | Machine-readable output. |\n\n### JSON output shape\n\nTop level: `channel`, `runtimeVersion`, `timespan`, `embeddedUpdateTotalUniqueUsers`, `otaTotalUniqueUsers`, `mostPopularUpdates[]` (each with `rank`, `groupId`, `message`, `platform`, `totalUniqueUsers`), `cumulativeMetricsAtLastTimestamp[]`, plus chart-shaped `uniqueUsersOverTime` and `cumulativeMetricsOverTime` objects with `labels` and `datasets`.\n\nFor the complete schema and field reference, see [references\u002Fchannel-insights-schema.md](.\u002Freferences\u002Fchannel-insights-schema.md).\n\nFields that matter:\n\n- `embeddedUpdateTotalUniqueUsers` is the count of users running the embedded (binary-bundled) build.\n- `mostPopularUpdates[]` is updates ranked by `totalUniqueUsers`. **Caveat**: this is the top-N the server returns; `otaTotalUniqueUsers` is a sum of that list and may undercount total OTA reach if more than top-N updates are active.\n- `uniqueUsersOverTime` and `cumulativeMetricsOverTime` are daily data series for charting.\n\n### Errors\n\n- `Could not find channel with the name \u003Cname>` — typo or wrong account.\n- \"No update launches recorded\" in the table \u002F empty `mostPopularUpdates` in JSON — no OTA update has been launched for that channel + runtime yet. Usually means the channel is still serving the embedded build only.\n\n## Common workflows\n\n### Verify the update I just published is healthy\n\n```bash\n# 1. Grab the latest publish on production\nGROUP_ID=$(eas update:list --branch production --json --non-interactive \\\n  | jq -r '.currentPage[0].group')\n\n# 2. Give it some adoption time (minutes to hours), then check crash rate\neas update:insights \"$GROUP_ID\" --json --non-interactive \\\n  | jq '.platforms[] | {platform, installs: .totals.installs, crashRate: .totals.crashRatePercent}'\n```\n\nCompare the `crashRate` across platforms and against previous releases; sudden spikes or asymmetric behaviour (iOS spiking while Android is flat, or vice versa) is the signal to investigate.\n\n### Compare adoption between two channels\n\n```bash\nfor channel in production staging; do\n  echo \"--- $channel ---\"\n  eas channel:insights --channel \"$channel\" --runtime-version 1.0.6 --json --non-interactive \\\n    | jq '{\n        channel,\n        embedded: .embeddedUpdateTotalUniqueUsers,\n        ota: .otaTotalUniqueUsers,\n        topUpdate: .mostPopularUpdates[0]\n      }'\ndone\n```\n\n### Detect a rollout regression in the last 24 hours\n\n```bash\neas update:insights \"$GROUP_ID\" --days 1 --json --non-interactive \\\n  | jq '.platforms[] | select(.totals.crashRatePercent > 1)'\n```\n\n### Summarize group metrics for release notes\n\n```bash\neas update:view \"$GROUP_ID\" --insights --days 30\n```\n\nHuman-readable group details plus 30 days of launches\u002Ffailures per platform — suitable for pasting into a changelog or incident review.\n\n## Output tips\n\n- Pipe JSON through `jq`; payloads are structured for easy filtering.\n- `--json` implies `--non-interactive`, but passing both is explicit and scripting-friendly.\n- Dates in `daily[].date` are UTC ISO timestamps; the human-readable table renders them as `YYYY-MM-DD` (UTC).\n- The CLI table labels say \"Launches\" \u002F \"Crashes\" while JSON uses `installs` \u002F `failedInstalls`. Same field, different display name.\n\n## Limitations\n\n- **Unique users across platforms** may double-count users who run the same publish on both iOS and Android. The same caveat applies to `otaTotalUniqueUsers` in channel insights, which is a sum over `mostPopularUpdates`.\n- **Fresh publishes** may show zeros for a short period while the metrics pipeline catches up.\n- **Installs are downloads, not launches**: the `installs` \u002F \"Launches\" field counts users who downloaded the manifest and launch asset. A confirmed run only registers on the user's *next* update check (typically up to 24h later, depending on the app's update policy). So metrics lag the real-world state slightly.\n- **Crashes are self-reported**: `failedInstalls` \u002F \"Crashes\" counts updates that errored during install\u002Flaunch and were reported on the next update check. Crashes that don't trigger an update request (e.g. process kill before recovery) won't appear.\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-update-insights\" \"\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,"version":39,"license":29,"allowed-tools":40},"1.0.0","Bash(eas *)",{"type":42,"children":43},"root",[44,52,78,83,90,95,100,135,140,145,151,215,221,325,338,344,393,551,564,875,896,924,933,945,952,976,982,1132,1138,1269,1281,1286,1336,1342,1393,1402,1415,1521,1567,1576,1581,1586,1624,1629,1789,1794,1909,1920,1925,1985,1990,2017,2023,2029,2195,2208,2214,2413,2419,2494,2500,2542,2547,2553,2625,2631,2709,2715,2720,2785,2790],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","EAS Update Insights",{"type":45,"tag":53,"props":54,"children":55},"blockquote",{},[56],{"type":45,"tag":57,"props":58,"children":59},"p",{},[60,66,68,76],{"type":45,"tag":61,"props":62,"children":63},"strong",{},[64],{"type":50,"value":65},"EAS service - costs apply.",{"type":50,"value":67}," Insights cover updates published through EAS Update, a paid Expo Application Services product with free-tier limits. Update delivery and the data behind these commands count against your plan's EAS Update usage. Review ",{"type":45,"tag":69,"props":70,"children":74},"a",{"href":71,"rel":72},"https:\u002F\u002Fexpo.dev\u002Fpricing",[73],"nofollow",[75],{"type":50,"value":71},{"type":50,"value":77},".",{"type":45,"tag":57,"props":79,"children":80},{},[81],{"type":50,"value":82},"Query the health of published EAS Update directly from the CLI: launches, failed launches, crash rates, unique users, payload size, the embedded-vs-OTA user split per channel, and the most popular updates per runtime version. The data is the same data that powers the update and channel detail pages on expo.dev; these commands expose it in the terminal in human and JSON form.",{"type":45,"tag":84,"props":85,"children":87},"h2",{"id":86},"when-to-use-this-skill",[88],{"type":50,"value":89},"When to use this skill",{"type":45,"tag":57,"props":91,"children":92},{},[93],{"type":50,"value":94},"Use this when the user wants to assess the health or adoption of a published EAS Update: crash rates, install counts, unique users, bundle size, or the split between embedded and OTA users on a channel.",{"type":45,"tag":57,"props":96,"children":97},{},[98],{"type":50,"value":99},"Example prompts:",{"type":45,"tag":101,"props":102,"children":103},"ul",{},[104,110,115,120,125,130],{"type":45,"tag":105,"props":106,"children":107},"li",{},[108],{"type":50,"value":109},"\"How is the latest update doing?\"",{"type":45,"tag":105,"props":111,"children":112},{},[113],{"type":50,"value":114},"\"Is the latest update healthy?\"",{"type":45,"tag":105,"props":116,"children":117},{},[118],{"type":50,"value":119},"\"Is the new release crashing more than the last one?\"",{"type":45,"tag":105,"props":121,"children":122},{},[123],{"type":50,"value":124},"\"How many users are on the latest update vs the embedded build?\"",{"type":45,"tag":105,"props":126,"children":127},{},[128],{"type":50,"value":129},"\"Which update is most popular on production right now?\"",{"type":45,"tag":105,"props":131,"children":132},{},[133],{"type":50,"value":134},"\"How big is our update bundle?\"",{"type":45,"tag":57,"props":136,"children":137},{},[138],{"type":50,"value":139},"Also fits: post-publish rollout monitoring and regression detection.",{"type":45,"tag":57,"props":141,"children":142},{},[143],{"type":50,"value":144},"Don't use when the user needs per-user crash detail or device-level reporting; this skill only exposes aggregate EAS metrics.",{"type":45,"tag":84,"props":146,"children":148},{"id":147},"prerequisites",[149],{"type":50,"value":150},"Prerequisites",{"type":45,"tag":101,"props":152,"children":153},{},[154,174,186],{"type":45,"tag":105,"props":155,"children":156},{},[157,164,166,172],{"type":45,"tag":158,"props":159,"children":161},"code",{"className":160},[],[162],{"type":50,"value":163},"eas-cli",{"type":50,"value":165}," installed (",{"type":45,"tag":158,"props":167,"children":169},{"className":168},[],[170],{"type":50,"value":171},"npm install -g eas-cli",{"type":50,"value":173},").",{"type":45,"tag":105,"props":175,"children":176},{},[177,179,185],{"type":50,"value":178},"Logged in: ",{"type":45,"tag":158,"props":180,"children":182},{"className":181},[],[183],{"type":50,"value":184},"eas login",{"type":50,"value":77},{"type":45,"tag":105,"props":187,"children":188},{},[189,191,197,199,205,207,213],{"type":50,"value":190},"For ",{"type":45,"tag":158,"props":192,"children":194},{"className":193},[],[195],{"type":50,"value":196},"channel:insights",{"type":50,"value":198},": run from an Expo project directory (the command resolves the project ID from ",{"type":45,"tag":158,"props":200,"children":202},{"className":201},[],[203],{"type":50,"value":204},"app.json",{"type":50,"value":206},"). ",{"type":45,"tag":158,"props":208,"children":210},{"className":209},[],[211],{"type":50,"value":212},"update:insights",{"type":50,"value":214}," only needs a login.",{"type":45,"tag":84,"props":216,"children":218},{"id":217},"commands-at-a-glance",[219],{"type":50,"value":220},"Commands at a glance",{"type":45,"tag":222,"props":223,"children":224},"table",{},[225,244],{"type":45,"tag":226,"props":227,"children":228},"thead",{},[229],{"type":45,"tag":230,"props":231,"children":232},"tr",{},[233,239],{"type":45,"tag":234,"props":235,"children":236},"th",{},[237],{"type":50,"value":238},"Command",{"type":45,"tag":234,"props":240,"children":241},{},[242],{"type":50,"value":243},"Purpose",{"type":45,"tag":245,"props":246,"children":247},"tbody",{},[248,274,291,308],{"type":45,"tag":230,"props":249,"children":250},{},[251,261],{"type":45,"tag":252,"props":253,"children":254},"td",{},[255],{"type":45,"tag":158,"props":256,"children":258},{"className":257},[],[259],{"type":50,"value":260},"eas update:list",{"type":45,"tag":252,"props":262,"children":263},{},[264,266,272],{"type":50,"value":265},"Discover recent update groups, their ",{"type":45,"tag":158,"props":267,"children":269},{"className":268},[],[270],{"type":50,"value":271},"group",{"type":50,"value":273}," IDs, and branch names",{"type":45,"tag":230,"props":275,"children":276},{},[277,286],{"type":45,"tag":252,"props":278,"children":279},{},[280],{"type":45,"tag":158,"props":281,"children":283},{"className":282},[],[284],{"type":50,"value":285},"eas update:insights \u003CgroupId>",{"type":45,"tag":252,"props":287,"children":288},{},[289],{"type":50,"value":290},"Per-platform launches, failed launches, crash rate, unique users, payload size, daily breakdown",{"type":45,"tag":230,"props":292,"children":293},{},[294,303],{"type":45,"tag":252,"props":295,"children":296},{},[297],{"type":45,"tag":158,"props":298,"children":300},{"className":299},[],[301],{"type":50,"value":302},"eas update:view \u003CgroupId> --insights",{"type":45,"tag":252,"props":304,"children":305},{},[306],{"type":50,"value":307},"Update group details + the same metrics appended",{"type":45,"tag":230,"props":309,"children":310},{},[311,320],{"type":45,"tag":252,"props":312,"children":313},{},[314],{"type":45,"tag":158,"props":315,"children":317},{"className":316},[],[318],{"type":50,"value":319},"eas channel:insights --channel \u003Cname> --runtime-version \u003Cversion>",{"type":45,"tag":252,"props":321,"children":322},{},[323],{"type":50,"value":324},"Embedded\u002FOTA user counts, most popular updates, cumulative metrics for a channel + runtime",{"type":45,"tag":57,"props":326,"children":327},{},[328,330,336],{"type":50,"value":329},"All of these support ",{"type":45,"tag":158,"props":331,"children":333},{"className":332},[],[334],{"type":50,"value":335},"--json --non-interactive",{"type":50,"value":337}," for programmatic parsing.",{"type":45,"tag":84,"props":339,"children":341},{"id":340},"discovering-ids",[342],{"type":50,"value":343},"Discovering IDs",{"type":45,"tag":57,"props":345,"children":346},{},[347,349,354,356,361,363,369,371,377,379,384,386,391],{"type":50,"value":348},"Before querying insights for an update group, you need its ",{"type":45,"tag":158,"props":350,"children":352},{"className":351},[],[353],{"type":50,"value":271},{"type":50,"value":355}," ID. Use ",{"type":45,"tag":158,"props":357,"children":359},{"className":358},[],[360],{"type":50,"value":260},{"type":50,"value":362}," with either ",{"type":45,"tag":158,"props":364,"children":366},{"className":365},[],[367],{"type":50,"value":368},"--branch \u003Cname>",{"type":50,"value":370}," (updates on that branch) or ",{"type":45,"tag":158,"props":372,"children":374},{"className":373},[],[375],{"type":50,"value":376},"--all",{"type":50,"value":378}," (updates across all branches). Always pass ",{"type":45,"tag":158,"props":380,"children":382},{"className":381},[],[383],{"type":50,"value":335},{"type":50,"value":385}," when running non-interactively; without a branch\u002F",{"type":45,"tag":158,"props":387,"children":389},{"className":388},[],[390],{"type":50,"value":376},{"type":50,"value":392}," flag the command will otherwise prompt for a branch selection:",{"type":45,"tag":394,"props":395,"children":400},"pre",{"className":396,"code":397,"language":398,"meta":399,"style":399},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Latest group id across all branches\neas update:list --all --json --non-interactive | jq -r '.currentPage[0].group'\n\n# Latest group id on a specific branch\neas update:list --branch production --json --non-interactive | jq -r '.currentPage[0].group'\n","bash","",[401],{"type":45,"tag":158,"props":402,"children":403},{"__ignoreMap":399},[404,416,478,488,497],{"type":45,"tag":405,"props":406,"children":409},"span",{"class":407,"line":408},"line",1,[410],{"type":45,"tag":405,"props":411,"children":413},{"style":412},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[414],{"type":50,"value":415},"# Latest group id across all branches\n",{"type":45,"tag":405,"props":417,"children":419},{"class":407,"line":418},2,[420,426,432,437,442,447,453,458,463,468,473],{"type":45,"tag":405,"props":421,"children":423},{"style":422},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[424],{"type":50,"value":425},"eas",{"type":45,"tag":405,"props":427,"children":429},{"style":428},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[430],{"type":50,"value":431}," update:list",{"type":45,"tag":405,"props":433,"children":434},{"style":428},[435],{"type":50,"value":436}," --all",{"type":45,"tag":405,"props":438,"children":439},{"style":428},[440],{"type":50,"value":441}," --json",{"type":45,"tag":405,"props":443,"children":444},{"style":428},[445],{"type":50,"value":446}," --non-interactive",{"type":45,"tag":405,"props":448,"children":450},{"style":449},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[451],{"type":50,"value":452}," |",{"type":45,"tag":405,"props":454,"children":455},{"style":422},[456],{"type":50,"value":457}," jq",{"type":45,"tag":405,"props":459,"children":460},{"style":428},[461],{"type":50,"value":462}," -r",{"type":45,"tag":405,"props":464,"children":465},{"style":449},[466],{"type":50,"value":467}," '",{"type":45,"tag":405,"props":469,"children":470},{"style":428},[471],{"type":50,"value":472},".currentPage[0].group",{"type":45,"tag":405,"props":474,"children":475},{"style":449},[476],{"type":50,"value":477},"'\n",{"type":45,"tag":405,"props":479,"children":481},{"class":407,"line":480},3,[482],{"type":45,"tag":405,"props":483,"children":485},{"emptyLinePlaceholder":484},true,[486],{"type":50,"value":487},"\n",{"type":45,"tag":405,"props":489,"children":491},{"class":407,"line":490},4,[492],{"type":45,"tag":405,"props":493,"children":494},{"style":412},[495],{"type":50,"value":496},"# Latest group id on a specific branch\n",{"type":45,"tag":405,"props":498,"children":500},{"class":407,"line":499},5,[501,505,509,514,519,523,527,531,535,539,543,547],{"type":45,"tag":405,"props":502,"children":503},{"style":422},[504],{"type":50,"value":425},{"type":45,"tag":405,"props":506,"children":507},{"style":428},[508],{"type":50,"value":431},{"type":45,"tag":405,"props":510,"children":511},{"style":428},[512],{"type":50,"value":513}," --branch",{"type":45,"tag":405,"props":515,"children":516},{"style":428},[517],{"type":50,"value":518}," production",{"type":45,"tag":405,"props":520,"children":521},{"style":428},[522],{"type":50,"value":441},{"type":45,"tag":405,"props":524,"children":525},{"style":428},[526],{"type":50,"value":446},{"type":45,"tag":405,"props":528,"children":529},{"style":449},[530],{"type":50,"value":452},{"type":45,"tag":405,"props":532,"children":533},{"style":422},[534],{"type":50,"value":457},{"type":45,"tag":405,"props":536,"children":537},{"style":428},[538],{"type":50,"value":462},{"type":45,"tag":405,"props":540,"children":541},{"style":449},[542],{"type":50,"value":467},{"type":45,"tag":405,"props":544,"children":545},{"style":428},[546],{"type":50,"value":472},{"type":45,"tag":405,"props":548,"children":549},{"style":449},[550],{"type":50,"value":477},{"type":45,"tag":57,"props":552,"children":553},{},[554,556,562],{"type":50,"value":555},"The JSON response has a ",{"type":45,"tag":158,"props":557,"children":559},{"className":558},[],[560],{"type":50,"value":561},"currentPage",{"type":50,"value":563}," array with one entry per update group (both platforms of the same publish are collapsed into one entry):",{"type":45,"tag":394,"props":565,"children":569},{"className":566,"code":567,"language":568,"meta":399,"style":399},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"currentPage\": [\n    {\n      \"branch\": \"production\",\n      \"message\": \"\\\"Fix checkout crash\\\" (1 week ago by someone)\",\n      \"runtimeVersion\": \"1.0.6\",\n      \"group\": \"03d5dfcf-736c-475a-8730-af039c3f4d06\",\n      \"platforms\": \"android, ios\",\n      \"isRollBackToEmbedded\": false\n    }\n  ]\n}\n","json",[570],{"type":45,"tag":158,"props":571,"children":572},{"__ignoreMap":399},[573,581,609,617,657,709,747,784,822,848,857,866],{"type":45,"tag":405,"props":574,"children":575},{"class":407,"line":408},[576],{"type":45,"tag":405,"props":577,"children":578},{"style":449},[579],{"type":50,"value":580},"{\n",{"type":45,"tag":405,"props":582,"children":583},{"class":407,"line":418},[584,589,594,599,604],{"type":45,"tag":405,"props":585,"children":586},{"style":449},[587],{"type":50,"value":588},"  \"",{"type":45,"tag":405,"props":590,"children":592},{"style":591},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[593],{"type":50,"value":561},{"type":45,"tag":405,"props":595,"children":596},{"style":449},[597],{"type":50,"value":598},"\"",{"type":45,"tag":405,"props":600,"children":601},{"style":449},[602],{"type":50,"value":603},":",{"type":45,"tag":405,"props":605,"children":606},{"style":449},[607],{"type":50,"value":608}," [\n",{"type":45,"tag":405,"props":610,"children":611},{"class":407,"line":480},[612],{"type":45,"tag":405,"props":613,"children":614},{"style":449},[615],{"type":50,"value":616},"    {\n",{"type":45,"tag":405,"props":618,"children":619},{"class":407,"line":490},[620,625,630,634,638,643,648,652],{"type":45,"tag":405,"props":621,"children":622},{"style":449},[623],{"type":50,"value":624},"      \"",{"type":45,"tag":405,"props":626,"children":627},{"style":422},[628],{"type":50,"value":629},"branch",{"type":45,"tag":405,"props":631,"children":632},{"style":449},[633],{"type":50,"value":598},{"type":45,"tag":405,"props":635,"children":636},{"style":449},[637],{"type":50,"value":603},{"type":45,"tag":405,"props":639,"children":640},{"style":449},[641],{"type":50,"value":642}," \"",{"type":45,"tag":405,"props":644,"children":645},{"style":428},[646],{"type":50,"value":647},"production",{"type":45,"tag":405,"props":649,"children":650},{"style":449},[651],{"type":50,"value":598},{"type":45,"tag":405,"props":653,"children":654},{"style":449},[655],{"type":50,"value":656},",\n",{"type":45,"tag":405,"props":658,"children":659},{"class":407,"line":499},[660,664,669,673,677,681,687,692,696,701,705],{"type":45,"tag":405,"props":661,"children":662},{"style":449},[663],{"type":50,"value":624},{"type":45,"tag":405,"props":665,"children":666},{"style":422},[667],{"type":50,"value":668},"message",{"type":45,"tag":405,"props":670,"children":671},{"style":449},[672],{"type":50,"value":598},{"type":45,"tag":405,"props":674,"children":675},{"style":449},[676],{"type":50,"value":603},{"type":45,"tag":405,"props":678,"children":679},{"style":449},[680],{"type":50,"value":642},{"type":45,"tag":405,"props":682,"children":684},{"style":683},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[685],{"type":50,"value":686},"\\\"",{"type":45,"tag":405,"props":688,"children":689},{"style":428},[690],{"type":50,"value":691},"Fix checkout crash",{"type":45,"tag":405,"props":693,"children":694},{"style":683},[695],{"type":50,"value":686},{"type":45,"tag":405,"props":697,"children":698},{"style":428},[699],{"type":50,"value":700}," (1 week ago by someone)",{"type":45,"tag":405,"props":702,"children":703},{"style":449},[704],{"type":50,"value":598},{"type":45,"tag":405,"props":706,"children":707},{"style":449},[708],{"type":50,"value":656},{"type":45,"tag":405,"props":710,"children":712},{"class":407,"line":711},6,[713,717,722,726,730,734,739,743],{"type":45,"tag":405,"props":714,"children":715},{"style":449},[716],{"type":50,"value":624},{"type":45,"tag":405,"props":718,"children":719},{"style":422},[720],{"type":50,"value":721},"runtimeVersion",{"type":45,"tag":405,"props":723,"children":724},{"style":449},[725],{"type":50,"value":598},{"type":45,"tag":405,"props":727,"children":728},{"style":449},[729],{"type":50,"value":603},{"type":45,"tag":405,"props":731,"children":732},{"style":449},[733],{"type":50,"value":642},{"type":45,"tag":405,"props":735,"children":736},{"style":428},[737],{"type":50,"value":738},"1.0.6",{"type":45,"tag":405,"props":740,"children":741},{"style":449},[742],{"type":50,"value":598},{"type":45,"tag":405,"props":744,"children":745},{"style":449},[746],{"type":50,"value":656},{"type":45,"tag":405,"props":748,"children":750},{"class":407,"line":749},7,[751,755,759,763,767,771,776,780],{"type":45,"tag":405,"props":752,"children":753},{"style":449},[754],{"type":50,"value":624},{"type":45,"tag":405,"props":756,"children":757},{"style":422},[758],{"type":50,"value":271},{"type":45,"tag":405,"props":760,"children":761},{"style":449},[762],{"type":50,"value":598},{"type":45,"tag":405,"props":764,"children":765},{"style":449},[766],{"type":50,"value":603},{"type":45,"tag":405,"props":768,"children":769},{"style":449},[770],{"type":50,"value":642},{"type":45,"tag":405,"props":772,"children":773},{"style":428},[774],{"type":50,"value":775},"03d5dfcf-736c-475a-8730-af039c3f4d06",{"type":45,"tag":405,"props":777,"children":778},{"style":449},[779],{"type":50,"value":598},{"type":45,"tag":405,"props":781,"children":782},{"style":449},[783],{"type":50,"value":656},{"type":45,"tag":405,"props":785,"children":787},{"class":407,"line":786},8,[788,792,797,801,805,809,814,818],{"type":45,"tag":405,"props":789,"children":790},{"style":449},[791],{"type":50,"value":624},{"type":45,"tag":405,"props":793,"children":794},{"style":422},[795],{"type":50,"value":796},"platforms",{"type":45,"tag":405,"props":798,"children":799},{"style":449},[800],{"type":50,"value":598},{"type":45,"tag":405,"props":802,"children":803},{"style":449},[804],{"type":50,"value":603},{"type":45,"tag":405,"props":806,"children":807},{"style":449},[808],{"type":50,"value":642},{"type":45,"tag":405,"props":810,"children":811},{"style":428},[812],{"type":50,"value":813},"android, ios",{"type":45,"tag":405,"props":815,"children":816},{"style":449},[817],{"type":50,"value":598},{"type":45,"tag":405,"props":819,"children":820},{"style":449},[821],{"type":50,"value":656},{"type":45,"tag":405,"props":823,"children":825},{"class":407,"line":824},9,[826,830,835,839,843],{"type":45,"tag":405,"props":827,"children":828},{"style":449},[829],{"type":50,"value":624},{"type":45,"tag":405,"props":831,"children":832},{"style":422},[833],{"type":50,"value":834},"isRollBackToEmbedded",{"type":45,"tag":405,"props":836,"children":837},{"style":449},[838],{"type":50,"value":598},{"type":45,"tag":405,"props":840,"children":841},{"style":449},[842],{"type":50,"value":603},{"type":45,"tag":405,"props":844,"children":845},{"style":449},[846],{"type":50,"value":847}," false\n",{"type":45,"tag":405,"props":849,"children":851},{"class":407,"line":850},10,[852],{"type":45,"tag":405,"props":853,"children":854},{"style":449},[855],{"type":50,"value":856},"    }\n",{"type":45,"tag":405,"props":858,"children":860},{"class":407,"line":859},11,[861],{"type":45,"tag":405,"props":862,"children":863},{"style":449},[864],{"type":50,"value":865},"  ]\n",{"type":45,"tag":405,"props":867,"children":869},{"class":407,"line":868},12,[870],{"type":45,"tag":405,"props":871,"children":872},{"style":449},[873],{"type":50,"value":874},"}\n",{"type":45,"tag":57,"props":876,"children":877},{},[878,880,886,888,894],{"type":50,"value":879},"Entries also carry ",{"type":45,"tag":158,"props":881,"children":883},{"className":882},[],[884],{"type":50,"value":885},"codeSigningKey",{"type":50,"value":887}," and ",{"type":45,"tag":158,"props":889,"children":891},{"className":890},[],[892],{"type":50,"value":893},"rolloutPercentage",{"type":50,"value":895},", but only when those features are in use for the group (undefined values are omitted from the JSON output).",{"type":45,"tag":57,"props":897,"children":898},{},[899,901,906,908,914,916,922],{"type":50,"value":900},"When called with ",{"type":45,"tag":158,"props":902,"children":904},{"className":903},[],[905],{"type":50,"value":368},{"type":50,"value":907},", the response also includes ",{"type":45,"tag":158,"props":909,"children":911},{"className":910},[],[912],{"type":50,"value":913},"name",{"type":50,"value":915}," (the branch name) and ",{"type":45,"tag":158,"props":917,"children":919},{"className":918},[],[920],{"type":50,"value":921},"id",{"type":50,"value":923}," (the branch ID) at the top level.",{"type":45,"tag":84,"props":925,"children":927},{"id":926},"eas-updateinsights-groupid",[928],{"type":45,"tag":158,"props":929,"children":931},{"className":930},[],[932],{"type":50,"value":285},{"type":45,"tag":57,"props":934,"children":935},{},[936,938,943],{"type":50,"value":937},"Shows launches, failed launches, crash rate, unique users, launch asset count, and average payload size for a single update group, broken down ",{"type":45,"tag":61,"props":939,"children":940},{},[941],{"type":50,"value":942},"per platform",{"type":50,"value":944}," (iOS, Android), plus a daily breakdown of launches and failures.",{"type":45,"tag":946,"props":947,"children":949},"h3",{"id":948},"basic-use",[950],{"type":50,"value":951},"Basic use",{"type":45,"tag":394,"props":953,"children":955},{"className":396,"code":954,"language":398,"meta":399,"style":399},"eas update:insights 03d5dfcf-736c-475a-8730-af039c3f4d06\n",[956],{"type":45,"tag":158,"props":957,"children":958},{"__ignoreMap":399},[959],{"type":45,"tag":405,"props":960,"children":961},{"class":407,"line":408},[962,966,971],{"type":45,"tag":405,"props":963,"children":964},{"style":422},[965],{"type":50,"value":425},{"type":45,"tag":405,"props":967,"children":968},{"style":428},[969],{"type":50,"value":970}," update:insights",{"type":45,"tag":405,"props":972,"children":973},{"style":428},[974],{"type":50,"value":975}," 03d5dfcf-736c-475a-8730-af039c3f4d06\n",{"type":45,"tag":946,"props":977,"children":979},{"id":978},"flags",[980],{"type":50,"value":981},"Flags",{"type":45,"tag":222,"props":983,"children":984},{},[985,1001],{"type":45,"tag":226,"props":986,"children":987},{},[988],{"type":45,"tag":230,"props":989,"children":990},{},[991,996],{"type":45,"tag":234,"props":992,"children":993},{},[994],{"type":50,"value":995},"Flag",{"type":45,"tag":234,"props":997,"children":998},{},[999],{"type":50,"value":1000},"Description",{"type":45,"tag":245,"props":1002,"children":1003},{},[1004,1043,1075,1092,1116],{"type":45,"tag":230,"props":1005,"children":1006},{},[1007,1016],{"type":45,"tag":252,"props":1008,"children":1009},{},[1010],{"type":45,"tag":158,"props":1011,"children":1013},{"className":1012},[],[1014],{"type":50,"value":1015},"--days \u003CN>",{"type":45,"tag":252,"props":1017,"children":1018},{},[1019,1021,1026,1028,1034,1036,1042],{"type":50,"value":1020},"Look back N days. Default: ",{"type":45,"tag":61,"props":1022,"children":1023},{},[1024],{"type":50,"value":1025},"7",{"type":50,"value":1027},". Mutually exclusive with ",{"type":45,"tag":158,"props":1029,"children":1031},{"className":1030},[],[1032],{"type":50,"value":1033},"--start",{"type":50,"value":1035},"\u002F",{"type":45,"tag":158,"props":1037,"children":1039},{"className":1038},[],[1040],{"type":50,"value":1041},"--end",{"type":50,"value":77},{"type":45,"tag":230,"props":1044,"children":1045},{},[1046,1063],{"type":45,"tag":252,"props":1047,"children":1048},{},[1049,1055,1057],{"type":45,"tag":158,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":50,"value":1054},"--start \u003Ciso-date>",{"type":50,"value":1056}," \u002F ",{"type":45,"tag":158,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":50,"value":1062},"--end \u003Ciso-date>",{"type":45,"tag":252,"props":1064,"children":1065},{},[1066,1068,1074],{"type":50,"value":1067},"Explicit time range, e.g. ",{"type":45,"tag":158,"props":1069,"children":1071},{"className":1070},[],[1072],{"type":50,"value":1073},"--start 2026-04-01 --end 2026-04-15",{"type":50,"value":77},{"type":45,"tag":230,"props":1076,"children":1077},{},[1078,1087],{"type":45,"tag":252,"props":1079,"children":1080},{},[1081],{"type":45,"tag":158,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":50,"value":1086},"--platform \u003Cios|android>",{"type":45,"tag":252,"props":1088,"children":1089},{},[1090],{"type":50,"value":1091},"Filter to a single platform. Omit to see all platforms in the group.",{"type":45,"tag":230,"props":1093,"children":1094},{},[1095,1104],{"type":45,"tag":252,"props":1096,"children":1097},{},[1098],{"type":45,"tag":158,"props":1099,"children":1101},{"className":1100},[],[1102],{"type":50,"value":1103},"--json",{"type":45,"tag":252,"props":1105,"children":1106},{},[1107,1109,1115],{"type":50,"value":1108},"Machine-readable output. Implies ",{"type":45,"tag":158,"props":1110,"children":1112},{"className":1111},[],[1113],{"type":50,"value":1114},"--non-interactive",{"type":50,"value":77},{"type":45,"tag":230,"props":1117,"children":1118},{},[1119,1127],{"type":45,"tag":252,"props":1120,"children":1121},{},[1122],{"type":45,"tag":158,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":50,"value":1114},{"type":45,"tag":252,"props":1128,"children":1129},{},[1130],{"type":50,"value":1131},"Required when scripting.",{"type":45,"tag":946,"props":1133,"children":1135},{"id":1134},"json-output-shape",[1136],{"type":50,"value":1137},"JSON output shape",{"type":45,"tag":57,"props":1139,"children":1140},{},[1141,1143,1149,1151,1157,1159,1165,1166,1172,1173,1179,1181,1187,1189,1195,1196,1202,1203,1209,1210,1216,1217,1223,1224,1230,1232,1238,1239,1245,1246,1252,1254,1260,1262,1268],{"type":50,"value":1142},"Top level: ",{"type":45,"tag":158,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":50,"value":1148},"groupId",{"type":50,"value":1150},", ",{"type":45,"tag":158,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":50,"value":1156},"timespan",{"type":50,"value":1158}," (",{"type":45,"tag":158,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":50,"value":1164},"start",{"type":50,"value":1150},{"type":45,"tag":158,"props":1167,"children":1169},{"className":1168},[],[1170],{"type":50,"value":1171},"end",{"type":50,"value":1150},{"type":45,"tag":158,"props":1174,"children":1176},{"className":1175},[],[1177],{"type":50,"value":1178},"daysBack",{"type":50,"value":1180},"), and ",{"type":45,"tag":158,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":50,"value":1186},"platforms[]",{"type":50,"value":1188}," with one entry per platform the group was published to. Each platform entry has ",{"type":45,"tag":158,"props":1190,"children":1192},{"className":1191},[],[1193],{"type":50,"value":1194},"updateId",{"type":50,"value":1150},{"type":45,"tag":158,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":50,"value":1201},"totals",{"type":50,"value":1158},{"type":45,"tag":158,"props":1204,"children":1206},{"className":1205},[],[1207],{"type":50,"value":1208},"uniqueUsers",{"type":50,"value":1150},{"type":45,"tag":158,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":50,"value":1215},"installs",{"type":50,"value":1150},{"type":45,"tag":158,"props":1218,"children":1220},{"className":1219},[],[1221],{"type":50,"value":1222},"failedInstalls",{"type":50,"value":1150},{"type":45,"tag":158,"props":1225,"children":1227},{"className":1226},[],[1228],{"type":50,"value":1229},"crashRatePercent",{"type":50,"value":1231},"), ",{"type":45,"tag":158,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":50,"value":1237},"payload",{"type":50,"value":1158},{"type":45,"tag":158,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":50,"value":1244},"launchAssetCount",{"type":50,"value":1150},{"type":45,"tag":158,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":50,"value":1251},"averageUpdatePayloadBytes",{"type":50,"value":1253},"), and a ",{"type":45,"tag":158,"props":1255,"children":1257},{"className":1256},[],[1258],{"type":50,"value":1259},"daily[]",{"type":50,"value":1261}," time series of ",{"type":45,"tag":158,"props":1263,"children":1265},{"className":1264},[],[1266],{"type":50,"value":1267},"{ date, installs, failedInstalls }",{"type":50,"value":77},{"type":45,"tag":57,"props":1270,"children":1271},{},[1272,1274,1280],{"type":50,"value":1273},"For the complete schema and field reference, see ",{"type":45,"tag":69,"props":1275,"children":1277},{"href":1276},".\u002Freferences\u002Fupdate-insights-schema.md",[1278],{"type":50,"value":1279},"references\u002Fupdate-insights-schema.md",{"type":50,"value":77},{"type":45,"tag":57,"props":1282,"children":1283},{},[1284],{"type":50,"value":1285},"Fields that matter for health assessment:",{"type":45,"tag":101,"props":1287,"children":1288},{},[1289,1308,1325],{"type":45,"tag":105,"props":1290,"children":1291},{},[1292,1298,1300,1306],{"type":45,"tag":158,"props":1293,"children":1295},{"className":1294},[],[1296],{"type":50,"value":1297},"platforms[].totals.crashRatePercent",{"type":50,"value":1299},", computed as ",{"type":45,"tag":158,"props":1301,"children":1303},{"className":1302},[],[1304],{"type":50,"value":1305},"failedInstalls \u002F (installs + failedInstalls) * 100",{"type":50,"value":1307},". Zero when there are no installs.",{"type":45,"tag":105,"props":1309,"children":1310},{},[1311,1317,1318,1323],{"type":45,"tag":158,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":50,"value":1316},"platforms[].totals.installs",{"type":50,"value":887},{"type":45,"tag":158,"props":1319,"children":1321},{"className":1320},[],[1322],{"type":50,"value":1208},{"type":50,"value":1324}," give the adoption signal.",{"type":45,"tag":105,"props":1326,"children":1327},{},[1328,1334],{"type":45,"tag":158,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":50,"value":1333},"platforms[].daily",{"type":50,"value":1335}," is a time series, useful for spotting a sudden spike in failures.",{"type":45,"tag":946,"props":1337,"children":1339},{"id":1338},"errors",[1340],{"type":50,"value":1341},"Errors",{"type":45,"tag":101,"props":1343,"children":1344},{},[1345,1356,1375],{"type":45,"tag":105,"props":1346,"children":1347},{},[1348,1354],{"type":45,"tag":158,"props":1349,"children":1351},{"className":1350},[],[1352],{"type":50,"value":1353},"Could not find any updates with group ID: \"\u003Cid>\"",{"type":50,"value":1355}," — group doesn't exist or you lack access.",{"type":45,"tag":105,"props":1357,"children":1358},{},[1359,1365,1367,1373],{"type":45,"tag":158,"props":1360,"children":1362},{"className":1361},[],[1363],{"type":50,"value":1364},"Update group \"\u003Cid>\" has no ios update (available platforms: android)",{"type":50,"value":1366}," — ",{"type":45,"tag":158,"props":1368,"children":1370},{"className":1369},[],[1371],{"type":50,"value":1372},"--platform ios",{"type":50,"value":1374}," was used but the group wasn't published for iOS.",{"type":45,"tag":105,"props":1376,"children":1377},{},[1378,1384,1386,1392],{"type":45,"tag":158,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":50,"value":1383},"EAS Update insights is not supported by this version of eas-cli. Please upgrade ...",{"type":50,"value":1385}," — the server deprecated a field the CLI relies on. Run ",{"type":45,"tag":158,"props":1387,"children":1389},{"className":1388},[],[1390],{"type":50,"value":1391},"npm install -g eas-cli@latest",{"type":50,"value":77},{"type":45,"tag":84,"props":1394,"children":1396},{"id":1395},"eas-updateview-groupid-insights",[1397],{"type":45,"tag":158,"props":1398,"children":1400},{"className":1399},[],[1401],{"type":50,"value":302},{"type":45,"tag":57,"props":1403,"children":1404},{},[1405,1407,1413],{"type":50,"value":1406},"Extends the standard ",{"type":45,"tag":158,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":50,"value":1412},"update:view",{"type":50,"value":1414}," output with the same per-platform insights, inline.",{"type":45,"tag":394,"props":1416,"children":1418},{"className":396,"code":1417,"language":398,"meta":399,"style":399},"# Human-readable\neas update:view 03d5dfcf-... --insights\neas update:view 03d5dfcf-... --insights --days 30\n\n# JSON: wrapped as { updates: [...], insights: {...} }\neas update:view 03d5dfcf-... --json --insights\n",[1419],{"type":45,"tag":158,"props":1420,"children":1421},{"__ignoreMap":399},[1422,1430,1452,1483,1490,1498],{"type":45,"tag":405,"props":1423,"children":1424},{"class":407,"line":408},[1425],{"type":45,"tag":405,"props":1426,"children":1427},{"style":412},[1428],{"type":50,"value":1429},"# Human-readable\n",{"type":45,"tag":405,"props":1431,"children":1432},{"class":407,"line":418},[1433,1437,1442,1447],{"type":45,"tag":405,"props":1434,"children":1435},{"style":422},[1436],{"type":50,"value":425},{"type":45,"tag":405,"props":1438,"children":1439},{"style":428},[1440],{"type":50,"value":1441}," update:view",{"type":45,"tag":405,"props":1443,"children":1444},{"style":428},[1445],{"type":50,"value":1446}," 03d5dfcf-...",{"type":45,"tag":405,"props":1448,"children":1449},{"style":428},[1450],{"type":50,"value":1451}," --insights\n",{"type":45,"tag":405,"props":1453,"children":1454},{"class":407,"line":480},[1455,1459,1463,1467,1472,1477],{"type":45,"tag":405,"props":1456,"children":1457},{"style":422},[1458],{"type":50,"value":425},{"type":45,"tag":405,"props":1460,"children":1461},{"style":428},[1462],{"type":50,"value":1441},{"type":45,"tag":405,"props":1464,"children":1465},{"style":428},[1466],{"type":50,"value":1446},{"type":45,"tag":405,"props":1468,"children":1469},{"style":428},[1470],{"type":50,"value":1471}," --insights",{"type":45,"tag":405,"props":1473,"children":1474},{"style":428},[1475],{"type":50,"value":1476}," --days",{"type":45,"tag":405,"props":1478,"children":1480},{"style":1479},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1481],{"type":50,"value":1482}," 30\n",{"type":45,"tag":405,"props":1484,"children":1485},{"class":407,"line":490},[1486],{"type":45,"tag":405,"props":1487,"children":1488},{"emptyLinePlaceholder":484},[1489],{"type":50,"value":487},{"type":45,"tag":405,"props":1491,"children":1492},{"class":407,"line":499},[1493],{"type":45,"tag":405,"props":1494,"children":1495},{"style":412},[1496],{"type":50,"value":1497},"# JSON: wrapped as { updates: [...], insights: {...} }\n",{"type":45,"tag":405,"props":1499,"children":1500},{"class":407,"line":711},[1501,1505,1509,1513,1517],{"type":45,"tag":405,"props":1502,"children":1503},{"style":422},[1504],{"type":50,"value":425},{"type":45,"tag":405,"props":1506,"children":1507},{"style":428},[1508],{"type":50,"value":1441},{"type":45,"tag":405,"props":1510,"children":1511},{"style":428},[1512],{"type":50,"value":1446},{"type":45,"tag":405,"props":1514,"children":1515},{"style":428},[1516],{"type":50,"value":441},{"type":45,"tag":405,"props":1518,"children":1519},{"style":428},[1520],{"type":50,"value":1451},{"type":45,"tag":57,"props":1522,"children":1523},{},[1524,1526,1532,1533,1538,1540,1546,1547,1552,1553,1558,1560,1565],{"type":50,"value":1525},"Without ",{"type":45,"tag":158,"props":1527,"children":1529},{"className":1528},[],[1530],{"type":50,"value":1531},"--insights",{"type":50,"value":1150},{"type":45,"tag":158,"props":1534,"children":1536},{"className":1535},[],[1537],{"type":50,"value":1412},{"type":50,"value":1539}," behaves exactly as before — no JSON shape change for existing consumers. The ",{"type":45,"tag":158,"props":1541,"children":1543},{"className":1542},[],[1544],{"type":50,"value":1545},"--days",{"type":50,"value":1056},{"type":45,"tag":158,"props":1548,"children":1550},{"className":1549},[],[1551],{"type":50,"value":1033},{"type":50,"value":1056},{"type":45,"tag":158,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":50,"value":1041},{"type":50,"value":1559}," flags only apply when ",{"type":45,"tag":158,"props":1561,"children":1563},{"className":1562},[],[1564],{"type":50,"value":1531},{"type":50,"value":1566}," is set; passing them alone errors.",{"type":45,"tag":84,"props":1568,"children":1570},{"id":1569},"eas-channelinsights-channel-name-runtime-version-version",[1571],{"type":45,"tag":158,"props":1572,"children":1574},{"className":1573},[],[1575],{"type":50,"value":319},{"type":45,"tag":57,"props":1577,"children":1578},{},[1579],{"type":50,"value":1580},"Shows, per channel, how many users are on the embedded build vs over-the-air updates and which updates are pulling the most traffic. Must be run from an Expo project directory.",{"type":45,"tag":946,"props":1582,"children":1584},{"id":1583},"basic-use-1",[1585],{"type":50,"value":951},{"type":45,"tag":394,"props":1587,"children":1589},{"className":396,"code":1588,"language":398,"meta":399,"style":399},"eas channel:insights --channel production --runtime-version 1.0.6\n",[1590],{"type":45,"tag":158,"props":1591,"children":1592},{"__ignoreMap":399},[1593],{"type":45,"tag":405,"props":1594,"children":1595},{"class":407,"line":408},[1596,1600,1605,1610,1614,1619],{"type":45,"tag":405,"props":1597,"children":1598},{"style":422},[1599],{"type":50,"value":425},{"type":45,"tag":405,"props":1601,"children":1602},{"style":428},[1603],{"type":50,"value":1604}," channel:insights",{"type":45,"tag":405,"props":1606,"children":1607},{"style":428},[1608],{"type":50,"value":1609}," --channel",{"type":45,"tag":405,"props":1611,"children":1612},{"style":428},[1613],{"type":50,"value":518},{"type":45,"tag":405,"props":1615,"children":1616},{"style":428},[1617],{"type":50,"value":1618}," --runtime-version",{"type":45,"tag":405,"props":1620,"children":1621},{"style":1479},[1622],{"type":50,"value":1623}," 1.0.6\n",{"type":45,"tag":946,"props":1625,"children":1627},{"id":1626},"flags-1",[1628],{"type":50,"value":981},{"type":45,"tag":222,"props":1630,"children":1631},{},[1632,1646],{"type":45,"tag":226,"props":1633,"children":1634},{},[1635],{"type":45,"tag":230,"props":1636,"children":1637},{},[1638,1642],{"type":45,"tag":234,"props":1639,"children":1640},{},[1641],{"type":50,"value":995},{"type":45,"tag":234,"props":1643,"children":1644},{},[1645],{"type":50,"value":1000},{"type":45,"tag":245,"props":1647,"children":1648},{},[1649,1684,1719,1739,1767],{"type":45,"tag":230,"props":1650,"children":1651},{},[1652,1661],{"type":45,"tag":252,"props":1653,"children":1654},{},[1655],{"type":45,"tag":158,"props":1656,"children":1658},{"className":1657},[],[1659],{"type":50,"value":1660},"--channel \u003Cname>",{"type":45,"tag":252,"props":1662,"children":1663},{},[1664,1669,1671,1676,1677,1683],{"type":45,"tag":61,"props":1665,"children":1666},{},[1667],{"type":50,"value":1668},"Required.",{"type":50,"value":1670}," The channel name (e.g. ",{"type":45,"tag":158,"props":1672,"children":1674},{"className":1673},[],[1675],{"type":50,"value":647},{"type":50,"value":1150},{"type":45,"tag":158,"props":1678,"children":1680},{"className":1679},[],[1681],{"type":50,"value":1682},"staging",{"type":50,"value":173},{"type":45,"tag":230,"props":1685,"children":1686},{},[1687,1696],{"type":45,"tag":252,"props":1688,"children":1689},{},[1690],{"type":45,"tag":158,"props":1691,"children":1693},{"className":1692},[],[1694],{"type":50,"value":1695},"--runtime-version \u003Cversion>",{"type":45,"tag":252,"props":1697,"children":1698},{},[1699,1703,1705,1710,1712,1718],{"type":45,"tag":61,"props":1700,"children":1701},{},[1702],{"type":50,"value":1668},{"type":50,"value":1704}," Match exactly what was published. Check ",{"type":45,"tag":158,"props":1706,"children":1708},{"className":1707},[],[1709],{"type":50,"value":721},{"type":50,"value":1711}," values in ",{"type":45,"tag":158,"props":1713,"children":1715},{"className":1714},[],[1716],{"type":50,"value":1717},"update:list",{"type":50,"value":77},{"type":45,"tag":230,"props":1720,"children":1721},{},[1722,1730],{"type":45,"tag":252,"props":1723,"children":1724},{},[1725],{"type":45,"tag":158,"props":1726,"children":1728},{"className":1727},[],[1729],{"type":50,"value":1015},{"type":45,"tag":252,"props":1731,"children":1732},{},[1733,1734,1738],{"type":50,"value":1020},{"type":45,"tag":61,"props":1735,"children":1736},{},[1737],{"type":50,"value":1025},{"type":50,"value":77},{"type":45,"tag":230,"props":1740,"children":1741},{},[1742,1756],{"type":45,"tag":252,"props":1743,"children":1744},{},[1745,1750,1751],{"type":45,"tag":158,"props":1746,"children":1748},{"className":1747},[],[1749],{"type":50,"value":1033},{"type":50,"value":1056},{"type":45,"tag":158,"props":1752,"children":1754},{"className":1753},[],[1755],{"type":50,"value":1041},{"type":45,"tag":252,"props":1757,"children":1758},{},[1759,1761,1766],{"type":50,"value":1760},"Explicit time range, like ",{"type":45,"tag":158,"props":1762,"children":1764},{"className":1763},[],[1765],{"type":50,"value":212},{"type":50,"value":77},{"type":45,"tag":230,"props":1768,"children":1769},{},[1770,1784],{"type":45,"tag":252,"props":1771,"children":1772},{},[1773,1778,1779],{"type":45,"tag":158,"props":1774,"children":1776},{"className":1775},[],[1777],{"type":50,"value":1103},{"type":50,"value":1056},{"type":45,"tag":158,"props":1780,"children":1782},{"className":1781},[],[1783],{"type":50,"value":1114},{"type":45,"tag":252,"props":1785,"children":1786},{},[1787],{"type":50,"value":1788},"Machine-readable output.",{"type":45,"tag":946,"props":1790,"children":1792},{"id":1791},"json-output-shape-1",[1793],{"type":50,"value":1137},{"type":45,"tag":57,"props":1795,"children":1796},{},[1797,1798,1804,1805,1810,1811,1816,1817,1823,1824,1830,1831,1837,1839,1845,1846,1851,1852,1857,1858,1864,1865,1871,1872,1878,1880,1886,1887,1893,1895,1901,1902,1908],{"type":50,"value":1142},{"type":45,"tag":158,"props":1799,"children":1801},{"className":1800},[],[1802],{"type":50,"value":1803},"channel",{"type":50,"value":1150},{"type":45,"tag":158,"props":1806,"children":1808},{"className":1807},[],[1809],{"type":50,"value":721},{"type":50,"value":1150},{"type":45,"tag":158,"props":1812,"children":1814},{"className":1813},[],[1815],{"type":50,"value":1156},{"type":50,"value":1150},{"type":45,"tag":158,"props":1818,"children":1820},{"className":1819},[],[1821],{"type":50,"value":1822},"embeddedUpdateTotalUniqueUsers",{"type":50,"value":1150},{"type":45,"tag":158,"props":1825,"children":1827},{"className":1826},[],[1828],{"type":50,"value":1829},"otaTotalUniqueUsers",{"type":50,"value":1150},{"type":45,"tag":158,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":50,"value":1836},"mostPopularUpdates[]",{"type":50,"value":1838}," (each with ",{"type":45,"tag":158,"props":1840,"children":1842},{"className":1841},[],[1843],{"type":50,"value":1844},"rank",{"type":50,"value":1150},{"type":45,"tag":158,"props":1847,"children":1849},{"className":1848},[],[1850],{"type":50,"value":1148},{"type":50,"value":1150},{"type":45,"tag":158,"props":1853,"children":1855},{"className":1854},[],[1856],{"type":50,"value":668},{"type":50,"value":1150},{"type":45,"tag":158,"props":1859,"children":1861},{"className":1860},[],[1862],{"type":50,"value":1863},"platform",{"type":50,"value":1150},{"type":45,"tag":158,"props":1866,"children":1868},{"className":1867},[],[1869],{"type":50,"value":1870},"totalUniqueUsers",{"type":50,"value":1231},{"type":45,"tag":158,"props":1873,"children":1875},{"className":1874},[],[1876],{"type":50,"value":1877},"cumulativeMetricsAtLastTimestamp[]",{"type":50,"value":1879},", plus chart-shaped ",{"type":45,"tag":158,"props":1881,"children":1883},{"className":1882},[],[1884],{"type":50,"value":1885},"uniqueUsersOverTime",{"type":50,"value":887},{"type":45,"tag":158,"props":1888,"children":1890},{"className":1889},[],[1891],{"type":50,"value":1892},"cumulativeMetricsOverTime",{"type":50,"value":1894}," objects with ",{"type":45,"tag":158,"props":1896,"children":1898},{"className":1897},[],[1899],{"type":50,"value":1900},"labels",{"type":50,"value":887},{"type":45,"tag":158,"props":1903,"children":1905},{"className":1904},[],[1906],{"type":50,"value":1907},"datasets",{"type":50,"value":77},{"type":45,"tag":57,"props":1910,"children":1911},{},[1912,1913,1919],{"type":50,"value":1273},{"type":45,"tag":69,"props":1914,"children":1916},{"href":1915},".\u002Freferences\u002Fchannel-insights-schema.md",[1917],{"type":50,"value":1918},"references\u002Fchannel-insights-schema.md",{"type":50,"value":77},{"type":45,"tag":57,"props":1921,"children":1922},{},[1923],{"type":50,"value":1924},"Fields that matter:",{"type":45,"tag":101,"props":1926,"children":1927},{},[1928,1938,1969],{"type":45,"tag":105,"props":1929,"children":1930},{},[1931,1936],{"type":45,"tag":158,"props":1932,"children":1934},{"className":1933},[],[1935],{"type":50,"value":1822},{"type":50,"value":1937}," is the count of users running the embedded (binary-bundled) build.",{"type":45,"tag":105,"props":1939,"children":1940},{},[1941,1946,1948,1953,1955,1960,1962,1967],{"type":45,"tag":158,"props":1942,"children":1944},{"className":1943},[],[1945],{"type":50,"value":1836},{"type":50,"value":1947}," is updates ranked by ",{"type":45,"tag":158,"props":1949,"children":1951},{"className":1950},[],[1952],{"type":50,"value":1870},{"type":50,"value":1954},". ",{"type":45,"tag":61,"props":1956,"children":1957},{},[1958],{"type":50,"value":1959},"Caveat",{"type":50,"value":1961},": this is the top-N the server returns; ",{"type":45,"tag":158,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":50,"value":1829},{"type":50,"value":1968}," is a sum of that list and may undercount total OTA reach if more than top-N updates are active.",{"type":45,"tag":105,"props":1970,"children":1971},{},[1972,1977,1978,1983],{"type":45,"tag":158,"props":1973,"children":1975},{"className":1974},[],[1976],{"type":50,"value":1885},{"type":50,"value":887},{"type":45,"tag":158,"props":1979,"children":1981},{"className":1980},[],[1982],{"type":50,"value":1892},{"type":50,"value":1984}," are daily data series for charting.",{"type":45,"tag":946,"props":1986,"children":1988},{"id":1987},"errors-1",[1989],{"type":50,"value":1341},{"type":45,"tag":101,"props":1991,"children":1992},{},[1993,2004],{"type":45,"tag":105,"props":1994,"children":1995},{},[1996,2002],{"type":45,"tag":158,"props":1997,"children":1999},{"className":1998},[],[2000],{"type":50,"value":2001},"Could not find channel with the name \u003Cname>",{"type":50,"value":2003}," — typo or wrong account.",{"type":45,"tag":105,"props":2005,"children":2006},{},[2007,2009,2015],{"type":50,"value":2008},"\"No update launches recorded\" in the table \u002F empty ",{"type":45,"tag":158,"props":2010,"children":2012},{"className":2011},[],[2013],{"type":50,"value":2014},"mostPopularUpdates",{"type":50,"value":2016}," in JSON — no OTA update has been launched for that channel + runtime yet. Usually means the channel is still serving the embedded build only.",{"type":45,"tag":84,"props":2018,"children":2020},{"id":2019},"common-workflows",[2021],{"type":50,"value":2022},"Common workflows",{"type":45,"tag":946,"props":2024,"children":2026},{"id":2025},"verify-the-update-i-just-published-is-healthy",[2027],{"type":50,"value":2028},"Verify the update I just published is healthy",{"type":45,"tag":394,"props":2030,"children":2032},{"className":396,"code":2031,"language":398,"meta":399,"style":399},"# 1. Grab the latest publish on production\nGROUP_ID=$(eas update:list --branch production --json --non-interactive \\\n  | jq -r '.currentPage[0].group')\n\n# 2. Give it some adoption time (minutes to hours), then check crash rate\neas update:insights \"$GROUP_ID\" --json --non-interactive \\\n  | jq '.platforms[] | {platform, installs: .totals.installs, crashRate: .totals.crashRatePercent}'\n",[2033],{"type":45,"tag":158,"props":2034,"children":2035},{"__ignoreMap":399},[2036,2044,2086,2120,2127,2135,2171],{"type":45,"tag":405,"props":2037,"children":2038},{"class":407,"line":408},[2039],{"type":45,"tag":405,"props":2040,"children":2041},{"style":412},[2042],{"type":50,"value":2043},"# 1. Grab the latest publish on production\n",{"type":45,"tag":405,"props":2045,"children":2046},{"class":407,"line":418},[2047,2052,2057,2061,2065,2069,2073,2077,2081],{"type":45,"tag":405,"props":2048,"children":2049},{"style":683},[2050],{"type":50,"value":2051},"GROUP_ID",{"type":45,"tag":405,"props":2053,"children":2054},{"style":449},[2055],{"type":50,"value":2056},"=$(",{"type":45,"tag":405,"props":2058,"children":2059},{"style":422},[2060],{"type":50,"value":425},{"type":45,"tag":405,"props":2062,"children":2063},{"style":428},[2064],{"type":50,"value":431},{"type":45,"tag":405,"props":2066,"children":2067},{"style":428},[2068],{"type":50,"value":513},{"type":45,"tag":405,"props":2070,"children":2071},{"style":428},[2072],{"type":50,"value":518},{"type":45,"tag":405,"props":2074,"children":2075},{"style":428},[2076],{"type":50,"value":441},{"type":45,"tag":405,"props":2078,"children":2079},{"style":428},[2080],{"type":50,"value":446},{"type":45,"tag":405,"props":2082,"children":2083},{"style":683},[2084],{"type":50,"value":2085}," \\\n",{"type":45,"tag":405,"props":2087,"children":2088},{"class":407,"line":480},[2089,2094,2098,2102,2106,2110,2115],{"type":45,"tag":405,"props":2090,"children":2091},{"style":449},[2092],{"type":50,"value":2093},"  |",{"type":45,"tag":405,"props":2095,"children":2096},{"style":422},[2097],{"type":50,"value":457},{"type":45,"tag":405,"props":2099,"children":2100},{"style":428},[2101],{"type":50,"value":462},{"type":45,"tag":405,"props":2103,"children":2104},{"style":449},[2105],{"type":50,"value":467},{"type":45,"tag":405,"props":2107,"children":2108},{"style":428},[2109],{"type":50,"value":472},{"type":45,"tag":405,"props":2111,"children":2112},{"style":449},[2113],{"type":50,"value":2114},"'",{"type":45,"tag":405,"props":2116,"children":2117},{"style":449},[2118],{"type":50,"value":2119},")\n",{"type":45,"tag":405,"props":2121,"children":2122},{"class":407,"line":490},[2123],{"type":45,"tag":405,"props":2124,"children":2125},{"emptyLinePlaceholder":484},[2126],{"type":50,"value":487},{"type":45,"tag":405,"props":2128,"children":2129},{"class":407,"line":499},[2130],{"type":45,"tag":405,"props":2131,"children":2132},{"style":412},[2133],{"type":50,"value":2134},"# 2. Give it some adoption time (minutes to hours), then check crash rate\n",{"type":45,"tag":405,"props":2136,"children":2137},{"class":407,"line":711},[2138,2142,2146,2150,2155,2159,2163,2167],{"type":45,"tag":405,"props":2139,"children":2140},{"style":422},[2141],{"type":50,"value":425},{"type":45,"tag":405,"props":2143,"children":2144},{"style":428},[2145],{"type":50,"value":970},{"type":45,"tag":405,"props":2147,"children":2148},{"style":449},[2149],{"type":50,"value":642},{"type":45,"tag":405,"props":2151,"children":2152},{"style":683},[2153],{"type":50,"value":2154},"$GROUP_ID",{"type":45,"tag":405,"props":2156,"children":2157},{"style":449},[2158],{"type":50,"value":598},{"type":45,"tag":405,"props":2160,"children":2161},{"style":428},[2162],{"type":50,"value":441},{"type":45,"tag":405,"props":2164,"children":2165},{"style":428},[2166],{"type":50,"value":446},{"type":45,"tag":405,"props":2168,"children":2169},{"style":683},[2170],{"type":50,"value":2085},{"type":45,"tag":405,"props":2172,"children":2173},{"class":407,"line":749},[2174,2178,2182,2186,2191],{"type":45,"tag":405,"props":2175,"children":2176},{"style":449},[2177],{"type":50,"value":2093},{"type":45,"tag":405,"props":2179,"children":2180},{"style":422},[2181],{"type":50,"value":457},{"type":45,"tag":405,"props":2183,"children":2184},{"style":449},[2185],{"type":50,"value":467},{"type":45,"tag":405,"props":2187,"children":2188},{"style":428},[2189],{"type":50,"value":2190},".platforms[] | {platform, installs: .totals.installs, crashRate: .totals.crashRatePercent}",{"type":45,"tag":405,"props":2192,"children":2193},{"style":449},[2194],{"type":50,"value":477},{"type":45,"tag":57,"props":2196,"children":2197},{},[2198,2200,2206],{"type":50,"value":2199},"Compare the ",{"type":45,"tag":158,"props":2201,"children":2203},{"className":2202},[],[2204],{"type":50,"value":2205},"crashRate",{"type":50,"value":2207}," across platforms and against previous releases; sudden spikes or asymmetric behaviour (iOS spiking while Android is flat, or vice versa) is the signal to investigate.",{"type":45,"tag":946,"props":2209,"children":2211},{"id":2210},"compare-adoption-between-two-channels",[2212],{"type":50,"value":2213},"Compare adoption between two channels",{"type":45,"tag":394,"props":2215,"children":2217},{"className":396,"code":2216,"language":398,"meta":399,"style":399},"for channel in production staging; do\n  echo \"--- $channel ---\"\n  eas channel:insights --channel \"$channel\" --runtime-version 1.0.6 --json --non-interactive \\\n    | jq '{\n        channel,\n        embedded: .embeddedUpdateTotalUniqueUsers,\n        ota: .otaTotalUniqueUsers,\n        topUpdate: .mostPopularUpdates[0]\n      }'\ndone\n",[2218],{"type":45,"tag":158,"props":2219,"children":2220},{"__ignoreMap":399},[2221,2259,2292,2341,2361,2369,2377,2385,2393,2405],{"type":45,"tag":405,"props":2222,"children":2223},{"class":407,"line":408},[2224,2230,2235,2240,2244,2249,2254],{"type":45,"tag":405,"props":2225,"children":2227},{"style":2226},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[2228],{"type":50,"value":2229},"for",{"type":45,"tag":405,"props":2231,"children":2232},{"style":683},[2233],{"type":50,"value":2234}," channel ",{"type":45,"tag":405,"props":2236,"children":2237},{"style":2226},[2238],{"type":50,"value":2239},"in",{"type":45,"tag":405,"props":2241,"children":2242},{"style":428},[2243],{"type":50,"value":518},{"type":45,"tag":405,"props":2245,"children":2246},{"style":428},[2247],{"type":50,"value":2248}," staging",{"type":45,"tag":405,"props":2250,"children":2251},{"style":449},[2252],{"type":50,"value":2253},";",{"type":45,"tag":405,"props":2255,"children":2256},{"style":2226},[2257],{"type":50,"value":2258}," do\n",{"type":45,"tag":405,"props":2260,"children":2261},{"class":407,"line":418},[2262,2268,2272,2277,2282,2287],{"type":45,"tag":405,"props":2263,"children":2265},{"style":2264},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[2266],{"type":50,"value":2267},"  echo",{"type":45,"tag":405,"props":2269,"children":2270},{"style":449},[2271],{"type":50,"value":642},{"type":45,"tag":405,"props":2273,"children":2274},{"style":428},[2275],{"type":50,"value":2276},"--- ",{"type":45,"tag":405,"props":2278,"children":2279},{"style":683},[2280],{"type":50,"value":2281},"$channel",{"type":45,"tag":405,"props":2283,"children":2284},{"style":428},[2285],{"type":50,"value":2286}," ---",{"type":45,"tag":405,"props":2288,"children":2289},{"style":449},[2290],{"type":50,"value":2291},"\"\n",{"type":45,"tag":405,"props":2293,"children":2294},{"class":407,"line":480},[2295,2300,2304,2308,2312,2316,2320,2324,2329,2333,2337],{"type":45,"tag":405,"props":2296,"children":2297},{"style":422},[2298],{"type":50,"value":2299},"  eas",{"type":45,"tag":405,"props":2301,"children":2302},{"style":428},[2303],{"type":50,"value":1604},{"type":45,"tag":405,"props":2305,"children":2306},{"style":428},[2307],{"type":50,"value":1609},{"type":45,"tag":405,"props":2309,"children":2310},{"style":449},[2311],{"type":50,"value":642},{"type":45,"tag":405,"props":2313,"children":2314},{"style":683},[2315],{"type":50,"value":2281},{"type":45,"tag":405,"props":2317,"children":2318},{"style":449},[2319],{"type":50,"value":598},{"type":45,"tag":405,"props":2321,"children":2322},{"style":428},[2323],{"type":50,"value":1618},{"type":45,"tag":405,"props":2325,"children":2326},{"style":1479},[2327],{"type":50,"value":2328}," 1.0.6",{"type":45,"tag":405,"props":2330,"children":2331},{"style":428},[2332],{"type":50,"value":441},{"type":45,"tag":405,"props":2334,"children":2335},{"style":428},[2336],{"type":50,"value":446},{"type":45,"tag":405,"props":2338,"children":2339},{"style":683},[2340],{"type":50,"value":2085},{"type":45,"tag":405,"props":2342,"children":2343},{"class":407,"line":490},[2344,2349,2353,2357],{"type":45,"tag":405,"props":2345,"children":2346},{"style":449},[2347],{"type":50,"value":2348},"    |",{"type":45,"tag":405,"props":2350,"children":2351},{"style":422},[2352],{"type":50,"value":457},{"type":45,"tag":405,"props":2354,"children":2355},{"style":449},[2356],{"type":50,"value":467},{"type":45,"tag":405,"props":2358,"children":2359},{"style":428},[2360],{"type":50,"value":580},{"type":45,"tag":405,"props":2362,"children":2363},{"class":407,"line":499},[2364],{"type":45,"tag":405,"props":2365,"children":2366},{"style":428},[2367],{"type":50,"value":2368},"        channel,\n",{"type":45,"tag":405,"props":2370,"children":2371},{"class":407,"line":711},[2372],{"type":45,"tag":405,"props":2373,"children":2374},{"style":428},[2375],{"type":50,"value":2376},"        embedded: .embeddedUpdateTotalUniqueUsers,\n",{"type":45,"tag":405,"props":2378,"children":2379},{"class":407,"line":749},[2380],{"type":45,"tag":405,"props":2381,"children":2382},{"style":428},[2383],{"type":50,"value":2384},"        ota: .otaTotalUniqueUsers,\n",{"type":45,"tag":405,"props":2386,"children":2387},{"class":407,"line":786},[2388],{"type":45,"tag":405,"props":2389,"children":2390},{"style":428},[2391],{"type":50,"value":2392},"        topUpdate: .mostPopularUpdates[0]\n",{"type":45,"tag":405,"props":2394,"children":2395},{"class":407,"line":824},[2396,2401],{"type":45,"tag":405,"props":2397,"children":2398},{"style":428},[2399],{"type":50,"value":2400},"      }",{"type":45,"tag":405,"props":2402,"children":2403},{"style":449},[2404],{"type":50,"value":477},{"type":45,"tag":405,"props":2406,"children":2407},{"class":407,"line":850},[2408],{"type":45,"tag":405,"props":2409,"children":2410},{"style":2226},[2411],{"type":50,"value":2412},"done\n",{"type":45,"tag":946,"props":2414,"children":2416},{"id":2415},"detect-a-rollout-regression-in-the-last-24-hours",[2417],{"type":50,"value":2418},"Detect a rollout regression in the last 24 hours",{"type":45,"tag":394,"props":2420,"children":2422},{"className":396,"code":2421,"language":398,"meta":399,"style":399},"eas update:insights \"$GROUP_ID\" --days 1 --json --non-interactive \\\n  | jq '.platforms[] | select(.totals.crashRatePercent > 1)'\n",[2423],{"type":45,"tag":158,"props":2424,"children":2425},{"__ignoreMap":399},[2426,2470],{"type":45,"tag":405,"props":2427,"children":2428},{"class":407,"line":408},[2429,2433,2437,2441,2445,2449,2453,2458,2462,2466],{"type":45,"tag":405,"props":2430,"children":2431},{"style":422},[2432],{"type":50,"value":425},{"type":45,"tag":405,"props":2434,"children":2435},{"style":428},[2436],{"type":50,"value":970},{"type":45,"tag":405,"props":2438,"children":2439},{"style":449},[2440],{"type":50,"value":642},{"type":45,"tag":405,"props":2442,"children":2443},{"style":683},[2444],{"type":50,"value":2154},{"type":45,"tag":405,"props":2446,"children":2447},{"style":449},[2448],{"type":50,"value":598},{"type":45,"tag":405,"props":2450,"children":2451},{"style":428},[2452],{"type":50,"value":1476},{"type":45,"tag":405,"props":2454,"children":2455},{"style":1479},[2456],{"type":50,"value":2457}," 1",{"type":45,"tag":405,"props":2459,"children":2460},{"style":428},[2461],{"type":50,"value":441},{"type":45,"tag":405,"props":2463,"children":2464},{"style":428},[2465],{"type":50,"value":446},{"type":45,"tag":405,"props":2467,"children":2468},{"style":683},[2469],{"type":50,"value":2085},{"type":45,"tag":405,"props":2471,"children":2472},{"class":407,"line":418},[2473,2477,2481,2485,2490],{"type":45,"tag":405,"props":2474,"children":2475},{"style":449},[2476],{"type":50,"value":2093},{"type":45,"tag":405,"props":2478,"children":2479},{"style":422},[2480],{"type":50,"value":457},{"type":45,"tag":405,"props":2482,"children":2483},{"style":449},[2484],{"type":50,"value":467},{"type":45,"tag":405,"props":2486,"children":2487},{"style":428},[2488],{"type":50,"value":2489},".platforms[] | select(.totals.crashRatePercent > 1)",{"type":45,"tag":405,"props":2491,"children":2492},{"style":449},[2493],{"type":50,"value":477},{"type":45,"tag":946,"props":2495,"children":2497},{"id":2496},"summarize-group-metrics-for-release-notes",[2498],{"type":50,"value":2499},"Summarize group metrics for release notes",{"type":45,"tag":394,"props":2501,"children":2503},{"className":396,"code":2502,"language":398,"meta":399,"style":399},"eas update:view \"$GROUP_ID\" --insights --days 30\n",[2504],{"type":45,"tag":158,"props":2505,"children":2506},{"__ignoreMap":399},[2507],{"type":45,"tag":405,"props":2508,"children":2509},{"class":407,"line":408},[2510,2514,2518,2522,2526,2530,2534,2538],{"type":45,"tag":405,"props":2511,"children":2512},{"style":422},[2513],{"type":50,"value":425},{"type":45,"tag":405,"props":2515,"children":2516},{"style":428},[2517],{"type":50,"value":1441},{"type":45,"tag":405,"props":2519,"children":2520},{"style":449},[2521],{"type":50,"value":642},{"type":45,"tag":405,"props":2523,"children":2524},{"style":683},[2525],{"type":50,"value":2154},{"type":45,"tag":405,"props":2527,"children":2528},{"style":449},[2529],{"type":50,"value":598},{"type":45,"tag":405,"props":2531,"children":2532},{"style":428},[2533],{"type":50,"value":1471},{"type":45,"tag":405,"props":2535,"children":2536},{"style":428},[2537],{"type":50,"value":1476},{"type":45,"tag":405,"props":2539,"children":2540},{"style":1479},[2541],{"type":50,"value":1482},{"type":45,"tag":57,"props":2543,"children":2544},{},[2545],{"type":50,"value":2546},"Human-readable group details plus 30 days of launches\u002Ffailures per platform — suitable for pasting into a changelog or incident review.",{"type":45,"tag":84,"props":2548,"children":2550},{"id":2549},"output-tips",[2551],{"type":50,"value":2552},"Output tips",{"type":45,"tag":101,"props":2554,"children":2555},{},[2556,2569,2586,2607],{"type":45,"tag":105,"props":2557,"children":2558},{},[2559,2561,2567],{"type":50,"value":2560},"Pipe JSON through ",{"type":45,"tag":158,"props":2562,"children":2564},{"className":2563},[],[2565],{"type":50,"value":2566},"jq",{"type":50,"value":2568},"; payloads are structured for easy filtering.",{"type":45,"tag":105,"props":2570,"children":2571},{},[2572,2577,2579,2584],{"type":45,"tag":158,"props":2573,"children":2575},{"className":2574},[],[2576],{"type":50,"value":1103},{"type":50,"value":2578}," implies ",{"type":45,"tag":158,"props":2580,"children":2582},{"className":2581},[],[2583],{"type":50,"value":1114},{"type":50,"value":2585},", but passing both is explicit and scripting-friendly.",{"type":45,"tag":105,"props":2587,"children":2588},{},[2589,2591,2597,2599,2605],{"type":50,"value":2590},"Dates in ",{"type":45,"tag":158,"props":2592,"children":2594},{"className":2593},[],[2595],{"type":50,"value":2596},"daily[].date",{"type":50,"value":2598}," are UTC ISO timestamps; the human-readable table renders them as ",{"type":45,"tag":158,"props":2600,"children":2602},{"className":2601},[],[2603],{"type":50,"value":2604},"YYYY-MM-DD",{"type":50,"value":2606}," (UTC).",{"type":45,"tag":105,"props":2608,"children":2609},{},[2610,2612,2617,2618,2623],{"type":50,"value":2611},"The CLI table labels say \"Launches\" \u002F \"Crashes\" while JSON uses ",{"type":45,"tag":158,"props":2613,"children":2615},{"className":2614},[],[2616],{"type":50,"value":1215},{"type":50,"value":1056},{"type":45,"tag":158,"props":2619,"children":2621},{"className":2620},[],[2622],{"type":50,"value":1222},{"type":50,"value":2624},". Same field, different display name.",{"type":45,"tag":84,"props":2626,"children":2628},{"id":2627},"limitations",[2629],{"type":50,"value":2630},"Limitations",{"type":45,"tag":101,"props":2632,"children":2633},{},[2634,2657,2667,2692],{"type":45,"tag":105,"props":2635,"children":2636},{},[2637,2642,2644,2649,2651,2656],{"type":45,"tag":61,"props":2638,"children":2639},{},[2640],{"type":50,"value":2641},"Unique users across platforms",{"type":50,"value":2643}," may double-count users who run the same publish on both iOS and Android. The same caveat applies to ",{"type":45,"tag":158,"props":2645,"children":2647},{"className":2646},[],[2648],{"type":50,"value":1829},{"type":50,"value":2650}," in channel insights, which is a sum over ",{"type":45,"tag":158,"props":2652,"children":2654},{"className":2653},[],[2655],{"type":50,"value":2014},{"type":50,"value":77},{"type":45,"tag":105,"props":2658,"children":2659},{},[2660,2665],{"type":45,"tag":61,"props":2661,"children":2662},{},[2663],{"type":50,"value":2664},"Fresh publishes",{"type":50,"value":2666}," may show zeros for a short period while the metrics pipeline catches up.",{"type":45,"tag":105,"props":2668,"children":2669},{},[2670,2675,2677,2682,2684,2690],{"type":45,"tag":61,"props":2671,"children":2672},{},[2673],{"type":50,"value":2674},"Installs are downloads, not launches",{"type":50,"value":2676},": the ",{"type":45,"tag":158,"props":2678,"children":2680},{"className":2679},[],[2681],{"type":50,"value":1215},{"type":50,"value":2683}," \u002F \"Launches\" field counts users who downloaded the manifest and launch asset. A confirmed run only registers on the user's ",{"type":45,"tag":2685,"props":2686,"children":2687},"em",{},[2688],{"type":50,"value":2689},"next",{"type":50,"value":2691}," update check (typically up to 24h later, depending on the app's update policy). So metrics lag the real-world state slightly.",{"type":45,"tag":105,"props":2693,"children":2694},{},[2695,2700,2702,2707],{"type":45,"tag":61,"props":2696,"children":2697},{},[2698],{"type":50,"value":2699},"Crashes are self-reported",{"type":50,"value":2701},": ",{"type":45,"tag":158,"props":2703,"children":2705},{"className":2704},[],[2706],{"type":50,"value":1222},{"type":50,"value":2708}," \u002F \"Crashes\" counts updates that errored during install\u002Flaunch and were reported on the next update check. Crashes that don't trigger an update request (e.g. process kill before recovery) won't appear.",{"type":45,"tag":84,"props":2710,"children":2712},{"id":2711},"submitting-feedback",[2713],{"type":50,"value":2714},"Submitting Feedback",{"type":45,"tag":57,"props":2716,"children":2717},{},[2718],{"type":50,"value":2719},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":45,"tag":394,"props":2721,"children":2723},{"className":396,"code":2722,"language":398,"meta":399,"style":399},"npx --yes submit-expo-feedback@latest --category skills --subject \"eas-update-insights\" \"\u003Cactionable feedback>\"\n",[2724],{"type":45,"tag":158,"props":2725,"children":2726},{"__ignoreMap":399},[2727],{"type":45,"tag":405,"props":2728,"children":2729},{"class":407,"line":408},[2730,2735,2740,2745,2750,2755,2760,2764,2768,2772,2776,2781],{"type":45,"tag":405,"props":2731,"children":2732},{"style":422},[2733],{"type":50,"value":2734},"npx",{"type":45,"tag":405,"props":2736,"children":2737},{"style":428},[2738],{"type":50,"value":2739}," --yes",{"type":45,"tag":405,"props":2741,"children":2742},{"style":428},[2743],{"type":50,"value":2744}," submit-expo-feedback@latest",{"type":45,"tag":405,"props":2746,"children":2747},{"style":428},[2748],{"type":50,"value":2749}," --category",{"type":45,"tag":405,"props":2751,"children":2752},{"style":428},[2753],{"type":50,"value":2754}," skills",{"type":45,"tag":405,"props":2756,"children":2757},{"style":428},[2758],{"type":50,"value":2759}," --subject",{"type":45,"tag":405,"props":2761,"children":2762},{"style":449},[2763],{"type":50,"value":642},{"type":45,"tag":405,"props":2765,"children":2766},{"style":428},[2767],{"type":50,"value":4},{"type":45,"tag":405,"props":2769,"children":2770},{"style":449},[2771],{"type":50,"value":598},{"type":45,"tag":405,"props":2773,"children":2774},{"style":449},[2775],{"type":50,"value":642},{"type":45,"tag":405,"props":2777,"children":2778},{"style":428},[2779],{"type":50,"value":2780},"\u003Cactionable feedback>",{"type":45,"tag":405,"props":2782,"children":2783},{"style":449},[2784],{"type":50,"value":2291},{"type":45,"tag":57,"props":2786,"children":2787},{},[2788],{"type":50,"value":2789},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":45,"tag":2791,"props":2792,"children":2793},"style",{},[2794],{"type":50,"value":2795},"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":2797,"total":2963},[2798,2814,2829,2842,2856,2864,2882,2893,2908,2926,2941,2952],{"slug":2799,"name":2799,"fn":2800,"description":2801,"org":2802,"tags":2803,"stars":26,"repoUrl":27,"updatedAt":2813},"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},[2804,2807,2808,2809,2812],{"name":2805,"slug":2806,"type":15},"Android","android",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},"iOS","ios",{"name":18,"slug":19,"type":15},"2026-07-24T05:36:44.164663",{"slug":2815,"name":2815,"fn":2816,"description":2817,"org":2818,"tags":2819,"stars":26,"repoUrl":27,"updatedAt":2828},"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},[2820,2821,2822,2825],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2823,"slug":2824,"type":15},"Frontend","frontend",{"name":2826,"slug":2827,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":2830,"name":2830,"fn":2831,"description":2832,"org":2833,"tags":2834,"stars":26,"repoUrl":27,"updatedAt":2841},"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},[2835,2836,2837,2838],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"name":2839,"slug":2840,"type":15},"React Native","react-native","2026-07-24T05:36:45.220605",{"slug":2843,"name":2843,"fn":2844,"description":2845,"org":2846,"tags":2847,"stars":26,"repoUrl":27,"updatedAt":2855},"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},[2848,2849,2852,2853,2854],{"name":2805,"slug":2806,"type":15},{"name":2850,"slug":2851,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},{"name":18,"slug":19,"type":15},"2026-07-31T05:52:18.602058",{"slug":4,"name":4,"fn":5,"description":6,"org":2857,"tags":2858,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2859,2860,2861,2862,2863],{"name":24,"slug":25,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"slug":2865,"name":2865,"fn":2866,"description":2867,"org":2868,"tags":2869,"stars":26,"repoUrl":27,"updatedAt":2881},"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},[2870,2873,2876,2877,2878],{"name":2871,"slug":2872,"type":15},"Automation","automation",{"name":2874,"slug":2875,"type":15},"CI\u002FCD","ci-cd",{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2879,"slug":2880,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":2883,"name":2883,"fn":2884,"description":2885,"org":2886,"tags":2887,"stars":26,"repoUrl":27,"updatedAt":2892},"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},[2888,2889,2890,2891],{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},{"name":18,"slug":19,"type":15},{"name":2839,"slug":2840,"type":15},"2026-07-24T05:36:46.195935",{"slug":2894,"name":2894,"fn":2895,"description":2896,"org":2897,"tags":2898,"stars":26,"repoUrl":27,"updatedAt":2907},"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},[2899,2900,2901,2904,2905,2906],{"name":2805,"slug":2806,"type":15},{"name":9,"slug":8,"type":15},{"name":2902,"slug":2903,"type":15},"Integrations","integrations",{"name":2810,"slug":2811,"type":15},{"name":18,"slug":19,"type":15},{"name":2839,"slug":2840,"type":15},"2026-07-24T05:36:39.682299",{"slug":2909,"name":2909,"fn":2910,"description":2911,"org":2912,"tags":2913,"stars":26,"repoUrl":27,"updatedAt":2925},"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},[2914,2917,2920,2921,2922],{"name":2915,"slug":2916,"type":15},"API Development","api-development",{"name":2918,"slug":2919,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":2923,"slug":2924,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":2927,"name":2927,"fn":2928,"description":2929,"org":2930,"tags":2931,"stars":26,"repoUrl":27,"updatedAt":2940},"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},[2932,2933,2934,2935,2936,2939],{"name":2805,"slug":2806,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},{"name":2937,"slug":2938,"type":15},"Local Development","local-development",{"name":18,"slug":19,"type":15},"2026-07-24T05:36:51.160719",{"slug":2942,"name":2942,"fn":2943,"description":2944,"org":2945,"tags":2946,"stars":26,"repoUrl":27,"updatedAt":2951},"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},[2947,2948,2949,2950],{"name":9,"slug":8,"type":15},{"name":2823,"slug":2824,"type":15},{"name":18,"slug":19,"type":15},{"name":2839,"slug":2840,"type":15},"2026-07-24T05:36:41.176872",{"slug":2953,"name":2953,"fn":2954,"description":2955,"org":2956,"tags":2957,"stars":26,"repoUrl":27,"updatedAt":2962},"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},[2958,2959,2960,2961],{"name":9,"slug":8,"type":15},{"name":2902,"slug":2903,"type":15},{"name":18,"slug":19,"type":15},{"name":2839,"slug":2840,"type":15},"2026-07-24T05:36:35.174379",24,{"items":2965,"total":3019},[2966,2974,2981,2988,2996,3004,3012],{"slug":2799,"name":2799,"fn":2800,"description":2801,"org":2967,"tags":2968,"stars":26,"repoUrl":27,"updatedAt":2813},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2969,2970,2971,2972,2973],{"name":2805,"slug":2806,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},{"name":18,"slug":19,"type":15},{"slug":2815,"name":2815,"fn":2816,"description":2817,"org":2975,"tags":2976,"stars":26,"repoUrl":27,"updatedAt":2828},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2977,2978,2979,2980],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2823,"slug":2824,"type":15},{"name":2826,"slug":2827,"type":15},{"slug":2830,"name":2830,"fn":2831,"description":2832,"org":2982,"tags":2983,"stars":26,"repoUrl":27,"updatedAt":2841},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2984,2985,2986,2987],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"name":2839,"slug":2840,"type":15},{"slug":2843,"name":2843,"fn":2844,"description":2845,"org":2989,"tags":2990,"stars":26,"repoUrl":27,"updatedAt":2855},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2991,2992,2993,2994,2995],{"name":2805,"slug":2806,"type":15},{"name":2850,"slug":2851,"type":15},{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},{"name":18,"slug":19,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":2997,"tags":2998,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2999,3000,3001,3002,3003],{"name":24,"slug":25,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"slug":2865,"name":2865,"fn":2866,"description":2867,"org":3005,"tags":3006,"stars":26,"repoUrl":27,"updatedAt":2881},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3007,3008,3009,3010,3011],{"name":2871,"slug":2872,"type":15},{"name":2874,"slug":2875,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":2879,"slug":2880,"type":15},{"slug":2883,"name":2883,"fn":2884,"description":2885,"org":3013,"tags":3014,"stars":26,"repoUrl":27,"updatedAt":2892},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3015,3016,3017,3018],{"name":9,"slug":8,"type":15},{"name":2810,"slug":2811,"type":15},{"name":18,"slug":19,"type":15},{"name":2839,"slug":2840,"type":15},22]