expo-dev-client

Build and distribute Expo development clients locally or via TestFlight

31,392 stars
Complexity: easy

About this skill

This AI agent skill empowers an agent to build and distribute custom Expo development clients, either locally or through services like TestFlight. Leveraging Expo's EAS Build, it is crucial for projects requiring custom native code, local Expo modules, Apple targets (such as widgets or app clips), or third-party native modules not supported by the standard Expo Go client. As part of the 'antigravity-awesome-skills' collection, this skill enhances an AI agent's capabilities in advanced mobile app development workflows, streamlining the process of testing complex Expo projects with deep native integrations on physical devices.

Best use case

Enables AI agents to facilitate the development and testing of Expo applications that incorporate custom native modules or require specific native functionalities beyond what Expo Go offers. It's ideal for automated CI/CD pipelines, triggering builds for new feature branches, or generating on-demand clients for quality assurance and beta testing.

Build and distribute Expo development clients locally or via TestFlight

A successfully compiled Expo development client application package (e.g., .ipa for iOS, .apk for Android) ready for installation on physical devices. Confirmation of the development client's successful distribution, potentially including links to TestFlight or other distribution channels. Detailed build logs and status updates, including any errors or warnings encountered during the EAS Build process, allowing the agent to react accordingly.

Practical example

Example input

```json
{
  "skill": "expo-dev-client",
  "action": "buildAndDistribute",
  "parameters": {
    "projectPath": "./my-custom-app",
    "distribution": "testflight",
    "platform": "ios",
    "branch": "feature/native-audio-module",
    "buildProfile": "development",
    "environmentVariables": {
      "EXPO_API_KEY": "sk_live_xyz"
    }
  }
}
```

Example output

```json
{
  "status": "success",
  "message": "Expo development client build initiated and distributed for iOS via TestFlight.",
  "buildId": "eas_build_xyz789",
  "platform": "ios",
  "distributionLink": "https://testflight.apple.com/join/ABCDE1",
  "artifacts": [
    {
      "type": "ipa",
      "url": "https://eas.expo.dev/builds/eas_build_xyz789/artifacts/my-custom-app.ipa"
    }
  ],
  "logsUrl": "https://eas.expo.dev/builds/eas_build_xyz789/logs"
}
```

When to use this skill

  • When your Expo application utilizes custom native modules (e.g., local Expo modules, Apple targets like widgets/app clips, or third-party native modules not within Expo Go's scope).
  • When you need to test changes to native code directly on physical devices or via remote testing services.
  • When creating specialized builds for specific app branches or features that interact with native APIs.
  • As part of an automated mobile development workflow managed by an AI agent to ensure continuous testing of native code.

When not to use this skill

  • If your Expo app runs perfectly within the standard Expo Go client (`npx expo start`) and does not involve any custom native code or unsupported third-party native modules.
  • For general development tasks where a development client is not explicitly required for native functionality testing.
  • When the primary goal is simply to run an existing app without modifications to its native components.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/expo-dev-client/SKILL.md --create-dirs "https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/plugins/antigravity-awesome-skills-claude/skills/expo-dev-client/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/expo-dev-client/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How expo-dev-client Compares

Feature / Agentexpo-dev-clientStandard Approach
Platform SupportClaudeLimited / Varies
Context Awareness High Baseline
Installation ComplexityeasyN/A

Frequently Asked Questions

What does this skill do?

Build and distribute Expo development clients locally or via TestFlight

Which AI agents support this skill?

This skill is designed for Claude.

How difficult is it to install?

The installation complexity is rated as easy. You can find the installation instructions above.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

Use EAS Build to create development clients for testing native code changes on physical devices. Use this for creating custom Expo Go clients for testing branches of your app.

## When to Use

- You need an Expo development client because the app depends on custom native code or targets not supported by Expo Go.
- The task involves building, distributing, or testing EAS development builds on physical devices.
- You need guidance on when to choose a dev client versus staying on plain Expo Go.

## Important: When Development Clients Are Needed

**Only create development clients when your app requires custom native code.** Most apps work fine in Expo Go.

You need a dev client ONLY when using:
- Local Expo modules (custom native code)
- Apple targets (widgets, app clips, extensions)
- Third-party native modules not in Expo Go

**Try Expo Go first** with `npx expo start`. If everything works, you don't need a dev client.

## EAS Configuration

Ensure `eas.json` has a development profile:

```json
{
  "cli": {
    "version": ">= 16.0.1",
    "appVersionSource": "remote"
  },
  "build": {
    "production": {
      "autoIncrement": true
    },
    "development": {
      "autoIncrement": true,
      "developmentClient": true
    }
  },
  "submit": {
    "production": {},
    "development": {}
  }
}
```

Key settings:
- `developmentClient: true` - Bundles expo-dev-client for development builds
- `autoIncrement: true` - Automatically increments build numbers
- `appVersionSource: "remote"` - Uses EAS as the source of truth for version numbers

## Building for TestFlight

Build iOS dev client and submit to TestFlight in one command:

```bash
eas build -p ios --profile development --submit
```

This will:
1. Build the development client in the cloud
2. Automatically submit to App Store Connect
3. Send you an email when the build is ready in TestFlight

After receiving the TestFlight email:
1. Download the build from TestFlight on your device
2. Launch the app to see the expo-dev-client UI
3. Connect to your local Metro bundler or scan a QR code

## Building Locally

Build a development client on your machine:

```bash
# iOS (requires Xcode)
eas build -p ios --profile development --local

# Android
eas build -p android --profile development --local
```

Local builds output:
- iOS: `.ipa` file
- Android: `.apk` or `.aab` file

## Installing Local Builds

Install iOS build on simulator:

```bash
# Find the .app in the .tar.gz output
tar -xzf build-*.tar.gz
xcrun simctl install booted ./path/to/App.app
```

Install iOS build on device (requires signing):

```bash
# Use Xcode Devices window or ideviceinstaller
ideviceinstaller -i build.ipa
```

Install Android build:

```bash
adb install build.apk
```

## Building for Specific Platform

```bash
# iOS only
eas build -p ios --profile development

# Android only
eas build -p android --profile development

# Both platforms
eas build --profile development
```

## Checking Build Status

```bash
# List recent builds
eas build:list

# View build details
eas build:view
```

## Using the Dev Client

Once installed, the dev client provides:
- **Development server connection** - Enter your Metro bundler URL or scan QR
- **Build information** - View native build details
- **Launcher UI** - Switch between development servers

Connect to local development:

```bash
# Start Metro bundler
npx expo start --dev-client

# Scan QR code with dev client or enter URL manually
```

## Troubleshooting

**Build fails with signing errors:**
```bash
eas credentials
```

**Clear build cache:**
```bash
eas build -p ios --profile development --clear-cache
```

**Check EAS CLI version:**
```bash
eas --version
eas update
```

Related Skills

expo-tailwind-setup

31392
from sickn33/antigravity-awesome-skills

Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling

Mobile DevelopmentClaude

expo-deployment

31392
from sickn33/antigravity-awesome-skills

Deploy Expo apps to production

Mobile DevelopmentClaude

expo-cicd-workflows

31392
from sickn33/antigravity-awesome-skills

Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with EAS build pipelines or deployment automation.

DevOps & InfrastructureClaude

expo-api-routes

31392
from sickn33/antigravity-awesome-skills

Guidelines for creating API routes in Expo Router with EAS Hosting

Mobile DevelopmentClaude

azure-monitor-opentelemetry-exporter-py

31392
from sickn33/antigravity-awesome-skills

Azure Monitor OpenTelemetry Exporter for Python. Use for low-level OpenTelemetry export to Application Insights.

Observability & MonitoringClaude

nft-standards

31392
from sickn33/antigravity-awesome-skills

Master ERC-721 and ERC-1155 NFT standards, metadata best practices, and advanced NFT features.

Web3 & BlockchainClaude

nextjs-app-router-patterns

31392
from sickn33/antigravity-awesome-skills

Comprehensive patterns for Next.js 14+ App Router architecture, Server Components, and modern full-stack React development.

Web FrameworksClaude

new-rails-project

31392
from sickn33/antigravity-awesome-skills

Create a new Rails project

Code GenerationClaude

networkx

31392
from sickn33/antigravity-awesome-skills

NetworkX is a Python package for creating, manipulating, and analyzing complex networks and graphs.

Network AnalysisClaude

network-engineer

31392
from sickn33/antigravity-awesome-skills

Expert network engineer specializing in modern cloud networking, security architectures, and performance optimization.

Network EngineeringClaude

nestjs-expert

31392
from sickn33/antigravity-awesome-skills

You are an expert in Nest.js with deep knowledge of enterprise-grade Node.js application architecture, dependency injection patterns, decorators, middleware, guards, interceptors, pipes, testing strategies, database integration, and authentication systems.

Frameworks & LibrariesClaude

nerdzao-elite

31392
from sickn33/antigravity-awesome-skills

Senior Elite Software Engineer (15+) and Senior Product Designer. Full workflow with planning, architecture, TDD, clean code, and pixel-perfect UX validation.

Software DevelopmentClaude