What problem does it solve? Integrating a third-party library or service into an Expo app often means guessing at the right dependencies, config plugins, and wiring. This Skill gives you Expo's official, version-matched integration patterns from the expo/examples repository so you adapt a canonical setup instead of hand-rolling one. ## Core Features & Use Cases - Pattern adaptation: Read a with-* example (Stripe, Clerk, Supabase, maps, SQLite, Skia, and ~70 more) and port only its dependencies, app.json config plugins, and integration code into an existing project without overwriting the user's setup. - Project scaffolding: Start a greenfield app directly from any example with npx create-expo --example. - Live catalog verification: Confirm example names against the live repo and check meta.json for renamed or deprecated examples before recommending them. - Use Case: A developer wants to add Stripe payments to an existing Expo app. The Skill locates with-stripe, reads its server routes, package.json, and app.json, then merges only the missing pieces into the user's project using npx expo install for SDK-correct versions. ## Quick Start Use the expo-examples skill to find the official Expo example for integrating Stripe and adapt its pattern into my current app.