Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

ionic-appflow-migration离子应用程序流迁移

Agent Skill

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

总安装

2,002

周安装

81

GitHub Stars

30

下载量

629
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cap-go/capgo-skills --skill ionic-appflow-migration

简介

ionic-appflow-migration 提供从 Ionic Appflow 迁移项目的完整方案,适合移除云服务依赖并转向本地自动化。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中检索迁移工具和脚本模板。
  • 包含 Appflow 相关包检测、Live Updates 替换和部署流程重构指导。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Ionic Appflow Migration

Migrate an existing Ionic or Capacitor project away from Ionic Appflow.

When to Use This Skill

  • User is moving off Ionic Appflow
  • The project uses Appflow Live Updates, cloud builds, or store deployment
  • The repository still references ionic appflow, @capacitor/live-updates, or cordova-plugin-ionic

Live Project Snapshot

Detected Appflow-related packages and scripts:!node -e "const fs=require('fs');if(!fs.existsSync('package.json'))process.exit(0);const pkg=JSON.parse(fs.readFileSync('package.json','utf8'));const out=[];for(const section of ['dependencies','devDependencies']){for(const [name,version] of Object.entries(pkg[section]||{})){if(name==='@capacitor/live-updates'||name==='cordova-plugin-ionic'||name.includes('appflow'))out.push(section+'.'+name+'='+version)}}for(const [name,cmd] of Object.entries(pkg.scripts||{})){if(/appflow|ionic cloud|ionic package|live-updates/i.test(cmd))out.push('scripts.'+name+'='+cmd)}console.log(out.join('\n'))"

Possible Appflow config and workflow paths:!find. -maxdepth 4 \(-name '.io-config.json' -o -name 'ionic.config.json' -o -name 'capacitor.config.json' -o -name 'capacitor.config.ts' -o -name 'capacitor.config.js' -o -path './.github/workflows' \)

Migration Strategy

Split the Appflow migration by feature instead of treating it as a single package swap.

  • Live Updates -> capgo-live-updates
  • Native cloud builds -> capacitor-ci-cd
  • Store publishing -> capacitor-app-store

Use this skill to detect what Appflow is doing today, then hand off each feature area to the right skill.

Procedures

Step 1: Detect Appflow Usage

Start from the injected snapshot above, then search more broadly if the migration surface is still unclear.

Search the repository for:

  • ionic appflow
  • @capacitor/live-updates
  • cordova-plugin-ionic
  • dashboard.ionicframework.com
  • appflow.ionic.io

Record whether the project currently uses:

  • live updates
  • cloud/native builds
  • app store deployment automation

Step 2: Migrate Live Updates

If Appflow live updates are in use:

  1. Remove @capacitor/live-updates or cordova-plugin-ionic.
  2. Install and configure Capgo using the capgo-live-updates skill.
  3. Map Appflow channels and rollout behavior onto Capgo channels.
  4. Verify that notifyAppReady() or the equivalent Capgo startup flow is wired correctly.

Do not delete Appflow configuration until the Capgo update path is validated.

Step 3: Replace Cloud Build Automation

If Appflow was building the app in the cloud:

  1. Inspect the existing CI/CD workflow for ionic appflow build.
  2. Replace it with repository-owned automation using the capacitor-ci-cd skill.
  3. Preserve signing inputs, environment variables, and platform-specific build arguments.

Treat Appflow build settings as migration input, not as a runtime dependency.

Step 4: Replace Store Publishing

If Appflow handled TestFlight or Google Play publishing:

  1. Inspect the current deployment flow.
  2. Move that workflow to the repository's publishing pipeline using the capacitor-app-store skill.
  3. Keep bundle identifiers, track selection, and credential handling unchanged unless the user wants a new release process.

Step 5: Clean Up

After each migrated feature is verified:

  • remove Appflow packages and scripts
  • remove obsolete Appflow configuration
  • remove stale CI secrets that are no longer needed

Error Handling

  • For live update migrations, validate rollback behavior before deleting the old Appflow setup.
  • For build migrations, preserve the existing signing path first and only simplify later.
  • For publishing migrations, move one destination at a time so App Store and Play failures stay isolated.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.29%
按下载量换算235

Claude

27.9%
按下载量换算175

Cursor

18.94%
按下载量换算119

Gemini CLI

8.6%
按下载量换算54

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills