expo-expert

Master of Expo (SDK 55+), specialized in Development Builds, Expo Modules SDK, and Zero-Eject Native Orchestration.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "expo-expert" with this command: npx skills add yuniorglez/gemini-elite-core/yuniorglez-gemini-elite-core-expo-expert

Skill: Expo Expert (Standard 2026)

Role: The Expo Expert is the architect of modern, scalable mobile infrastructure. In 2026, Expo has moved completely to the Development Build paradigm, eliminating the need for "Ejecting." This skill focuses on the Expo Modules SDK, EAS (Expo Application Services), and leveraging native features while staying entirely within the managed-like workflow.

🎯 Primary Objectives

  1. Modern Workflow Mastery: Utilizing expo-dev-client for custom native code without leaving the Expo ecosystem.
  2. Native Module Engineering: Creating high-performance native bridges using the Expo Modules SDK (Swift/Kotlin).
  3. EAS Orchestration: Managing CI/CD pipelines with EAS Build, Submit, and Update (OTA).
  4. Local Intelligence: Implementing persistent storage with Expo SQLite and native file system management.

🏗️ The 2026 Expo Toolbelt

1. Core Services

  • Expo SDK 55: Requiring the React Native New Architecture.
  • Expo Router 4+: File-based routing with static typing and automatic deep linking.
  • EAS Build: Cloud-based binary generation for iOS and Android.

2. Specialized SDKs

  • Expo Modules SDK: The standard for writing modern native modules.
  • Expo Image: High-fidelity image loading with blurhash support.
  • Expo SQLite: Local database with full localStorage API support.

🛠️ Implementation Patterns

1. The Expo Module (Swift/Kotlin)

Writing native code in 2026 is done via the "DSL" approach, which is much safer and faster than the old Bridge.

// ios/MyModule.swift
import ExpoModulesCore

public class MyModule: Module {
  public function definition() -> ModuleDefinition {
    Name("MyModule")
    Function("hello") { (name: String) -> String in
      return "Hello \(name) from Native!"
    }
  }
}

2. Expo Router (File-based Navigation)

Automatic route generation based on the file system.

// app/user/[id].tsx
import { useLocalSearchParams } from 'expo-router';

export default function UserPage() {
  const { id } = useLocalSearchParams();
  return <Text>User ID: {id}</Text>;
}

3. EAS Update (OTA)

Deploying critical bug fixes in minutes without App Store review.

eas update --branch production --message "Fix: Hydration error in Checkout"

🚫 The "Do Not List" (Anti-Patterns)

  1. NEVER "Eject" (npx expo prebuild is fine, but don't commit the ios/android folders unless strictly necessary).
  2. NEVER use react-native-navigation if Expo Router fits the use case.
  3. NEVER store large blobs in AsyncStorage. Use Expo SQLite or the File System.
  4. NEVER perform heavy work in the app.json config. Use Config Plugins for complex native modifications.

🛠️ Troubleshooting & Infrastructure

IssueLikely Cause2026 Corrective Action
Native Module MissingUsing Go/Prebuilt Expo GoCreate a Development Build using eas build --profile development.
Build Failure (EAS)Missing Config Plugin for a libraryVerify plugins in app.json and run npx expo prebuild locally to debug.
Stale OTA UpdateCaching in the update manifestUse expo-updates API to force a re-check on app launch.
Android Edge-to-EdgeSystem UI not compatible with SDK 55Use expo-system-ui to force consistent status bar behavior.

📚 Reference Library


📊 Quality Metrics

  • Build Success Rate: > 95% on EAS.
  • OTA Success Rate: > 99%.
  • Native Crash Rate: < 0.1%.

🔄 Evolution from SDK 48 to 55

  • SDK 50: Introduction of Dev Client by default.
  • SDK 52: Expo Router becomes the standard.
  • SDK 54: Precompiled RN for iOS, "Liquid Glass" support.
  • SDK 55: Mandatory New Architecture, Predictive Back Gesture.

End of Expo Expert Standard (v1.1.0)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

github-actions-pro

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

code-review-pro

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

code-architect

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

programmatic-seo-pro

No summary provided by upstream source.

Repository SourceNeeds Review