What problem does it solve? When working in an Expo (React Native) project, it is hard to know which of the 16 specialized expo-/eas- skills applies to a given task, and web developers often apply wrong web conventions (div, localStorage, DOM APIs) that break on mobile. This Skill acts as the entry-point hub that detects the Expo stack and routes every task to the right specialized skill. ## Core Features & Use Cases - Stack Detection: Identifies an Expo project via app.json, app.config.ts, the expo dependency in package.json, or an app/ directory. - Decision Tree: Maps tasks (UI components, navigation, animations, data fetching, EAS builds, store submission, OTA updates) to the correct skill such as expo-router, expo-ui, expo-animation, or eas-app-stores. - RN vs Web Convention Table: Translates web patterns (div, a href, localStorage, button) into React Native equivalents (View, Link from expo-router, expo-secure-store, Pressable). - Component Selection Rule: Enforces checking @expo/ui first for sheets, pickers, sliders, toggles, and menus before falling back to community libraries. - Use Case: You start a session in a mobile repo and ask how to add a bottom sheet; the hub detects the Expo stack and directs you to expo-ui with the correct BottomSheet props (isPresented/onDismiss) instead of @gorhom/bottom-sheet. ## Quick Start Ask the assistant to use the expo-overview skill to determine which Expo skill fits your current mobile development task.