[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-upgrading-expo":3,"mdc-leap6q-key":36,"related-org-openai-upgrading-expo":1130,"related-repo-openai-upgrading-expo":1337},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"upgrading-expo","upgrade Expo SDK and fix dependencies","Guidelines for upgrading Expo SDK versions and fixing dependency issues",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Expo","expo","tag",{"name":17,"slug":18,"type":15},"Mobile","mobile",{"name":20,"slug":21,"type":15},"Migration","migration",{"name":23,"slug":24,"type":15},"Engineering","engineering",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-17T05:07:25.14449","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fexpo\u002Fskills\u002Fupgrading-expo","---\nname: upgrading-expo\ndescription: Guidelines for upgrading Expo SDK versions and fixing dependency issues\nversion: 1.0.0\nlicense: MIT\n---\n\n## References\n\n- .\u002Freferences\u002Fnew-architecture.md -- SDK +53: New Architecture migration guide\n- .\u002Freferences\u002Freact-19.md -- SDK +54: React 19 changes (useContext → use, Context.Provider → Context, forwardRef removal)\n- .\u002Freferences\u002Freact-compiler.md -- SDK +54: React Compiler setup and migration guide\n- .\u002Freferences\u002Fnative-tabs.md -- SDK +55: Native tabs changes (Icon\u002FLabel\u002FBadge now accessed via NativeTabs.Trigger.\\*)\n- .\u002Freferences\u002Fexpo-av-to-audio.md -- Migrate audio playback and recording from expo-av to expo-audio\n- .\u002Freferences\u002Fexpo-av-to-video.md -- Migrate video playback from expo-av to expo-video\n\n## Beta\u002FPreview Releases\n\nBeta versions use `.preview` suffix (e.g., `55.0.0-preview.2`), published under `@next` tag.\n\nCheck if latest is beta: https:\u002F\u002Fexp.host\u002F--\u002Fapi\u002Fv2\u002Fversions (look for `-preview` in `expoVersion`)\n\n```bash\nnpx expo install expo@next --fix  # install beta\n```\n\n## Step-by-Step Upgrade Process\n\n1. Upgrade Expo and dependencies\n\n```bash\nnpx expo install expo@latest\nnpx expo install --fix\n```\n\n2. Run diagnostics: `npx expo-doctor`\n\n3. Clear caches and reinstall\n\n```bash\nnpx expo export -p ios --clear\nrm -rf node_modules .expo\nwatchman watch-del-all\n```\n\n## Breaking Changes Checklist\n\n- Check for removed APIs in release notes\n- Update import paths for moved modules\n- Review native module changes requiring prebuild\n- Test all camera, audio, and video features\n- Verify navigation still works correctly\n\n## Prebuild for Native Changes\n\n**First check if `ios\u002F` and `android\u002F` directories exist in the project.** If neither directory exists, the project uses Continuous Native Generation (CNG) and native projects are regenerated at build time — skip this section and \"Clear caches for bare workflow\" entirely.\n\nIf upgrading requires native changes:\n\n```bash\nnpx expo prebuild --clean\n```\n\nThis regenerates the `ios` and `android` directories. Ensure the project is not a bare workflow app before running this command.\n\n## Clear caches for bare workflow\n\nThese steps only apply when `ios\u002F` and\u002For `android\u002F` directories exist in the project:\n\n- Clear the cocoapods cache for iOS: `cd ios && pod install --repo-update`\n- Clear derived data for Xcode: `npx expo run:ios --no-build-cache`\n- Clear the Gradle cache for Android: `cd android && .\u002Fgradlew clean`\n\n## Housekeeping\n\n- Review release notes for the target SDK version at https:\u002F\u002Fexpo.dev\u002Fchangelog\n- If using Expo SDK 54 or later, ensure react-native-worklets is installed — this is required for react-native-reanimated to work.\n- Enable React Compiler in SDK 54+ by adding `\"experiments\": { \"reactCompiler\": true }` to app.json — it's stable and recommended\n- Delete sdkVersion from `app.json` to let Expo manage it automatically\n- Remove implicit packages from `package.json`: `@babel\u002Fcore`, `babel-preset-expo`, `expo-constants`.\n- If the babel.config.js only contains 'babel-preset-expo', delete the file\n- If the metro.config.js only contains expo defaults, delete the file\n\n## Deprecated Packages\n\n| Old Package          | Replacement                                          |\n| -------------------- | ---------------------------------------------------- |\n| `expo-av`            | `expo-audio` and `expo-video`                        |\n| `expo-permissions`   | Individual package permission APIs                   |\n| `@expo\u002Fvector-icons` | `expo-symbols` (for SF Symbols)                      |\n| `AsyncStorage`       | `expo-sqlite\u002FlocalStorage\u002Finstall`                   |\n| `expo-app-loading`   | `expo-splash-screen`                                 |\n| expo-linear-gradient | experimental_backgroundImage + CSS gradients in View |\n\nWhen migrating deprecated packages, update all code usage before removing the old package. For expo-av, consult the migration references to convert Audio.Sound to useAudioPlayer, Audio.Recording to useAudioRecorder, and Video components to VideoView with useVideoPlayer.\n\n## expo.install.exclude\n\nCheck if package.json has excluded packages:\n\n```json\n{\n  \"expo\": { \"install\": { \"exclude\": [\"react-native-reanimated\"] } }\n}\n```\n\nExclusions are often workarounds that may no longer be needed after upgrading. Review each one.\n## Removing patches\n\nCheck if there are any outdated patches in the `patches\u002F` directory. Remove them if they are no longer needed.\n\n## Postcss\n\n- `autoprefixer` isn't needed in SDK +53. Remove it from dependencies and check `postcss.config.js` or `postcss.config.mjs` to remove it from the plugins list.\n- Use `postcss.config.mjs` in SDK +53.\n\n## Metro\n\nRemove redundant metro config options:\n\n- resolver.unstable_enablePackageExports is enabled by default in SDK +53.\n- `experimentalImportSupport` is enabled by default in SDK +54.\n- `EXPO_USE_FAST_RESOLVER=1` is removed in SDK +54.\n- cjs and mjs extensions are supported by default in SDK +50.\n- Expo webpack is deprecated, migrate to [Expo Router and Metro web](https:\u002F\u002Fdocs.expo.dev\u002Frouter\u002Fmigrate\u002Ffrom-expo-webpack\u002F).\n\n## Hermes engine v1\n\nSince SDK 55, users can opt-in to use Hermes engine v1 for improved runtime performance. This requires setting `useHermesV1: true` in the `expo-build-properties` config plugin, and may require a specific version of the `hermes-compiler` npm package. Hermes v1 will become a default in some future SDK release.\n\n## New Architecture\n\nThe new architecture is enabled by default, the app.json field `\"newArchEnabled\": true` is no longer needed as it's the default. Expo Go only supports the new architecture as of SDK +53.\n",{"data":37,"body":39},{"name":4,"description":6,"version":38,"license":28},"1.0.0",{"type":40,"children":41},"root",[42,51,86,92,123,154,204,210,219,267,286,361,367,395,401,428,433,461,481,487,506,542,548,639,645,796,801,807,812,939,944,950,963,969,1011,1017,1022,1070,1076,1105,1111,1124],{"type":43,"tag":44,"props":45,"children":47},"element","h2",{"id":46},"references",[48],{"type":49,"value":50},"text","References",{"type":43,"tag":52,"props":53,"children":54},"ul",{},[55,61,66,71,76,81],{"type":43,"tag":56,"props":57,"children":58},"li",{},[59],{"type":49,"value":60},".\u002Freferences\u002Fnew-architecture.md -- SDK +53: New Architecture migration guide",{"type":43,"tag":56,"props":62,"children":63},{},[64],{"type":49,"value":65},".\u002Freferences\u002Freact-19.md -- SDK +54: React 19 changes (useContext → use, Context.Provider → Context, forwardRef removal)",{"type":43,"tag":56,"props":67,"children":68},{},[69],{"type":49,"value":70},".\u002Freferences\u002Freact-compiler.md -- SDK +54: React Compiler setup and migration guide",{"type":43,"tag":56,"props":72,"children":73},{},[74],{"type":49,"value":75},".\u002Freferences\u002Fnative-tabs.md -- SDK +55: Native tabs changes (Icon\u002FLabel\u002FBadge now accessed via NativeTabs.Trigger.*)",{"type":43,"tag":56,"props":77,"children":78},{},[79],{"type":49,"value":80},".\u002Freferences\u002Fexpo-av-to-audio.md -- Migrate audio playback and recording from expo-av to expo-audio",{"type":43,"tag":56,"props":82,"children":83},{},[84],{"type":49,"value":85},".\u002Freferences\u002Fexpo-av-to-video.md -- Migrate video playback from expo-av to expo-video",{"type":43,"tag":44,"props":87,"children":89},{"id":88},"betapreview-releases",[90],{"type":49,"value":91},"Beta\u002FPreview Releases",{"type":43,"tag":93,"props":94,"children":95},"p",{},[96,98,105,107,113,115,121],{"type":49,"value":97},"Beta versions use ",{"type":43,"tag":99,"props":100,"children":102},"code",{"className":101},[],[103],{"type":49,"value":104},".preview",{"type":49,"value":106}," suffix (e.g., ",{"type":43,"tag":99,"props":108,"children":110},{"className":109},[],[111],{"type":49,"value":112},"55.0.0-preview.2",{"type":49,"value":114},"), published under ",{"type":43,"tag":99,"props":116,"children":118},{"className":117},[],[119],{"type":49,"value":120},"@next",{"type":49,"value":122}," tag.",{"type":43,"tag":93,"props":124,"children":125},{},[126,128,136,138,144,146,152],{"type":49,"value":127},"Check if latest is beta: ",{"type":43,"tag":129,"props":130,"children":134},"a",{"href":131,"rel":132},"https:\u002F\u002Fexp.host\u002F--\u002Fapi\u002Fv2\u002Fversions",[133],"nofollow",[135],{"type":49,"value":131},{"type":49,"value":137}," (look for ",{"type":43,"tag":99,"props":139,"children":141},{"className":140},[],[142],{"type":49,"value":143},"-preview",{"type":49,"value":145}," in ",{"type":43,"tag":99,"props":147,"children":149},{"className":148},[],[150],{"type":49,"value":151},"expoVersion",{"type":49,"value":153},")",{"type":43,"tag":155,"props":156,"children":161},"pre",{"className":157,"code":158,"language":159,"meta":160,"style":160},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx expo install expo@next --fix  # install beta\n","bash","",[162],{"type":43,"tag":99,"props":163,"children":164},{"__ignoreMap":160},[165],{"type":43,"tag":166,"props":167,"children":170},"span",{"class":168,"line":169},"line",1,[171,177,183,188,193,198],{"type":43,"tag":166,"props":172,"children":174},{"style":173},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[175],{"type":49,"value":176},"npx",{"type":43,"tag":166,"props":178,"children":180},{"style":179},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[181],{"type":49,"value":182}," expo",{"type":43,"tag":166,"props":184,"children":185},{"style":179},[186],{"type":49,"value":187}," install",{"type":43,"tag":166,"props":189,"children":190},{"style":179},[191],{"type":49,"value":192}," expo@next",{"type":43,"tag":166,"props":194,"children":195},{"style":179},[196],{"type":49,"value":197}," --fix",{"type":43,"tag":166,"props":199,"children":201},{"style":200},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[202],{"type":49,"value":203},"  # install beta\n",{"type":43,"tag":44,"props":205,"children":207},{"id":206},"step-by-step-upgrade-process",[208],{"type":49,"value":209},"Step-by-Step Upgrade Process",{"type":43,"tag":211,"props":212,"children":213},"ol",{},[214],{"type":43,"tag":56,"props":215,"children":216},{},[217],{"type":49,"value":218},"Upgrade Expo and dependencies",{"type":43,"tag":155,"props":220,"children":222},{"className":157,"code":221,"language":159,"meta":160,"style":160},"npx expo install expo@latest\nnpx expo install --fix\n",[223],{"type":43,"tag":99,"props":224,"children":225},{"__ignoreMap":160},[226,246],{"type":43,"tag":166,"props":227,"children":228},{"class":168,"line":169},[229,233,237,241],{"type":43,"tag":166,"props":230,"children":231},{"style":173},[232],{"type":49,"value":176},{"type":43,"tag":166,"props":234,"children":235},{"style":179},[236],{"type":49,"value":182},{"type":43,"tag":166,"props":238,"children":239},{"style":179},[240],{"type":49,"value":187},{"type":43,"tag":166,"props":242,"children":243},{"style":179},[244],{"type":49,"value":245}," expo@latest\n",{"type":43,"tag":166,"props":247,"children":249},{"class":168,"line":248},2,[250,254,258,262],{"type":43,"tag":166,"props":251,"children":252},{"style":173},[253],{"type":49,"value":176},{"type":43,"tag":166,"props":255,"children":256},{"style":179},[257],{"type":49,"value":182},{"type":43,"tag":166,"props":259,"children":260},{"style":179},[261],{"type":49,"value":187},{"type":43,"tag":166,"props":263,"children":264},{"style":179},[265],{"type":49,"value":266}," --fix\n",{"type":43,"tag":211,"props":268,"children":269},{"start":248},[270,281],{"type":43,"tag":56,"props":271,"children":272},{},[273,275],{"type":49,"value":274},"Run diagnostics: ",{"type":43,"tag":99,"props":276,"children":278},{"className":277},[],[279],{"type":49,"value":280},"npx expo-doctor",{"type":43,"tag":56,"props":282,"children":283},{},[284],{"type":49,"value":285},"Clear caches and reinstall",{"type":43,"tag":155,"props":287,"children":289},{"className":157,"code":288,"language":159,"meta":160,"style":160},"npx expo export -p ios --clear\nrm -rf node_modules .expo\nwatchman watch-del-all\n",[290],{"type":43,"tag":99,"props":291,"children":292},{"__ignoreMap":160},[293,324,347],{"type":43,"tag":166,"props":294,"children":295},{"class":168,"line":169},[296,300,304,309,314,319],{"type":43,"tag":166,"props":297,"children":298},{"style":173},[299],{"type":49,"value":176},{"type":43,"tag":166,"props":301,"children":302},{"style":179},[303],{"type":49,"value":182},{"type":43,"tag":166,"props":305,"children":306},{"style":179},[307],{"type":49,"value":308}," export",{"type":43,"tag":166,"props":310,"children":311},{"style":179},[312],{"type":49,"value":313}," -p",{"type":43,"tag":166,"props":315,"children":316},{"style":179},[317],{"type":49,"value":318}," ios",{"type":43,"tag":166,"props":320,"children":321},{"style":179},[322],{"type":49,"value":323}," --clear\n",{"type":43,"tag":166,"props":325,"children":326},{"class":168,"line":248},[327,332,337,342],{"type":43,"tag":166,"props":328,"children":329},{"style":173},[330],{"type":49,"value":331},"rm",{"type":43,"tag":166,"props":333,"children":334},{"style":179},[335],{"type":49,"value":336}," -rf",{"type":43,"tag":166,"props":338,"children":339},{"style":179},[340],{"type":49,"value":341}," node_modules",{"type":43,"tag":166,"props":343,"children":344},{"style":179},[345],{"type":49,"value":346}," .expo\n",{"type":43,"tag":166,"props":348,"children":350},{"class":168,"line":349},3,[351,356],{"type":43,"tag":166,"props":352,"children":353},{"style":173},[354],{"type":49,"value":355},"watchman",{"type":43,"tag":166,"props":357,"children":358},{"style":179},[359],{"type":49,"value":360}," watch-del-all\n",{"type":43,"tag":44,"props":362,"children":364},{"id":363},"breaking-changes-checklist",[365],{"type":49,"value":366},"Breaking Changes Checklist",{"type":43,"tag":52,"props":368,"children":369},{},[370,375,380,385,390],{"type":43,"tag":56,"props":371,"children":372},{},[373],{"type":49,"value":374},"Check for removed APIs in release notes",{"type":43,"tag":56,"props":376,"children":377},{},[378],{"type":49,"value":379},"Update import paths for moved modules",{"type":43,"tag":56,"props":381,"children":382},{},[383],{"type":49,"value":384},"Review native module changes requiring prebuild",{"type":43,"tag":56,"props":386,"children":387},{},[388],{"type":49,"value":389},"Test all camera, audio, and video features",{"type":43,"tag":56,"props":391,"children":392},{},[393],{"type":49,"value":394},"Verify navigation still works correctly",{"type":43,"tag":44,"props":396,"children":398},{"id":397},"prebuild-for-native-changes",[399],{"type":49,"value":400},"Prebuild for Native Changes",{"type":43,"tag":93,"props":402,"children":403},{},[404,426],{"type":43,"tag":405,"props":406,"children":407},"strong",{},[408,410,416,418,424],{"type":49,"value":409},"First check if ",{"type":43,"tag":99,"props":411,"children":413},{"className":412},[],[414],{"type":49,"value":415},"ios\u002F",{"type":49,"value":417}," and ",{"type":43,"tag":99,"props":419,"children":421},{"className":420},[],[422],{"type":49,"value":423},"android\u002F",{"type":49,"value":425}," directories exist in the project.",{"type":49,"value":427}," If neither directory exists, the project uses Continuous Native Generation (CNG) and native projects are regenerated at build time — skip this section and \"Clear caches for bare workflow\" entirely.",{"type":43,"tag":93,"props":429,"children":430},{},[431],{"type":49,"value":432},"If upgrading requires native changes:",{"type":43,"tag":155,"props":434,"children":436},{"className":157,"code":435,"language":159,"meta":160,"style":160},"npx expo prebuild --clean\n",[437],{"type":43,"tag":99,"props":438,"children":439},{"__ignoreMap":160},[440],{"type":43,"tag":166,"props":441,"children":442},{"class":168,"line":169},[443,447,451,456],{"type":43,"tag":166,"props":444,"children":445},{"style":173},[446],{"type":49,"value":176},{"type":43,"tag":166,"props":448,"children":449},{"style":179},[450],{"type":49,"value":182},{"type":43,"tag":166,"props":452,"children":453},{"style":179},[454],{"type":49,"value":455}," prebuild",{"type":43,"tag":166,"props":457,"children":458},{"style":179},[459],{"type":49,"value":460}," --clean\n",{"type":43,"tag":93,"props":462,"children":463},{},[464,466,472,473,479],{"type":49,"value":465},"This regenerates the ",{"type":43,"tag":99,"props":467,"children":469},{"className":468},[],[470],{"type":49,"value":471},"ios",{"type":49,"value":417},{"type":43,"tag":99,"props":474,"children":476},{"className":475},[],[477],{"type":49,"value":478},"android",{"type":49,"value":480}," directories. Ensure the project is not a bare workflow app before running this command.",{"type":43,"tag":44,"props":482,"children":484},{"id":483},"clear-caches-for-bare-workflow",[485],{"type":49,"value":486},"Clear caches for bare workflow",{"type":43,"tag":93,"props":488,"children":489},{},[490,492,497,499,504],{"type":49,"value":491},"These steps only apply when ",{"type":43,"tag":99,"props":493,"children":495},{"className":494},[],[496],{"type":49,"value":415},{"type":49,"value":498}," and\u002For ",{"type":43,"tag":99,"props":500,"children":502},{"className":501},[],[503],{"type":49,"value":423},{"type":49,"value":505}," directories exist in the project:",{"type":43,"tag":52,"props":507,"children":508},{},[509,520,531],{"type":43,"tag":56,"props":510,"children":511},{},[512,514],{"type":49,"value":513},"Clear the cocoapods cache for iOS: ",{"type":43,"tag":99,"props":515,"children":517},{"className":516},[],[518],{"type":49,"value":519},"cd ios && pod install --repo-update",{"type":43,"tag":56,"props":521,"children":522},{},[523,525],{"type":49,"value":524},"Clear derived data for Xcode: ",{"type":43,"tag":99,"props":526,"children":528},{"className":527},[],[529],{"type":49,"value":530},"npx expo run:ios --no-build-cache",{"type":43,"tag":56,"props":532,"children":533},{},[534,536],{"type":49,"value":535},"Clear the Gradle cache for Android: ",{"type":43,"tag":99,"props":537,"children":539},{"className":538},[],[540],{"type":49,"value":541},"cd android && .\u002Fgradlew clean",{"type":43,"tag":44,"props":543,"children":545},{"id":544},"housekeeping",[546],{"type":49,"value":547},"Housekeeping",{"type":43,"tag":52,"props":549,"children":550},{},[551,562,567,580,593,629,634],{"type":43,"tag":56,"props":552,"children":553},{},[554,556],{"type":49,"value":555},"Review release notes for the target SDK version at ",{"type":43,"tag":129,"props":557,"children":560},{"href":558,"rel":559},"https:\u002F\u002Fexpo.dev\u002Fchangelog",[133],[561],{"type":49,"value":558},{"type":43,"tag":56,"props":563,"children":564},{},[565],{"type":49,"value":566},"If using Expo SDK 54 or later, ensure react-native-worklets is installed — this is required for react-native-reanimated to work.",{"type":43,"tag":56,"props":568,"children":569},{},[570,572,578],{"type":49,"value":571},"Enable React Compiler in SDK 54+ by adding ",{"type":43,"tag":99,"props":573,"children":575},{"className":574},[],[576],{"type":49,"value":577},"\"experiments\": { \"reactCompiler\": true }",{"type":49,"value":579}," to app.json — it's stable and recommended",{"type":43,"tag":56,"props":581,"children":582},{},[583,585,591],{"type":49,"value":584},"Delete sdkVersion from ",{"type":43,"tag":99,"props":586,"children":588},{"className":587},[],[589],{"type":49,"value":590},"app.json",{"type":49,"value":592}," to let Expo manage it automatically",{"type":43,"tag":56,"props":594,"children":595},{},[596,598,604,606,612,614,620,621,627],{"type":49,"value":597},"Remove implicit packages from ",{"type":43,"tag":99,"props":599,"children":601},{"className":600},[],[602],{"type":49,"value":603},"package.json",{"type":49,"value":605},": ",{"type":43,"tag":99,"props":607,"children":609},{"className":608},[],[610],{"type":49,"value":611},"@babel\u002Fcore",{"type":49,"value":613},", ",{"type":43,"tag":99,"props":615,"children":617},{"className":616},[],[618],{"type":49,"value":619},"babel-preset-expo",{"type":49,"value":613},{"type":43,"tag":99,"props":622,"children":624},{"className":623},[],[625],{"type":49,"value":626},"expo-constants",{"type":49,"value":628},".",{"type":43,"tag":56,"props":630,"children":631},{},[632],{"type":49,"value":633},"If the babel.config.js only contains 'babel-preset-expo', delete the file",{"type":43,"tag":56,"props":635,"children":636},{},[637],{"type":49,"value":638},"If the metro.config.js only contains expo defaults, delete the file",{"type":43,"tag":44,"props":640,"children":642},{"id":641},"deprecated-packages",[643],{"type":49,"value":644},"Deprecated Packages",{"type":43,"tag":646,"props":647,"children":648},"table",{},[649,668],{"type":43,"tag":650,"props":651,"children":652},"thead",{},[653],{"type":43,"tag":654,"props":655,"children":656},"tr",{},[657,663],{"type":43,"tag":658,"props":659,"children":660},"th",{},[661],{"type":49,"value":662},"Old Package",{"type":43,"tag":658,"props":664,"children":665},{},[666],{"type":49,"value":667},"Replacement",{"type":43,"tag":669,"props":670,"children":671},"tbody",{},[672,701,718,741,762,783],{"type":43,"tag":654,"props":673,"children":674},{},[675,685],{"type":43,"tag":676,"props":677,"children":678},"td",{},[679],{"type":43,"tag":99,"props":680,"children":682},{"className":681},[],[683],{"type":49,"value":684},"expo-av",{"type":43,"tag":676,"props":686,"children":687},{},[688,694,695],{"type":43,"tag":99,"props":689,"children":691},{"className":690},[],[692],{"type":49,"value":693},"expo-audio",{"type":49,"value":417},{"type":43,"tag":99,"props":696,"children":698},{"className":697},[],[699],{"type":49,"value":700},"expo-video",{"type":43,"tag":654,"props":702,"children":703},{},[704,713],{"type":43,"tag":676,"props":705,"children":706},{},[707],{"type":43,"tag":99,"props":708,"children":710},{"className":709},[],[711],{"type":49,"value":712},"expo-permissions",{"type":43,"tag":676,"props":714,"children":715},{},[716],{"type":49,"value":717},"Individual package permission APIs",{"type":43,"tag":654,"props":719,"children":720},{},[721,730],{"type":43,"tag":676,"props":722,"children":723},{},[724],{"type":43,"tag":99,"props":725,"children":727},{"className":726},[],[728],{"type":49,"value":729},"@expo\u002Fvector-icons",{"type":43,"tag":676,"props":731,"children":732},{},[733,739],{"type":43,"tag":99,"props":734,"children":736},{"className":735},[],[737],{"type":49,"value":738},"expo-symbols",{"type":49,"value":740}," (for SF Symbols)",{"type":43,"tag":654,"props":742,"children":743},{},[744,753],{"type":43,"tag":676,"props":745,"children":746},{},[747],{"type":43,"tag":99,"props":748,"children":750},{"className":749},[],[751],{"type":49,"value":752},"AsyncStorage",{"type":43,"tag":676,"props":754,"children":755},{},[756],{"type":43,"tag":99,"props":757,"children":759},{"className":758},[],[760],{"type":49,"value":761},"expo-sqlite\u002FlocalStorage\u002Finstall",{"type":43,"tag":654,"props":763,"children":764},{},[765,774],{"type":43,"tag":676,"props":766,"children":767},{},[768],{"type":43,"tag":99,"props":769,"children":771},{"className":770},[],[772],{"type":49,"value":773},"expo-app-loading",{"type":43,"tag":676,"props":775,"children":776},{},[777],{"type":43,"tag":99,"props":778,"children":780},{"className":779},[],[781],{"type":49,"value":782},"expo-splash-screen",{"type":43,"tag":654,"props":784,"children":785},{},[786,791],{"type":43,"tag":676,"props":787,"children":788},{},[789],{"type":49,"value":790},"expo-linear-gradient",{"type":43,"tag":676,"props":792,"children":793},{},[794],{"type":49,"value":795},"experimental_backgroundImage + CSS gradients in View",{"type":43,"tag":93,"props":797,"children":798},{},[799],{"type":49,"value":800},"When migrating deprecated packages, update all code usage before removing the old package. For expo-av, consult the migration references to convert Audio.Sound to useAudioPlayer, Audio.Recording to useAudioRecorder, and Video components to VideoView with useVideoPlayer.",{"type":43,"tag":44,"props":802,"children":804},{"id":803},"expoinstallexclude",[805],{"type":49,"value":806},"expo.install.exclude",{"type":43,"tag":93,"props":808,"children":809},{},[810],{"type":49,"value":811},"Check if package.json has excluded packages:",{"type":43,"tag":155,"props":813,"children":817},{"className":814,"code":815,"language":816,"meta":160,"style":160},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"expo\": { \"install\": { \"exclude\": [\"react-native-reanimated\"] } }\n}\n","json",[818],{"type":43,"tag":99,"props":819,"children":820},{"__ignoreMap":160},[821,830,931],{"type":43,"tag":166,"props":822,"children":823},{"class":168,"line":169},[824],{"type":43,"tag":166,"props":825,"children":827},{"style":826},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[828],{"type":49,"value":829},"{\n",{"type":43,"tag":166,"props":831,"children":832},{"class":168,"line":248},[833,838,843,848,853,858,863,868,872,876,880,884,890,894,898,903,907,912,916,921,926],{"type":43,"tag":166,"props":834,"children":835},{"style":826},[836],{"type":49,"value":837},"  \"",{"type":43,"tag":166,"props":839,"children":841},{"style":840},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[842],{"type":49,"value":14},{"type":43,"tag":166,"props":844,"children":845},{"style":826},[846],{"type":49,"value":847},"\"",{"type":43,"tag":166,"props":849,"children":850},{"style":826},[851],{"type":49,"value":852},":",{"type":43,"tag":166,"props":854,"children":855},{"style":826},[856],{"type":49,"value":857}," {",{"type":43,"tag":166,"props":859,"children":860},{"style":826},[861],{"type":49,"value":862}," \"",{"type":43,"tag":166,"props":864,"children":865},{"style":173},[866],{"type":49,"value":867},"install",{"type":43,"tag":166,"props":869,"children":870},{"style":826},[871],{"type":49,"value":847},{"type":43,"tag":166,"props":873,"children":874},{"style":826},[875],{"type":49,"value":852},{"type":43,"tag":166,"props":877,"children":878},{"style":826},[879],{"type":49,"value":857},{"type":43,"tag":166,"props":881,"children":882},{"style":826},[883],{"type":49,"value":862},{"type":43,"tag":166,"props":885,"children":887},{"style":886},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[888],{"type":49,"value":889},"exclude",{"type":43,"tag":166,"props":891,"children":892},{"style":826},[893],{"type":49,"value":847},{"type":43,"tag":166,"props":895,"children":896},{"style":826},[897],{"type":49,"value":852},{"type":43,"tag":166,"props":899,"children":900},{"style":826},[901],{"type":49,"value":902}," [",{"type":43,"tag":166,"props":904,"children":905},{"style":826},[906],{"type":49,"value":847},{"type":43,"tag":166,"props":908,"children":909},{"style":179},[910],{"type":49,"value":911},"react-native-reanimated",{"type":43,"tag":166,"props":913,"children":914},{"style":826},[915],{"type":49,"value":847},{"type":43,"tag":166,"props":917,"children":918},{"style":826},[919],{"type":49,"value":920},"]",{"type":43,"tag":166,"props":922,"children":923},{"style":826},[924],{"type":49,"value":925}," }",{"type":43,"tag":166,"props":927,"children":928},{"style":826},[929],{"type":49,"value":930}," }\n",{"type":43,"tag":166,"props":932,"children":933},{"class":168,"line":349},[934],{"type":43,"tag":166,"props":935,"children":936},{"style":826},[937],{"type":49,"value":938},"}\n",{"type":43,"tag":93,"props":940,"children":941},{},[942],{"type":49,"value":943},"Exclusions are often workarounds that may no longer be needed after upgrading. Review each one.",{"type":43,"tag":44,"props":945,"children":947},{"id":946},"removing-patches",[948],{"type":49,"value":949},"Removing patches",{"type":43,"tag":93,"props":951,"children":952},{},[953,955,961],{"type":49,"value":954},"Check if there are any outdated patches in the ",{"type":43,"tag":99,"props":956,"children":958},{"className":957},[],[959],{"type":49,"value":960},"patches\u002F",{"type":49,"value":962}," directory. Remove them if they are no longer needed.",{"type":43,"tag":44,"props":964,"children":966},{"id":965},"postcss",[967],{"type":49,"value":968},"Postcss",{"type":43,"tag":52,"props":970,"children":971},{},[972,999],{"type":43,"tag":56,"props":973,"children":974},{},[975,981,983,989,991,997],{"type":43,"tag":99,"props":976,"children":978},{"className":977},[],[979],{"type":49,"value":980},"autoprefixer",{"type":49,"value":982}," isn't needed in SDK +53. Remove it from dependencies and check ",{"type":43,"tag":99,"props":984,"children":986},{"className":985},[],[987],{"type":49,"value":988},"postcss.config.js",{"type":49,"value":990}," or ",{"type":43,"tag":99,"props":992,"children":994},{"className":993},[],[995],{"type":49,"value":996},"postcss.config.mjs",{"type":49,"value":998}," to remove it from the plugins list.",{"type":43,"tag":56,"props":1000,"children":1001},{},[1002,1004,1009],{"type":49,"value":1003},"Use ",{"type":43,"tag":99,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":49,"value":996},{"type":49,"value":1010}," in SDK +53.",{"type":43,"tag":44,"props":1012,"children":1014},{"id":1013},"metro",[1015],{"type":49,"value":1016},"Metro",{"type":43,"tag":93,"props":1018,"children":1019},{},[1020],{"type":49,"value":1021},"Remove redundant metro config options:",{"type":43,"tag":52,"props":1023,"children":1024},{},[1025,1030,1041,1052,1057],{"type":43,"tag":56,"props":1026,"children":1027},{},[1028],{"type":49,"value":1029},"resolver.unstable_enablePackageExports is enabled by default in SDK +53.",{"type":43,"tag":56,"props":1031,"children":1032},{},[1033,1039],{"type":43,"tag":99,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":49,"value":1038},"experimentalImportSupport",{"type":49,"value":1040}," is enabled by default in SDK +54.",{"type":43,"tag":56,"props":1042,"children":1043},{},[1044,1050],{"type":43,"tag":99,"props":1045,"children":1047},{"className":1046},[],[1048],{"type":49,"value":1049},"EXPO_USE_FAST_RESOLVER=1",{"type":49,"value":1051}," is removed in SDK +54.",{"type":43,"tag":56,"props":1053,"children":1054},{},[1055],{"type":49,"value":1056},"cjs and mjs extensions are supported by default in SDK +50.",{"type":43,"tag":56,"props":1058,"children":1059},{},[1060,1062,1069],{"type":49,"value":1061},"Expo webpack is deprecated, migrate to ",{"type":43,"tag":129,"props":1063,"children":1066},{"href":1064,"rel":1065},"https:\u002F\u002Fdocs.expo.dev\u002Frouter\u002Fmigrate\u002Ffrom-expo-webpack\u002F",[133],[1067],{"type":49,"value":1068},"Expo Router and Metro web",{"type":49,"value":628},{"type":43,"tag":44,"props":1071,"children":1073},{"id":1072},"hermes-engine-v1",[1074],{"type":49,"value":1075},"Hermes engine v1",{"type":43,"tag":93,"props":1077,"children":1078},{},[1079,1081,1087,1089,1095,1097,1103],{"type":49,"value":1080},"Since SDK 55, users can opt-in to use Hermes engine v1 for improved runtime performance. This requires setting ",{"type":43,"tag":99,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":49,"value":1086},"useHermesV1: true",{"type":49,"value":1088}," in the ",{"type":43,"tag":99,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":49,"value":1094},"expo-build-properties",{"type":49,"value":1096}," config plugin, and may require a specific version of the ",{"type":43,"tag":99,"props":1098,"children":1100},{"className":1099},[],[1101],{"type":49,"value":1102},"hermes-compiler",{"type":49,"value":1104}," npm package. Hermes v1 will become a default in some future SDK release.",{"type":43,"tag":44,"props":1106,"children":1108},{"id":1107},"new-architecture",[1109],{"type":49,"value":1110},"New Architecture",{"type":43,"tag":93,"props":1112,"children":1113},{},[1114,1116,1122],{"type":49,"value":1115},"The new architecture is enabled by default, the app.json field ",{"type":43,"tag":99,"props":1117,"children":1119},{"className":1118},[],[1120],{"type":49,"value":1121},"\"newArchEnabled\": true",{"type":49,"value":1123}," is no longer needed as it's the default. Expo Go only supports the new architecture as of SDK +53.",{"type":43,"tag":1125,"props":1126,"children":1127},"style",{},[1128],{"type":49,"value":1129},"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":1131,"total":1336},[1132,1153,1176,1193,1209,1228,1247,1263,1279,1293,1305,1320],{"slug":1133,"name":1133,"fn":1134,"description":1135,"org":1136,"tags":1137,"stars":1150,"repoUrl":1151,"updatedAt":1152},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1138,1141,1144,1147],{"name":1139,"slug":1140,"type":15},"Documents","documents",{"name":1142,"slug":1143,"type":15},"Healthcare","healthcare",{"name":1145,"slug":1146,"type":15},"Insurance","insurance",{"name":1148,"slug":1149,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1154,"name":1154,"fn":1155,"description":1156,"org":1157,"tags":1158,"stars":1173,"repoUrl":1174,"updatedAt":1175},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1159,1162,1164,1167,1170],{"name":1160,"slug":1161,"type":15},".NET","dotnet",{"name":1163,"slug":1154,"type":15},"ASP.NET Core",{"name":1165,"slug":1166,"type":15},"Blazor","blazor",{"name":1168,"slug":1169,"type":15},"C#","csharp",{"name":1171,"slug":1172,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1177,"name":1177,"fn":1178,"description":1179,"org":1180,"tags":1181,"stars":1173,"repoUrl":1174,"updatedAt":1192},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1182,1185,1188,1191],{"name":1183,"slug":1184,"type":15},"Apps SDK","apps-sdk",{"name":1186,"slug":1187,"type":15},"ChatGPT","chatgpt",{"name":1189,"slug":1190,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1194,"name":1194,"fn":1195,"description":1196,"org":1197,"tags":1198,"stars":1173,"repoUrl":1174,"updatedAt":1208},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1199,1202,1205],{"name":1200,"slug":1201,"type":15},"API Development","api-development",{"name":1203,"slug":1204,"type":15},"CLI","cli",{"name":1206,"slug":1207,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1210,"name":1210,"fn":1211,"description":1212,"org":1213,"tags":1214,"stars":1173,"repoUrl":1174,"updatedAt":1227},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1215,1218,1221,1224],{"name":1216,"slug":1217,"type":15},"Cloudflare","cloudflare",{"name":1219,"slug":1220,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1222,"slug":1223,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1225,"slug":1226,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1229,"name":1229,"fn":1230,"description":1231,"org":1232,"tags":1233,"stars":1173,"repoUrl":1174,"updatedAt":1246},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1234,1237,1240,1243],{"name":1235,"slug":1236,"type":15},"Productivity","productivity",{"name":1238,"slug":1239,"type":15},"Project Management","project-management",{"name":1241,"slug":1242,"type":15},"Strategy","strategy",{"name":1244,"slug":1245,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1248,"name":1248,"fn":1249,"description":1250,"org":1251,"tags":1252,"stars":1173,"repoUrl":1174,"updatedAt":1262},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1253,1256,1258,1261],{"name":1254,"slug":1255,"type":15},"Design","design",{"name":1257,"slug":1248,"type":15},"Figma",{"name":1259,"slug":1260,"type":15},"Frontend","frontend",{"name":1189,"slug":1190,"type":15},"2026-04-12T05:06:47.939943",{"slug":1264,"name":1264,"fn":1265,"description":1266,"org":1267,"tags":1268,"stars":1173,"repoUrl":1174,"updatedAt":1278},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1269,1270,1273,1274,1275],{"name":1254,"slug":1255,"type":15},{"name":1271,"slug":1272,"type":15},"Design System","design-system",{"name":1257,"slug":1248,"type":15},{"name":1259,"slug":1260,"type":15},{"name":1276,"slug":1277,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1280,"name":1280,"fn":1281,"description":1282,"org":1283,"tags":1284,"stars":1173,"repoUrl":1174,"updatedAt":1292},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1285,1286,1287,1290,1291],{"name":1254,"slug":1255,"type":15},{"name":1271,"slug":1272,"type":15},{"name":1288,"slug":1289,"type":15},"Documentation","documentation",{"name":1257,"slug":1248,"type":15},{"name":1259,"slug":1260,"type":15},"2026-05-16T06:07:47.821474",{"slug":1294,"name":1294,"fn":1295,"description":1296,"org":1297,"tags":1298,"stars":1173,"repoUrl":1174,"updatedAt":1304},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1299,1300,1301,1302,1303],{"name":1254,"slug":1255,"type":15},{"name":1257,"slug":1248,"type":15},{"name":1259,"slug":1260,"type":15},{"name":1276,"slug":1277,"type":15},{"name":1171,"slug":1172,"type":15},"2026-05-16T06:07:40.583615",{"slug":1306,"name":1306,"fn":1307,"description":1308,"org":1309,"tags":1310,"stars":1173,"repoUrl":1174,"updatedAt":1319},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1311,1314,1315,1318],{"name":1312,"slug":1313,"type":15},"Animation","animation",{"name":1206,"slug":1207,"type":15},{"name":1316,"slug":1317,"type":15},"Creative","creative",{"name":1254,"slug":1255,"type":15},"2026-05-02T05:31:48.48485",{"slug":1321,"name":1321,"fn":1322,"description":1323,"org":1324,"tags":1325,"stars":1173,"repoUrl":1174,"updatedAt":1335},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1326,1327,1328,1331,1334],{"name":1316,"slug":1317,"type":15},{"name":1254,"slug":1255,"type":15},{"name":1329,"slug":1330,"type":15},"Image Generation","image-generation",{"name":1332,"slug":1333,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1338,"total":1452},[1339,1356,1372,1384,1402,1420,1440],{"slug":1340,"name":1340,"fn":1341,"description":1342,"org":1343,"tags":1344,"stars":25,"repoUrl":26,"updatedAt":1355},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1345,1348,1351,1354],{"name":1346,"slug":1347,"type":15},"Accessibility","accessibility",{"name":1349,"slug":1350,"type":15},"Charts","charts",{"name":1352,"slug":1353,"type":15},"Data Visualization","data-visualization",{"name":1254,"slug":1255,"type":15},"2026-06-30T19:00:57.102",{"slug":1357,"name":1357,"fn":1358,"description":1359,"org":1360,"tags":1361,"stars":25,"repoUrl":26,"updatedAt":1371},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1362,1365,1368],{"name":1363,"slug":1364,"type":15},"Agents","agents",{"name":1366,"slug":1367,"type":15},"Browser Automation","browser-automation",{"name":1369,"slug":1370,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1373,"name":1373,"fn":1374,"description":1375,"org":1376,"tags":1377,"stars":25,"repoUrl":26,"updatedAt":1383},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1378,1379,1382],{"name":1366,"slug":1367,"type":15},{"name":1380,"slug":1381,"type":15},"Local Development","local-development",{"name":1369,"slug":1370,"type":15},"2026-04-06T18:41:17.526867",{"slug":1385,"name":1385,"fn":1386,"description":1387,"org":1388,"tags":1389,"stars":25,"repoUrl":26,"updatedAt":1401},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1390,1391,1392,1395,1398],{"name":1363,"slug":1364,"type":15},{"name":1222,"slug":1223,"type":15},{"name":1393,"slug":1394,"type":15},"SDK","sdk",{"name":1396,"slug":1397,"type":15},"Serverless","serverless",{"name":1399,"slug":1400,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1403,"name":1403,"fn":1404,"description":1405,"org":1406,"tags":1407,"stars":25,"repoUrl":26,"updatedAt":1419},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1408,1409,1412,1415,1416],{"name":1259,"slug":1260,"type":15},{"name":1410,"slug":1411,"type":15},"React","react",{"name":1413,"slug":1414,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1276,"slug":1277,"type":15},{"name":1417,"slug":1418,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1421,"name":1421,"fn":1422,"description":1423,"org":1424,"tags":1425,"stars":25,"repoUrl":26,"updatedAt":1439},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1426,1429,1432,1435,1438],{"name":1427,"slug":1428,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1430,"slug":1431,"type":15},"Cost Optimization","cost-optimization",{"name":1433,"slug":1434,"type":15},"LLM","llm",{"name":1436,"slug":1437,"type":15},"Performance","performance",{"name":1417,"slug":1418,"type":15},"2026-04-06T18:40:44.377464",{"slug":1441,"name":1441,"fn":1442,"description":1443,"org":1444,"tags":1445,"stars":25,"repoUrl":26,"updatedAt":1451},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1446,1447,1450],{"name":1430,"slug":1431,"type":15},{"name":1448,"slug":1449,"type":15},"Database","database",{"name":1433,"slug":1434,"type":15},"2026-04-06T18:41:08.513425",600]