expo-dev-client
Build and distribute Expo development clients locally or via TestFlight
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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/expo-dev-client/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How expo-dev-client Compares
| Feature / Agent | expo-dev-client | Standard Approach |
|---|---|---|
| Platform Support | Claude | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | easy | N/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
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
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
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
expo-deployment
Deploy Expo apps to production
expo-cicd-workflows
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.
expo-api-routes
Guidelines for creating API routes in Expo Router with EAS Hosting
azure-monitor-opentelemetry-exporter-py
Azure Monitor OpenTelemetry Exporter for Python. Use for low-level OpenTelemetry export to Application Insights.
nft-standards
Master ERC-721 and ERC-1155 NFT standards, metadata best practices, and advanced NFT features.
nextjs-app-router-patterns
Comprehensive patterns for Next.js 14+ App Router architecture, Server Components, and modern full-stack React development.
new-rails-project
Create a new Rails project
networkx
NetworkX is a Python package for creating, manipulating, and analyzing complex networks and graphs.
network-engineer
Expert network engineer specializing in modern cloud networking, security architectures, and performance optimization.
nestjs-expert
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.
nerdzao-elite
Senior Elite Software Engineer (15+) and Senior Product Designer. Full workflow with planning, architecture, TDD, clean code, and pixel-perfect UX validation.