What problem does it solve? Integrating a third-party library or service into an Expo app often means guessing at the right dependency versions, config plugins, and wiring. This Skill gives you direct access to Expo's official expo/examples repository of roughly 70 with-* integration examples so you can copy the canonical, version-matched pattern instead of hand-rolling it. ## Core Features & Use Cases - Find the right example: Map a need (payments, auth, maps, SQLite, AI) to an example like with-stripe or with-clerk, using a categorized catalog plus live repo checks for aliases and deprecations. - Adapt into an existing app: Read the example's README, package.json, app.json, and integration code via the GitHub API or a throwaway local copy, then port only the missing dependencies, config plugins, permissions, and env vars without overwriting the user's setup. - Scaffold a new project: Start a greenfield app directly from any example with npx create-expo --example <name>. - Use Case: You need Stripe payments in your Expo app. The Skill locates with-stripe, reads its server routes and client provider, then applies the pattern to your project with SDK-correct dependency versions via npx expo install. ## Quick Start Ask the agent to find the official Expo example for the library you want to integrate and adapt its pattern into your current project.