Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

expo-deployment展会部署

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

303

周安装

13

GitHub Stars

公开资料未说明

下载量

106
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:expo-deployment(展会部署)
来源仓库:https://github.com/5dlabs/cto
仓库路径:skills/expo-deployment
安装命令:
npx skills add 5dlabs/cto --skill "expo-deployment"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add 5dlabs/cto --skill "expo-deployment"

简介

expo-deployment 用于前端页面与组件开发支持。

  • 适用于 React、Next.js、Vue 等框架的 UI 实现场景。
  • 通过 npx skills add 5dlabs/cto --skill "expo-deployment" 安装,建议遵循现有设计系统。
  • 使用前需确认路由配置与构建脚本兼容性。
  • 应配合本地预览验证布局与交互效果。

SKILL.md

Expo Deployment

Deploy Expo applications across all platforms using EAS (Expo Application Services). Based on official Expo skills.

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

Development Builds

# iOS development (includes dev tools)
npx eas-cli@latest build -p ios --profile development

# Android development
npx eas-cli@latest build -p android --profile development

# iOS Simulator build
npx eas-cli@latest build -p ios --profile development --local

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

EAS Configuration

Standard eas.json for production deployments:

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

Web Deployment

Deploy web apps using EAS Hosting:

# Export web build
npx expo export -p web

# Deploy to production
npx eas-cli@latest deploy --prod

# Deploy PR preview
npx eas-cli@latest deploy

OTA Updates (EAS Update)

Push JavaScript updates without app store review:

# Create an update for production branch
eas update --branch production --message "Bug fix"

# Create an update for all platforms
eas update --branch preview --message "New feature"

# Roll back to previous update
eas update:rollback --branch production

Configure Runtime Version

In app.json:

{
  "expo": {
    "runtimeVersion": {
      "policy": "appVersion"
    },
    "updates": {
      "url": "https://u.expo.dev/your-project-id"
    }
  }
}

iOS Specific

TestFlight Submission

# Quick TestFlight submission
npx testflight

# Or manually
npx eas-cli@latest build -p ios --profile production
npx eas-cli@latest submit -p ios --profile production

Configure Apple Credentials

# Interactive credential setup
eas credentials

# Configure App Store Connect
eas credentials:configure --platform ios

App Store Metadata

Configure in store.config.json or use EAS Metadata:

# Push metadata to App Store Connect
eas metadata:push

# Pull current metadata
eas metadata:pull

Android Specific

Play Store Submission

# Build and submit to internal track
npx eas-cli@latest build -p android --profile production --submit

# Submit existing build
npx eas-cli@latest submit -p android --latest

Track Progression

  1. internal - Internal testing (up to 100 testers)
  2. alpha - Closed testing
  3. beta - Open testing
  4. production - Full release
{
  "submit": {
    "production": {
      "android": {
        "track": "internal",
        "releaseStatus": "completed"
      }
    }
  }
}

Service Account Setup

  1. Create service account in Google Cloud Console
  2. Grant "Service Account User" role
  3. Enable Google Play Android Developer API
  4. Download JSON key
  5. Add service account to Play Console with release permissions

CI/CD Workflows

EAS Workflows

Create .eas/workflows/release.yml:

name: Release

on:
  push:
    branches: [main]

jobs:
  build-ios:
    type: build
    params:
      platform: ios
      profile: production

  submit-ios:
    type: submit
    needs: [build-ios]
    params:
      platform: ios
      profile: production

  build-android:
    type: build
    params:
      platform: android
      profile: production

  submit-android:
    type: submit
    needs: [build-android]
    params:
      platform: android
      profile: production

PR Preview Workflow

name: PR Preview

on:
  pull_request:

jobs:
  deploy-preview:
    type: deploy
    params:
      platform: web

  build-preview:
    type: build
    params:
      platform: ios
      profile: preview

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
eas build:version:set -p android --version-code 42

# Sync versions between platforms
eas build:version:sync

Monitoring

# List recent builds
eas build:list

# Check build status
eas build:view

# View submission status
eas submit:list

# View update deployments
eas update:list

Environment Variables

EAS Secrets

# Add a secret
eas secret:create --name API_KEY --value "your-api-key"

# List secrets
eas secret:list

# Delete a secret
eas secret:delete API_KEY

Per-Environment Configuration

# Pull environment variables
eas env:pull --environment production

# Push environment variables
eas env:push --environment production

Troubleshooting

Build Issues

# Clear build cache
eas build --clear-cache

# View build logs
eas build:view --logs

# Check project configuration
npx expo-doctor

Submission Issues

# Verify credentials
eas credentials

# Check submission status
eas submit:list

# View submission details
eas submit:view

Common Errors

ErrorSolution
"Missing Apple credentials"Run eas credentials
"Version already exists"Increment version in app.json or use autoIncrement
"Service account not found"Verify serviceAccountKeyPath in eas.json
"Build queue full"Wait or upgrade EAS plan for priority builds

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.73%
按下载量换算32

windsurf

22.47%
按下载量换算24

trae

15.44%
按下载量换算16

OpenCode

11.37%
按下载量换算12

Codex

7.61%
按下载量换算8

Antigravity

2.92%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills