What problem does it solve? Integrating a third-party library or service into an Expo app often means guessing at the correct dependencies, config plugins, and wiring for your SDK version. This Skill gives you direct access to Expo's official expo/examples repository of roughly 70 canonical with-* integration examples so you can adapt version-matched, Expo-maintained patterns instead of hand-rolling integrations. ## Core Features & Use Cases - Pattern adaptation: Find the matching example (e.g. payments → with-stripe, auth → with-clerk), read its README, package.json, app.json, and integration code via the GitHub API, then port only what it introduces into an existing app without overwriting existing config. - 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 to avoid recommending renamed or dead examples, and use the categorized references/catalog.md snapshot for fast triage. - Use Case: You need to add Stripe payments to an existing Expo app. The Skill pulls the with-stripe example into a scratch directory, identifies its server routes, client provider, config plugins, and env vars, then merges only the missing pieces into your project using npx expo install for SDK-correct versions. ## Quick Start Ask the agent to show how Expo integrates Stripe into an app and adapt that pattern into your current project.