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 examples repo (~70 with-* integration projects) so you can copy the canonical, version-matched pattern instead of hand-rolling it. ## Core Features & Use Cases - Pattern adaptation: Find the matching example (e.g. payments → with-stripe, auth → with-clerk), read its key files via the GitHub API, and port only the dependencies, config plugins, and integration code your app is missing. - Project scaffolding: Start a greenfield project directly from any example with npx create-expo --example <name>. - Alias and deprecation checks: Consult the repo's meta.json and the categorized catalog reference to avoid recommending renamed or dead examples. - Use Case: You need to add Stripe payments to an existing Expo app. The Skill pulls the with-stripe example, identifies its server routes, client provider, config plugins, and env vars, then merges them non-destructively into your project using npx expo install for SDK-correct versions. ## Quick Start Ask the assistant to show how Expo integrates Stripe and apply that pattern to your current Expo project.