정보
이 스킬은 개발자가 EAS Update와 EAS CLI를 사용하여 무선 자바스크립트 업데이트를 구성하고 배포하는 데 도움을 줍니다. OTA 업데이트 설정, 채널에 배포, 업데이트 문제 디버깅, 런타임 버전 및 브랜치 설명에 활용할 수 있습니다. 이 스킬은 업데이트 전달과 문제 해결에 중점을 두며, 채택률이나 충돌 같은 상태 지표는 다루지 않습니다.
빠른 설치
Claude Code
추천npx skills add expo/skills -a claude-code/plugin add https://github.com/expo/skillsgit clone https://github.com/expo/skills.git ~/.claude/skills/eas-updateClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
EAS Update
EAS service - costs apply. EAS Update is available on the Free plan; publishing and delivery use update, bandwidth, and storage allowances, with higher limits on paid plans. See https://expo.dev/pricing.
Use EAS Update to deliver compatible JavaScript, styling, and asset changes to installed apps without submitting a new native binary. Native-code changes still require a new build.
Start with the supported configuration path
Before changing anything, inspect package.json, the Expo app config, eas.json if present, and whether ios/ or android/ are tracked. Use what you find when reviewing the CLI's changes:
- Preserve existing dynamic or platform-specific app configuration.
- If
eas.jsonexists, preserve its profiles and existing channel assignments. The CLI adds a channel matching the profile name only to build profiles that do not already have one. - If
eas.jsonis absent, do not create it by hand. The CLI may direct the user to runeas build:configureseparately. - With tracked native projects, expect the CLI to synchronize the platform's native Update configuration. Without them, expect Continuous Native Generation to apply the native configuration during a later build.
Detect the Expo SDK version before installing packages or interpreting version-specific behavior.
If expo-updates is not installed, install the SDK-compatible version:
npx expo install expo-updates
Configure from the project root:
npx eas-cli@latest update:configure
Use eas update:configure rather than manually inventing updates.url, runtimeVersion, native metadata, or build-profile channels. The command understands EAS project linking, Continuous Native Generation, and projects with committed native directories. Review and explain its resulting diff.
If the command cannot proceed because the project is not linked or the user has not authorized the required remote operation, stop after any independently valid package installation and explain what remains. Do not partially reproduce update:configure by adding a runtime-version policy, config plugin, update URL, or channels by hand.
For dynamic app config, non-EAS builds, or a command that cannot complete automatically, follow the current setup documentation instead of guessing: https://docs.expo.dev/eas-update/getting-started.md.
Keep the model straight
- Build: the installed native app. It contains native code, an embedded update, a platform, a runtime version, and normally a channel fixed at build time.
- Update: a published JavaScript bundle, assets, and metadata for one platform and runtime version.
- Branch: an ordered stream of updates. Its newest compatible update is active.
- Channel: a stable deployment target embedded in builds. On the server, it points to a branch.
- Runtime version: the compatibility boundary between an update and the native code in a build.
A build receives an update only when platform and runtime version match and the build's channel points to the branch containing that update:
installed build (channel: production, runtime: 1.1.1, platform: ios)
-> production channel
-> production branch
-> newest update for runtime 1.1.1 and ios
Channels and branches commonly have the same name, but they are separate objects. eas channel:edit changes a channel's server-side branch mapping for every build on that channel. It does not change an individual installation's embedded channel.
Use this model to make decisions, but explain only the concepts needed for the user's request rather than reciting the entire model every time.
Decide whether an update is compatible
Use an update for changes to JavaScript, styling, and bundled assets that the installed native runtime already supports.
Create a new native build when a change adds or modifies native code or native configuration, including most native-library additions and SDK upgrades. Do not work around a runtime mismatch or imply that publishing can add native capabilities to an existing build. See https://docs.expo.dev/eas-update/runtime-versions.md.
Do not change the project's runtime-version policy as an incidental fix. Explain how the current policy affects compatibility; treat changing it as a separate decision because it changes which installed builds can receive future updates.
Publish deliberately
Check the current CLI help before relying on remembered flags:
npx eas-cli@latest update --help
For the common channel-based flow:
npx eas-cli@latest update \
--channel <channel> \
--message "<message>" \
--environment <environment>
SDK 55 and later require an EAS environment for publishing. Choose the environment intentionally so exported code receives the intended variables.
Publishing changes remote state and can affect installed applications. Before running it, establish the exact project, channel, environment, platforms, runtime version, and message. Publish to production only when the user has explicitly requested or approved it; if the authorization or target is ambiguous, stop before the command and ask. Do not infer a production destination solely from the current Git branch.
Prefer a preview or staging channel for validation. When promoting a tested update, use the documented deployment flow so production receives the same artifact where possible: https://docs.expo.dev/eas-update/deployment.md.
Test according to the build type
Development builds
Preview updates with the development build's Extensions UI, the EAS dashboard, or Expo Orbit. A normal expo-dev-client development build does not behave like a release build's automatic startup update flow.
Preview, TestFlight, and production builds
Release builds normally prioritize startup speed. With the default launch behavior, the app may start its current embedded or cached update while downloading a newly published update in the background. The downloaded update is applied on a later restart.
For manual QA, fully terminate the app rather than backgrounding it, reopen it, allow the update time to download, and, if the change is not visible, fully terminate and reopen it once more. Describe this as up to two cold launches, not a TestFlight-specific ritual:
- One launch can discover and download the update.
- The following launch can run the downloaded update.
Do not automatically change fallbackToCacheTimeout to avoid the second launch. Waiting at startup trades launch latency and reliability for faster update activation. If the app needs an intentional update UX, consider the expo-updates APIs for checking, fetching, and presenting a non-blocking restart action. Use the expo-updates API reference for the project's detected SDK version.
Debug a build that did not update
Check these in order:
- Confirm the update was published to the intended EAS project, channel or branch, platform, and environment.
- Compare the installed build's platform and runtime version with the published update.
- Confirm the build actually contains the expected update URL and channel; app-config changes take effect only in a newly compiled build.
- Inspect the channel-to-branch mapping and the active update on that branch.
- Fully terminate the release build and allow for the normal download-then-apply lifecycle.
- Use the current debugging guide for native logs, export problems, and configuration checks: https://docs.expo.dev/eas-update/debug.md.
Never bypass a compatibility or anti-bricking safeguard merely to make an update appear.
Advanced and adjacent workflows
- Channel surfing: an individual release build can override its
expo-channel-namerequest header to request another compatible channel. This differs from changing the server-side channel-to-branch mapping. Follow https://docs.expo.dev/eas-update/channel-surfing.md and preserve its access-control, persistence, recovery, and compatibility constraints. - Update health: load
eas-update-insightsfor adoption, launch failures, crash rate, payload size, and rollout monitoring after publishing. - Store releases: load
eas-app-storeswhen native changes require a new TestFlight, App Store, or Play Store build.
Official references
- Setup: https://docs.expo.dev/eas-update/getting-started.md
- Concepts and matching: https://docs.expo.dev/eas-update/how-it-works.md
- Deployment: https://docs.expo.dev/eas-update/deployment.md
- Debugging: https://docs.expo.dev/eas-update/debug.md
- Current EAS CLI reference: https://docs.expo.dev/eas/cli.md
Submitting Feedback
If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:
npx --yes submit-expo-feedback@latest --category skills --subject "eas-update" "<actionable feedback>"
Only submit when you have something specific and actionable to report. Include as much relevant context as possible. If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.
GitHub 저장소
자주 묻는 질문
eas-update Skill이란 무엇인가요?
eas-update은(는) expo이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 eas-update 관련 작업을 수행할 수 있게 합니다.
eas-update은(는) 어떻게 설치하나요?
이 페이지의 설치 명령을 사용하세요. eas-update을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.
eas-update은(는) 어떤 카테고리에 속하나요?
eas-update은(는) 메타 카테고리에 속합니다.
eas-update은(는) 무료로 사용할 수 있나요?
네. eas-update은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.
연관 스킬
이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
