Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

mobile-migrate移动迁移

Agent Skill

mobile-migrate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

8

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill mobile-migrate

简介

用于查找、检索和筛选移动迁移相关信息。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库 README 核验具体用法和功能范围。
  • 安装前建议确认权限范围和是否会触发联网操作。
  • 需注意维护状态和执行边界。mobile-migrate 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Mobile Migrate

Main mobile migration skill: add an Expo app to an existing web project while keeping one backend, one auth system, and shared design/logic.

Purpose

Add a mobile app to an existing web project using:

  • Expo (React Native)
  • EAS Build/Submit
  • Shared packages for logic, types, and design tokens

Outcome: apps/web + apps/mobile share packages/shared, ship to TestFlight/internal tracks fast.

Prerequisites

  • Monorepo structure exists. If not, run /monorepo-scaffold first.
  • Node.js 22+ installed.
  • pnpm installed and used as the workspace package manager.
  • Apple Developer and Google Play Console accounts ready for store submission.

10-Step Workflow

1. Prerequisites — Ensure Monorepo Structure

Goal: standard layout before adding mobile.

pwd
pnpm -v
node -v
rg "^packages:" pnpm-workspace.yaml
ls apps packages

If no monorepo, invoke /monorepo-scaffold.

2. Scaffold — Create Expo App in apps/mobile/

Goal: boot a working Expo app inside the monorepo.

pnpm dlx create-expo-app@latest apps/mobile --template
pnpm --filter ./apps/mobile add -D typescript
pnpm --filter ./apps/mobile exec expo --version

Recommend Expo Router:

pnpm --filter ./apps/mobile exec expo install expo-router react-native-safe-area-context react-native-screens

3. Share — Extract Shareable Logic to packages/shared/

Goal: remove duplication; share types, schemas, utilities, and API clients.

mkdir -p packages/shared/src
pnpm add -w -D tsup typescript
pnpm add -w zod

Create minimal package scaffold, then wire workspace deps:

pnpm --filter ./apps/web add @acme/shared@workspace:*
pnpm --filter ./apps/mobile add @acme/shared@workspace:*

4. Design — Set Up NativeWind with Shared Design Tokens

Goal: mobile uses same design language, not a fork.

pnpm --filter ./apps/mobile add nativewind
pnpm --filter ./apps/mobile exec expo install react-native-reanimated react-native-safe-area-context
pnpm --filter ./apps/mobile add -D tailwindcss

Initialize Tailwind config and point it at shared tokens:

pnpm --filter ./apps/mobile exec tailwindcss init

5. Screens — Generate Initial Screens Mirroring Web Structure

Goal: mirror information architecture first, pixel perfection later.

mkdir -p apps/mobile/app
touch apps/mobile/app/_layout.tsx
touch apps/mobile/app/index.tsx

If web uses routes, map them:

rg "app/|pages/" apps/web -S

6. Auth — Integrate Authentication (Clerk SDK for Expo)

Goal: same identity system across platforms.

pnpm --filter ./apps/mobile add @clerk/clerk-expo expo-secure-store
pnpm --filter ./apps/mobile exec expo install expo-auth-session expo-web-browser

Add required plugins to Expo config, then verify:

pnpm --filter ./apps/mobile exec expo config --type public

7. API — Connect to Same Backend (Convex React Native Client)

Goal: mobile hits same backend and data model.

pnpm --filter ./apps/mobile add convex
pnpm --filter ./apps/mobile exec expo install react-native-get-random-values

If backend lives in a workspace package:

pnpm --filter ./apps/mobile add @acme/backend@workspace:*

8. Build — Configure EAS Build Profiles

Goal: deterministic builds for dev, preview, production.

pnpm --filter ./apps/mobile add -D eas-cli
pnpm --filter ./apps/mobile exec eas login
pnpm --filter ./apps/mobile exec eas build:configure

Generate or update apps/mobile/eas.json with profiles:

pnpm --filter ./apps/mobile exec eas build --platform ios --profile development

9. Submit — Generate App Store Assets + Submission Checklist

Goal: unblock store submission early (assets often bottleneck).

pnpm --filter ./apps/mobile exec expo install expo-application
pnpm --filter ./apps/mobile exec expo config --type public
pnpm --filter ./apps/mobile exec eas submit --platform ios --profile production

Also generate a checklist doc:

mkdir -p docs/mobile
touch docs/mobile/submission-checklist.md

10. Verify — Test on Simulators + Ship Test Builds

Goal: prove mobile works end-to-end before polishing.

pnpm --filter ./apps/mobile exec expo start --clear
pnpm --filter ./apps/mobile exec expo run:ios
pnpm --filter ./apps/mobile exec expo run:android
pnpm --filter ./apps/mobile exec eas build --platform all --profile preview

Then distribute:

  • iOS: TestFlight build
  • Android: internal testing track build

Automation vs Manual

What can be automated:

  • Monorepo scaffolding, Expo scaffolding, workspace wiring
  • Shared package extraction and dependency alignment
  • NativeWind setup and design token plumbing
  • EAS configuration, build profiles, preview builds
  • Route/screen scaffolding that mirrors web structure
  • Basic auth and backend client integration wiring

What must be manual (or human-supervised):

  • App naming, bundle identifiers, and store metadata
  • Apple/Google account setup, certificates, legal agreements
  • Final UX decisions, platform-specific flows, accessibility polish
  • Store listings: screenshots, marketing copy, privacy disclosures
  • Submission steps, review responses, release coordination

Verification Strategy (Specific Checks)

Run these checks in order:

  1. Workspace integrity:
pnpm -w install
pnpm -w list --depth 0
  1. Type safety across shared code:
pnpm -w typecheck || pnpm -w exec tsc -b --pretty false
  1. Expo config sanity:
pnpm --filter ./apps/mobile exec expo config --type public
pnpm --filter ./apps/mobile exec expo doctor
  1. Runtime smoke tests:
pnpm --filter ./apps/mobile exec expo start --clear

Validate manually:

  • App launches on iOS simulator.
  • App launches on Android emulator.
  • Auth sign-in works end-to-end.
  • Core read flows hit backend successfully.
  • One write/mutation works.
  • Shared validation/types behave same as web.
  1. Build pipeline smoke tests:
pnpm --filter ./apps/mobile exec eas build --platform ios --profile preview
pnpm --filter ./apps/mobile exec eas build --platform android --profile preview

Common Pitfalls

  • Adding Expo into a non-monorepo or half-monorepo layout.
  • Duplicating logic instead of extracting to packages/shared.
  • Sharing UI components directly instead of sharing tokens + primitives.
  • Web-only dependencies leaking into shared packages.
  • Not aligning TypeScript config paths across apps and packages.
  • Missing native config/plugins for auth, deep links, or secure storage.
  • Treating EAS config as an afterthought; it becomes the release bottleneck.
  • Late discovery of store requirements (privacy, assets, identifiers).
  • Testing only via Expo Go when a dev client or native build is required.

Execution Notes

Heuristics:

  • Extract logic first, then replicate screens.
  • Share schemas, types, and clients; avoid sharing heavy UI.
  • Keep @acme/shared deep, with a small, intention-revealing API.
  • Prefer boring, deterministic build + submission plumbing early.

Definition of done (minimum viable migration):

  • Mobile app boots in simulator.
  • Uses same auth provider.
  • Reads and writes to same backend.
  • Shares core types/validation with web.
  • Produces preview EAS builds for both platforms.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

35.57%
按下载量换算62

Claude

29.7%
按下载量换算52

Cursor

21.19%
按下载量换算37

Gemini CLI

10.67%
按下载量换算19

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills