expo-examples

Adapt or scaffold canonical Expo integration examples from the expo/examples repository.

Updated Sep 13, 2026
One-click install
npx skills add https://github.com/aadilmallick/myfitness-pal-clone --skill expo-examples-aadilmallick
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: expo-examples
Source: https://github.com/aadilmallick/myfitness-pal-clone/tree/main/.agents/skills/expo-examples
Command: npx skills add https://github.com/aadilmallick/myfitness-pal-clone --skill expo-examples-aadilmallick

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

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.

Frequently Asked Questions about expo-examples

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I integrate a third-party library into an Expo app?

Find the matching with-* example in the expo/examples repository, read its package.json, app.json, and integration code, then port only the missing dependencies and config plugins into your project. Use npx expo install to resolve SDK-correct dependency versions instead of copying pinned versions.

How do I scaffold a new Expo project from an example?

Run npx create-expo --example <name> with any example name from the expo/examples repo, such as npx create-expo --example with-stripe. The short form npx create-expo -e with-stripe and bun create expo --example with-stripe also work.

What Expo examples exist for authentication and payments?

Authentication examples include with-clerk, with-auth0, with-better-auth, with-magic, and with-firebase-saml-login. For payments, with-stripe covers Stripe on native and web, including full-stack API routes.

Can I copy dependency versions directly from an Expo example?

No, examples track the latest Expo SDK, so their pinned versions may not match your project. Add only the missing packages with npx expo install, which resolves versions compatible with your SDK.

What happens if an Expo example was renamed or deprecated?

Check the meta.json file in the expo/examples repository, which lists aliases for renamed examples and deprecated entries with migration messages. Follow the alias destination or the deprecation message to the modern replacement instead of using the old name.