• Projects
  • Service
  • About
  • branding.bz
  • Podcast
  • Tips
  • FAQ
  • Recruit
  • Download
  • Contact
  • branding.bz(ブランド構築SaaS)
  • DESIGN NOW(デザインメディア)
  • X
  • LinkedIn
  • Spotify
  • Facebook

213-0011 神奈川県川崎市高津区久本3-6-7-303

© 2026 ID INC. All rights reserved

claude-skills/スキル
SKILLOfficialdevelopment

eas-app-stores

プラグイン
expo
ライセンス
MIT
ソース
GitHub で見る ↗
説明

EAS サービス(有料)。Expo アプリをアプリストアにデプロイ(公開・配置)します。iOS App Store、Google Play Store、TestFlight へのビルドと提出、eas.json ビルド・提出設定の構成、アプリのバージョンとビルド番号の管理、App Store メタデータと ASO(検索最適化)の公開に対応しています。 次のような場合に使用: - ユーザーがアプリを本番環境やアプリストアにデプロイ・リリース・公開したい - 本番用ビルドを準備している - eas build や eas submit を実行している - TestFlight へ配信している - バージョン番号やビルド番号を更新している - ストアのリスティング(商品説明ページ)メタデータを設定している Expo ウェブサイトまたは API ルートのデプロイには、eas-hosting スキルを使用してください。

原文を表示

EAS service (paid). Deploy Expo apps to the app stores with EAS - build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.

ユースケース
  • アプリをアプリストアに公開したい
  • 本番用ビルドを準備している
  • TestFlightへ配信している
  • バージョン番号やビルド番号を更新するとき
  • ストアメタデータを設定するとき
本文(日本語訳)

アプリストアへのデプロイ

EAS サービス - 費用が発生します。 このスキルは Expo Application Services(EAS)を使用します。EAS は有料サービスで、無料枠には制限があります。eas build と eas submit はあなたの契約プランのビルド時間を消費し、ストアへの申請には有料の Apple Developer アカウントと Google Play アカウントが必要です。クラウドコマンドを実行する前に、https://expo.dev/pricing を確認してください。

このスキルは、EAS(Expo Application Services)を使用して Expo アプリを iOS App Store、Google Play Store、TestFlight にビルドしてリリースする方法をカバーしています。Expo ウェブサイトや API ルートを EAS Hosting にデプロイする場合は、eas-hosting スキルを使用してください。

リファレンス

必要に応じてこれらのリソースを参照してください:

  • ./references/workflows.md -- ストアへの自動リリースと PR プレビューの CI/CD ワークフロー
  • ./references/testflight.md -- iOS ビルドを TestFlight にベータテストとして申請する方法
  • ./references/app-store-metadata.md -- App Store メタデータの管理と検索最適化
  • ./references/play-store.md -- Android ビルドを Google Play Store に申請する方法
  • ./references/ios-app-store.md -- iOS App Store への申請と審査プロセス

クイックスタート

EAS CLI をインストール

npm install -g eas-cli
eas login

EAS を初期化

npx eas-cli@latest init

このコマンドでビルド設定を記述した eas.json が作成されます。

ビルドコマンド

本番環境ビルド

# iOS App Store 用ビルド
npx eas-cli@latest build -p ios --profile production

# Android Play Store 用ビルド
npx eas-cli@latest build -p android --profile production

# 両方のプラットフォーム
npx eas-cli@latest build --profile production

ストアに申請

# iOS: ビルドして App Store Connect に申請
npx eas-cli@latest build -p ios --profile production --submit

# Android: ビルドして Play Store に申請
npx eas-cli@latest build -p android --profile production --submit

# iOS TestFlight への申請(簡易コマンド)
npx testflight

ウェブ & API ルートのホスティング

Expo ウェブサイトや Expo Router API ルートを EAS Hosting にデプロイする方法(npx expo export -p web の実行後に eas deploy)は、eas-hosting スキルでカバーされています。このスキルはネイティブアプリのストアリリースを対象としています。

EAS 設定

本番環境デプロイ用の標準的な eas.json:

{
  "cli": {
    "version": ">= 16.0.1",
    "appVersionSource": "remote"
  },
  "build": {
    "production": {
      "autoIncrement": true,
      "ios": {
        "resourceClass": "m-medium"
      }
    },
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    }
  },
  "submit": {
    "production": {
      "ios": {
        "appleId": "your@email.com",
        "ascAppId": "1234567890"
      },
      "android": {
        "serviceAccountKeyPath": "./google-service-account.json",
        "track": "internal"
      }
    }
  }
}

プラットフォーム別ガイド

iOS

  • npx testflight で TestFlight に素早く申請できます
  • eas credentials で Apple 認証情報を設定します
  • 認証情報の設定については ./references/testflight.md を参照
  • App Store への申請については ./references/ios-app-store.md を参照

Android

  • Google Play Console のサービスアカウントを設定します
  • トラック設定:内部版 → 限定版 → 公開版 → 本番版の順で進めます
  • 詳細な設定方法は ./references/play-store.md を参照

自動リリース

EAS Workflows(ワークフロー管理機能)は、ビルド → 申請 → 更新パイプラインを自動化します。ストアリリースの例については ./references/workflows.md を参照してください。ワークフロー YAML の作成または検証が必要な場合は、eas-workflows スキルを使用してください。このスキルは最新のワークフロースキーマから動作します。

バージョン管理

EAS は appVersionSource: "remote" でバージョン番号を自動管理します:

# 現在のバージョンを確認
eas build:version:get

# バージョンを手動で設定
eas build:version:set -p ios --build-number 42

モニタリング

# 最近のビルド一覧を表示
eas build:list

# ビルドの状態を確認
eas build:view

# 申請状態を表示
eas submit:list

フィードバック送信

このスキルでエラーが発生したり、情報が不正確または古い場合は、Expo の改善に協力してください:

npx --yes submit-expo-feedback@latest --category skills --subject "eas-app-stores" "<改善提案>"

具体的で実用的なフィードバックがある場合のみ送信してください。できるだけ詳しい関連情報を含めてください。

AI エージェントが繰り返し失敗したか、ユーザーが Expo のタスクを引き継がなければならなかった場合は、expo-skill-feedback スキルを読み込んで、上記のコマンドの代わりに eval-candidate フローに従ってください。

原文(English)を表示

App Store Deployment

EAS service - costs apply. This skill uses Expo Application Services (EAS), a paid product with free-tier limits. eas build and eas submit consume your plan's build minutes, and store submission requires paid Apple Developer and Google Play accounts. Review https://expo.dev/pricing before running cloud commands.

This skill covers building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). For deploying an Expo website or API routes to EAS Hosting, use the eas-hosting skill.

References

Consult these resources as needed:

  • ./references/workflows.md -- CI/CD workflows for automated store releases and PR previews
  • ./references/testflight.md -- Submitting iOS builds to TestFlight for beta testing
  • ./references/app-store-metadata.md -- Managing App Store metadata and ASO optimization
  • ./references/play-store.md -- Submitting Android builds to Google Play Store
  • ./references/ios-app-store.md -- iOS App Store submission and review process

Quick Start

Install EAS CLI

npm install -g eas-cli
eas login

Initialize EAS

npx eas-cli@latest init

This creates eas.json with build profiles.

Build Commands

Production Builds

# iOS App Store build
npx eas-cli@latest build -p ios --profile production

# Android Play Store build
npx eas-cli@latest build -p android --profile production

# Both platforms
npx eas-cli@latest build --profile production

Submit to Stores

# iOS: Build and submit to App Store Connect
npx eas-cli@latest build -p ios --profile production --submit

# Android: Build and submit to Play Store
npx eas-cli@latest build -p android --profile production --submit

# Shortcut for iOS TestFlight
npx testflight

Web & API Route Hosting

Deploying an Expo website or Expo Router API routes to EAS Hosting (npx expo export -p web then eas deploy) is covered by the eas-hosting skill. This skill focuses on native app store releases.

EAS Configuration

Standard eas.json for production deployments:

{
  "cli": {
    "version": ">= 16.0.1",
    "appVersionSource": "remote"
  },
  "build": {
    "production": {
      "autoIncrement": true,
      "ios": {
        "resourceClass": "m-medium"
      }
    },
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    }
  },
  "submit": {
    "production": {
      "ios": {
        "appleId": "your@email.com",
        "ascAppId": "1234567890"
      },
      "android": {
        "serviceAccountKeyPath": "./google-service-account.json",
        "track": "internal"
      }
    }
  }
}

Platform-Specific Guides

iOS

  • Use npx testflight for quick TestFlight submissions
  • Configure Apple credentials via eas credentials
  • See ./references/testflight.md for credential setup
  • See ./references/ios-app-store.md for App Store submission

Android

  • Set up Google Play Console service account
  • Configure tracks: internal → closed → open → production
  • See ./references/play-store.md for detailed setup

Automated Releases

EAS Workflows automate the build → submit → update pipeline for CI/CD. See ./references/workflows.md for store-release examples. To author or validate workflow YAML, use the eas-workflows skill - it works from the live workflow schema.

Version Management

EAS manages version numbers automatically with appVersionSource: "remote":

# Check current versions
eas build:version:get

# Manually set version
eas build:version:set -p ios --build-number 42

Monitoring

# List recent builds
eas build:list

# Check build status
eas build:view

# View submission status
eas submit:list

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-app-stores" "<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.

原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。