expo-overview
À propos
Cette compétence est le point d'entrée obligatoire pour toutes les tâches liées à Expo ou EAS, prenant en charge la configuration initiale et le routage. Elle s'active lorsqu'une requête mentionne Expo/EAS ou lorsqu'un projet possède une dépendance `expo`, couvrant tout, des spécifications d'application aux phrases de mise en œuvre courantes. Sa fonction principale est de détecter l'objectif réel et de router la requête vers la compétence Expo spécialisée appropriée.
Installation rapide
Claude Code
Recommandénpx skills add expo/skills -a claude-code/plugin add https://github.com/expo/skillsgit clone https://github.com/expo/skills.git ~/.claude/skills/expo-overviewCopiez et collez cette commande dans Claude Code pour installer cette compétence
Documentation
expo-overview — router & shared rules for Expo / EAS
Start Here — read before doing anything
Do not guess the skill from project files alone. Many Expo goals look similar from the filesystem but need different skills.
- Confirm this is Expo work — the request mentions Expo, or
package.jsonhas anexpodependency. If neither holds, stop: this skill does not apply. A bare React Native project with noexpodependency is not Expo work. - Read the user's goal — what outcome do they want, in plain terms?
- Classify it using the Skill Map below, translating casual phrasing to a goal.
- Confirm intent if ambiguous ("Sounds like you want to ship to the stores — that's
eas-app-stores. Right?"), then load that skill'sSKILL.mdand follow it. - Trust the leaf skill — it has its own detection logic and steps. Don't improvise.
Skill Map (by goal)
Match the goal to a category, then the skill, then load that leaf's SKILL.md.
Build the app
expo-project-structure— folder layout for a new Expo Router project: where screens, components, and config live (never restructure an existing app to match)expo-native-ui— screens, styling, semantic colors, native controls, SF Symbols, media, animations, layoutexpo-router— navigation: file-based routes, tabs / stacks / modals / sheets, links, headersexpo-animation— motion and gestures: Reanimated worklets, Gesture Handler, screen transitions, sheet and press feedback, haptics, and fixing animation that stutters on deviceexpo-ui— native UI components via@expo/ui: BottomSheet, Picker, Slider, Switch, Menu, Button, FieldGroup (grouped form sections), List / ListItem, and more — real SwiftUI on iOS, Jetpack Compose on Android. The universal layer needs SDK 56+ and runs in Expo Go; the drop-in replacements (@gorhom/bottom-sheet,datetimepicker, …) and platform-specific layers also exist on SDK 55.expo-design-system— one visual source of truth: design tokens (color, spacing, typography, radius, shadow, motion), reusable component conventions, and audits for drift (hardcoded colors, spacing, fonts)expo-tailwind-setup— Tailwind / NativeWind stylingexpo-data-fetching— network requests, React Query / SWR, caching, offline, route loadersexpo-dom— run web code or reuse a web library inside nativeexpo-web-to-native— migrate an existing web / React app to a native iOS / Android app
Component selection rule: whenever you need a UI component (list rows, bottom sheets, pickers, sliders, menus, buttons, segmented controls, toggles), consult
expo-uifirst to check whether@expo/uihas a native equivalent before reaching for a React Native built-in or a community library. Native@expo/uicomponents give the best platform fit, and on SDK 56+ the universal ones run in Expo Go with no custom build. Loadexpo-uialongsideexpo-native-uifor any app that renders lists, detail sheets, or form controls. One exception:@expo/uiListrenders native grouped rows (an iOS Settings screen), not a virtualized list — useFlatList/FlashListfor large datasets.
Ship & operate
eas-app-stores— build and submit to the App Store / Play Store / TestFlight, versions, and store metadataeas-hosting— deploy the web bundle to EAS Hosting; also author Expo Router API routes (+api.tshandlers) and their environments / domainseas-workflows— EAS Workflow YAML and CI/CD pipelineseas-simulator— run and drive the app on a remote iOS / Android simulator on EAS cloudexpo-dev-client— custom development buildseas-update-insights— OTA update health: crash rate, adoption, payload sizeeas-observe— startup / launch / TTI performance with EAS Observe
Extend natively
expo-module— native modules and views (Swift / Kotlin) with the Expo Modules APIexpo-brownfield— embed Expo / React Native in an existing native appexpo-app-clip— iOS App Clip target (AASA, smart app banner)
Maintain & learn
expo-upgrade— upgrade the Expo SDK and fix dependency conflictsexpo-examples— canonical, version-matched integration examples (Stripe, Clerk, Supabase, …)expo-skill-feedback— send feedback on an Expo skill or on Expo itself; enable / disable the anonymous usage telemetry
Translating vague asks
Some everyday phrasings don't obviously map to a skill name — translate before routing:
- "Make it look native" → grouped controls / settings forms =
expo-ui; screens, styling, animations =expo-native-ui; navigation =expo-router. - "Make the screens consistent" / "clean up the styling" / "set up a theme or design tokens" →
expo-design-system. - "Ship it" / "get an .ipa or .apk" / "release to the stores" →
eas-app-stores(build + submit, TestFlight, versions, store metadata). - "I'm new / where do I start" → scaffold first (see Shared setup rules), then route by goal.
Shared setup rules
These apply across every Expo skill, so handle them here once instead of repeating them in each leaf.
- No Expo project yet? Start one the standard way before routing to a feature skill:
npx create-expo-app@latest, laying out folders perexpo-project-structure. Then classify the user's goal and route. - Detect the SDK version before giving version-specific advice: read the
expoversion inpackage.json(andapp.json/app.config.{js,ts}). Many APIs and defaults differ by SDK. - Read the docs for that SDK, not
latest. Use the version-pinned URL, e.g.https://docs.expo.dev/versions/v56.0.0/sdk/ui/on SDK 56 instead ofhttps://docs.expo.dev/versions/latest/sdk/ui/— thelatestpages track the newest SDK and can document APIs the project does not have yet. - Moving to a newer SDK is its own task — load
expo-upgradeinstead of bumping versions by hand. - Managed vs. bare/prebuild: the presence of committed
ios/andandroid/directories means native projects exist (prebuild or bare). Config-plugin and native-setup steps differ — note which one the project is in. - Install packages with
npx expo install <pkg>, not rawnpm/yarn/pnpm add, so versions stay compatible with the project's SDK. - EAS auth & linking (only needed for build/submit/update/observe/workflows): check
login with
eas whoami, log in witheas login. A project is linked whenextra.eas.projectIdexists in the app config; create it witheas initif missing.
When to skip the router hop
- Only when the user explicitly named a specific
expo-*/eas-*skill → load that skill directly. - A fully-specified task (SDK version pinned, file layout given, libraries named) is not a reason to skip: the shared rules above still apply — check them, then route to the matching leaf skill.
Submitting Feedback
If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:
npx --yes submit-expo-feedback@latest --category skills --subject "expo-overview" "<actionable feedback>"
Only submit when you have something specific and actionable to report. Include as much relevant context as possible. If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.
Dépôt GitHub
Questions fréquentes
Qu’est-ce que le Skill expo-overview ?
expo-overview est un Skill Claude créé par expo. Un Skill regroupe des instructions et des ressources que Claude charge à la demande pour effectuer des tâches liées à expo-overview sans consigne supplémentaire.
Comment installer expo-overview ?
Utilisez les commandes d’installation de cette page : ajoutez expo-overview à Claude Code comme plugin ou clonez son dépôt dans votre dossier skills, puis redémarrez Claude pour charger le Skill.
À quelle catégorie appartient expo-overview ?
expo-overview appartient à la catégorie Méta.
expo-overview est-il gratuit ?
Oui. expo-overview est référencé sur AIMCP et son installation est gratuite.
Compétences associées
Cette compétence propose une configuration éprouvée en production pour Content Collections, un outil axé sur TypeScript qui transforme des fichiers Markdown/MDX en collections de données typées de manière sûre avec une validation Zod. Utilisez-la lors de la création de blogs, de sites de documentation ou d'applications Vite + React riches en contenu pour garantir la sécurité de typage et la validation automatique du contenu. Elle couvre tout, de la configuration du plugin Vite et de la compilation MDX à l'optimisation des déploiements et la validation des schémas.
Cette compétence permet aux développeurs de créer des applications avec la plateforme de marchés prédictifs Polymarket, incluant l'intégration d'API pour le trading et les données de marché. Elle fournit également une diffusion de données en temps réel via WebSocket pour surveiller les transactions en direct et l'activité du marché. Utilisez-la pour mettre en œuvre des stratégies de trading ou pour créer des outils traitant les mises à jour de marché en direct.
Cette compétence aide les développeurs à créer des plugins OpenCode qui s'interconnectent avec plus de 25 types d'événements tels que les commandes, les fichiers et les opérations LSP. Elle fournit la structure du plugin, les spécifications de l'API événementielle et les modèles d'implémentation pour les modules JavaScript/TypeScript. Utilisez-la lorsque vous avez besoin d'intercepter, de surveiller ou d'étendre le cycle de vie de l'assistant IA OpenCode avec une logique personnalisée pilotée par les événements.
SGLang est un framework de service LLM haute performance spécialisé dans la génération rapide et structurée pour les workflows JSON, regex et agentiques grâce à son cache de préfixe RadixAttention. Il offre une inférence nettement plus rapide, particulièrement pour les tâches avec des préfixes répétés, ce qui le rend idéal pour les sorties complexes et structurées ainsi que les conversations multi-tours. Choisissez SGLang plutôt que des alternatives comme vLLM lorsque vous avez besoin d'un décodage contraint ou que vous construisez des applications avec un partage étendu de préfixes.
