/mobile-deployment-eas
EAS Build, Update, Submit deployment patterns
$ npx -y skills add agents-inc/skills --skill mobile-deployment-eas --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/mobile-deployment-eas
Context preview
The summary Claude sees to decide when to auto-load this skill.
EAS Build, Update, Submit deployment patterns
SKILL.md
mobile-deployment-eas.SKILL.mdname: mobile-deployment-eas
description: EAS Build, Update, Submit deployment patterns
EAS Deployment Patterns
> **Quick Guide:** EAS (Expo Application Services) handles cloud builds, OTA updates, and app store submission. Use build profiles in `eas.json` to separate development/preview/production builds. Use EAS Update with runtime version fingerprinting for safe OTA deploys. Use `--environment` flag (SDK 55+) instead of `--channel` when publishing updates. Let EAS manage credentials unless you have enterprise requirements.
---
<critical_requirements>
CRITICAL: Before Using This Skill
> **All code must follow project conventions in CLAUDE.md** (kebab-case, named exports, import ordering, `import type`, named constants)
**(You MUST use the `--environment` flag with `eas update` on SDK 55+ projects -- the `--channel` flag is replaced)**
**(You MUST set `runtimeVersion` with `"fingerprint"` policy for projects with native dependencies -- mismatched runtime versions crash apps on OTA update)**
**(You MUST use EAS Secrets for sensitive values -- NEVER put API keys or tokens in `eas.json` env blocks or `EXPO_PUBLIC_` variables)**
**(You MUST run `eas build` from the app directory in monorepos -- NOT from the repository root)**
</critical_requirements>
---
**Auto-detection:** EAS Build, EAS Update, EAS Submit, eas.json, eas build, eas update, eas submit, eas credentials, eas secret, EAS Workflows, build profiles, OTA updates, runtime version, fingerprint policy, app store submission, code signing, eas-cli
**When to use:**
- Configuring cloud builds for iOS and Android
- Publishing OTA (over-the-air) updates to deployed apps
- Submitting builds to App Store or Google Play
- Managing iOS provisioning profiles and Android keystores
- Setting up CI/CD pipelines for mobile deployment
- Configuring build profiles for different environments
**Key patterns covered:**
- `eas.json` build profiles with inheritance (`extends`)
- EAS Update channels, branches, and runtime versions
- EAS Submit for iOS App Store and Google Play
- Credentials management (automatic vs local)
- EAS Secrets for sensitive build-time values
- EAS Workflows for CI/CD automation
- Monorepo build configuration
- Version management with `autoIncrement` and `appVersionSource`
**When NOT to use:**
- General Expo SDK development (app.config.ts, Expo Router, components)
- Local-only builds with `npx expo run:ios/android` without EAS
- Projects not using Expo managed workflow
---
<philosophy>
Philosophy
EAS separates **building**, **updating**, and **submitting** into distinct services that compose into a deployment pipeline. The key insight is that most mobile deployment complexity lives in credentials, versioning, and environment management -- EAS automates all three.
**Core principles:**
1. **Profiles over flags** -- Define build configurations in `eas.json`, not as CLI arguments scattered across scripts 2. **Channels isolate environments** -- Production, preview, and development builds receive only their intended updates 3. **Fingerprint prevents crashes** -- Runtime version fingerprinting auto-detects native changes so OTA updates never land on incompatible builds 4. **Credentials are managed** -- Let EAS handle signing unless you have enterprise requirements; it generates, stores, and renews certificates automatically 5. **Secrets stay server-side** -- Sensitive values live in EAS Secrets, never in config files or client-side variables
**Mental model:**
`eas.json` is your deployment configuration hub. Build profiles define HOW to build (development client, APK vs AAB, simulator vs device). Channels define WHERE updates go. Runtime versions define WHAT is compatible. Secrets define access to external services during builds.
</philosophy>
---
<patterns>
Core Patterns
Pattern 1: Build Profiles with Inheritance
Use `extends` to share configuration between profiles. Define a `base` profile for shared settings, then extend for each environment.
{
"build": {
"base": {
"node": "20.17.0",
"env": { "EXPO_PUBLIC_APP_ENV": "development" }
},
"development": {
"extends": "base",
"developmentClient": true,
"distribution": "internal",
"ios": { "simulator": true },
"android": { "buildType": "apk" }
},
"production": {
"extends": "base",
"autoIncrement": "buildNumber",
"channel": "production",
"env": { "EXPO_PUBLIC_APP_ENV": "production" }
}
}
}**Why good:** `extends` eliminates duplication across profiles, `autoIncrement` handles version bumps automatically, environment-specific env vars prevent mixing configurations
> Full profile examples with all options: [examples/core.md](examples/core.md) - Build Profiles section
---
Pattern 2: Runtime Versions and Fingerprinting
Runtime version determines which builds are compatible with which OTA updates. The `"fingerprint"` policy auto-detects native changes.
// app.config.ts
export default {
runtimeVersion: {
policy: "fingerprint", // Auto-detects native code changes
},
updates: {
url: `https://u.expo.dev/${process.env.EAS_PROJECT_ID}`,
},
};| Policy | Behavior | Best For | | ------------- | ----------------------------------------- | -------------------------------- | | `fingerprint` | Hashes all native dependencies | Complex apps with native modules | | `appVersion` | Uses `version` from app config | Simple apps, manual control | | Custom string | Exact match (e.g., `"1.0.0"`) | Full manual control |
**Gotcha:** `fingerprint` can be aggressive -- it may flag changes that don't actually affect native code, requiring more builds than necessary. Use `appVersion` for simpler projects.
> Full configuration examples: [examples/core.md](examples/core.md) - Runtime Versions section
---
###
Read more
name: mobile-deployment-eas description: EAS Build, Update, Submit deployment patterns
EAS Deployment Patterns
> **Quick Guide:** EAS (Expo Application Services) handles cloud builds, OTA updates, and app store submission. Use build profiles in `eas.json` to separate development/preview/production builds. Use EAS Update with runtime version fingerprinting for safe OTA deploys. Use `--environment` flag (SDK 55+) instead of `--channel` when publishing updates. Let EAS manage credentials unless you have enterprise requirements.
---
<critical_requirements>
CRITICAL: Before Using This Skill
> **All code must follow project conventions in CLAUDE.md** (kebab-case, named exports, import ordering, `import type`, named constants)
**(You MUST use the `--environment` flag with `eas update` on SDK 55+ projects -- the `--channel` flag is replaced)**
**(You MUST set `runtimeVersion` with `"fingerprint"` policy for projects with native dependencies -- mismatched runtime versions crash apps on OTA update)**
**(You MUST use EAS Secrets for sensitive values -- NEVER put API keys or tokens in `eas.json` env blocks or `EXPO_PUBLIC_` variables)**
**(You MUST run `eas build` from the app directory in monorepos -- NOT from the repository root)**
</critical_requirements>
---
**Auto-detection:** EAS Build, EAS Update, EAS Submit, eas.json, eas build, eas update, eas submit, eas credentials, eas secret, EAS Workflows, build profiles, OTA updates, runtime version, fingerprint policy, app store submission, code signing, eas-cli
**When to use:**
- Configuring cloud builds for iOS and Android
- Publishing OTA (over-the-air) updates to deployed apps
- Submitting builds to App Store or Google Play
- Managing iOS provisioning profiles and Android keystores
- Setting up CI/CD pipelines for mobile deployment
- Configuring build profiles for different environments
**Key patterns covered:**
- `eas.json` build profiles with inheritance (`extends`)
- EAS Update channels, branches, and runtime versions
- EAS Submit for iOS App Store and Google Play
- Credentials management (automatic vs local)
- EAS Secrets for sensitive build-time values
- EAS Workflows for CI/CD automation
- Monorepo build configuration
- Version management with `autoIncrement` and `appVersionSource`
**When NOT to use:**
- General Expo SDK development (app.config.ts, Expo Router, components)
- Local-only builds with `npx expo run:ios/android` without EAS
- Projects not using Expo managed workflow
---
<philosophy>
Philosophy
EAS separates **building**, **updating**, and **submitting** into distinct services that compose into a deployment pipeline. The key insight is that most mobile deployment complexity lives in credentials, versioning, and environment management -- EAS automates all three.
**Core principles:**
1. **Profiles over flags** -- Define build configurations in `eas.json`, not as CLI arguments scattered across scripts 2. **Channels isolate environments** -- Production, preview, and development builds receive only their intended updates 3. **Fingerprint prevents crashes** -- Runtime version fingerprinting auto-detects native changes so OTA updates never land on incompatible builds 4. **Credentials are managed** -- Let EAS handle signing unless you have enterprise requirements; it generates, stores, and renews certificates automatically 5. **Secrets stay server-side** -- Sensitive values live in EAS Secrets, never in config files or client-side variables
**Mental model:**
`eas.json` is your deployment configuration hub. Build profiles define HOW to build (development client, APK vs AAB, simulator vs device). Channels define WHERE updates go. Runtime versions define WHAT is compatible. Secrets define access to external services during builds.
</philosophy>
---
<patterns>
Core Patterns
Pattern 1: Build Profiles with Inheritance
Use `extends` to share configuration between profiles. Define a `base` profile for shared settings, then extend for each environment.
{
"build": {
"base": {
"node": "20.17.0",
"env": { "EXPO_PUBLIC_APP_ENV": "development" }
},
"development": {
"extends": "base",
"developmentClient": true,
"distribution": "internal",
"ios": { "simulator": true },
"android": { "buildType": "apk" }
},
"production": {
"extends": "base",
"autoIncrement": "buildNumber",
"channel": "production",
"env": { "EXPO_PUBLIC_APP_ENV": "production" }
}
}
}**Why good:** `extends` eliminates duplication across profiles, `autoIncrement` handles version bumps automatically, environment-specific env vars prevent mixing configurations
> Full profile examples with all options: [examples/core.md](examples/core.md) - Build Profiles section
---
Pattern 2: Runtime Versions and Fingerprinting
Runtime version determines which builds are compatible with which OTA updates. The `"fingerprint"` policy auto-detects native changes.
// app.config.ts
export default {
runtimeVersion: {
policy: "fingerprint", // Auto-detects native code changes
},
updates: {
url: `https://u.expo.dev/${process.env.EAS_PROJECT_ID}`,
},
};| Policy | Behavior | Best For | | ------------- | ----------------------------------------- | -------------------------------- | | `fingerprint` | Hashes all native dependencies | Complex apps with native modules | | `appVersion` | Uses `version` from app config | Simple apps, manual control | | Custom string | Exact match (e.g., `"1.0.0"`) | Full manual control |
**Gotcha:** `fingerprint` can be aggressive -- it may flag changes that don't actually affect native code, requiring more builds than necessary. Use `appVersion` for simpler projects.
> Full configuration examples: [examples/core.md](examples/core.md) - Runtime Versions section
---
###
Showing the first part of this file.
The official skills marketplace for Agents Inc. 150+ skills covering everything from React and Prisma to Redis, ElevenLabs, and infrastructure tooling. Pick the skills that match your stack and install them via Claude Code. Need more control?
Repo: agents-inc/skills
Other skills on agents-inc-skills.
- /ai-infrastructure-huggingface-inference
Hugging Face Inference SDK patterns for TypeScript/Node.js — InferenceClient setup, chat completion, text generation, streaming, embeddings, image generation, audio transcription, translation, summarization, and Inference Endpoints
Open skill - /ai-infrastructure-litellm
LiteLLM proxy server setup, TypeScript client patterns via OpenAI SDK, model routing, fallbacks, load balancing, spend tracking, virtual keys, and production deployment
Open skill - /ai-infrastructure-modal
Serverless GPU compute platform for AI model deployment — web endpoints, GPU functions, model serving, and TypeScript client patterns
Open skill - /ai-infrastructure-ollama
Local LLM inference with the Ollama JavaScript client -- chat, streaming, tool calling, vision, embeddings, structured output, model management, and OpenAI-compatible endpoint
Open skill - /ai-infrastructure-replicate
Replicate SDK patterns for TypeScript/Node.js -- client setup, predictions, streaming, webhooks, file handling, model versioning, deployments, and training
Open skill - /ai-infrastructure-together-ai
Together AI SDK patterns for TypeScript — client setup, chat completions, streaming, structured output, function calling, embeddings, image generation, fine-tuning, and OpenAI-compatible endpoints
Open skill

