Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

ionic-enterprise-sdk-migrationionic enterprise SDK 迁移

Agent Skill

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

总安装

1,976

周安装

84

GitHub Stars

19

下载量

692
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/capawesome-team/skills --skill ionic-enterprise-sdk-migration

简介

用于将废弃的 Ionic Enterprise SDK 迁移到 Capawesome 替代方案。

  • 适合 Auth Connect、Identity Vault 等插件替换场景。
  • 提供插件映射表和分步迁移指南。ionic-enterprise-sdk-migration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需项目使用旧版 SDK 并具备新插件兼容性。
  • 安装前建议确认权限范围,避免触发文件修改操作。

SKILL.md

Ionic Enterprise SDK Migration

Migrate Capacitor apps from discontinued Ionic Enterprise SDK plugins to Capawesome alternatives.

Plugin Mapping

Ionic Enterprise PluginPackageCapawesome ReplacementPackage(s)
Auth Connect@ionic-enterprise/authOAuth@capawesome-team/capacitor-oauth
Identity Vault@ionic-enterprise/identity-vaultBiometrics + Secure Preferences@capawesome-team/capacitor-biometrics + @capawesome-team/capacitor-secure-preferences
Secure Storage (key-value)@ionic-enterprise/secure-storageSecure Preferences@capawesome-team/capacitor-secure-preferences
Secure Storage (SQLite)@ionic-enterprise/secure-storageSQLite@capawesome-team/capacitor-sqlite

All Capawesome replacement plugins require a Capawesome Insiders license.

Prerequisites

  1. Capacitor 6, 7, or 8 app.
  2. Node.js and npm installed.
  3. A Capawesome Insiders license key.

Agent Behavior

  • Auto-detect dependencies. Scan package.json for Ionic Enterprise packages before asking the user which plugins to migrate.
  • One plugin at a time. Complete the full migration for one plugin before starting the next.
  • Use the capacitor-plugins skill for installation. Delegate plugin installation and platform configuration to the capacitor-plugins skill. Only handle migration-specific steps (uninstall, code replacement) in this skill.
  • Preserve existing behavior. When replacing API calls, maintain the same functional behavior (e.g., same scopes, same stored keys, same database schema).

Procedures

Step 1: Detect Ionic Enterprise Dependencies

Read package.json and check for these packages:

  • @ionic-enterprise/auth → Auth Connect
  • @ionic-enterprise/identity-vault → Identity Vault
  • @ionic-enterprise/secure-storage → Secure Storage

If none are found, inform the user that no Ionic Enterprise plugins were detected.

If multiple are found, list them and ask the user which to migrate first, or migrate all sequentially.

Step 2: Set Up the Capawesome npm Registry

Check if the @capawesome-team npm registry is already configured:

npm config get @capawesome-team:registry

If not configured, guide the user through setup:

npm config set @capawesome-team:registry https://npm.registry.capawesome.io
npm config set //npm.registry.capawesome.io/:_authToken <YOUR_LICENSE_KEY>

Ask the user for their license key if needed. Wait for confirmation before continuing.

Step 3: Migrate Each Plugin

For each detected Ionic Enterprise plugin, read the corresponding reference file and follow the migration steps:

  • Auth Connect → Read references/auth-connect-migration.md
  • Identity Vault → Read references/identity-vault-migration.md
  • Secure Storage → Read references/secure-storage-migration.md

Each reference file contains:

  1. Feature mapping table (Ionic API → Capawesome API)
  2. Key differences to be aware of
  3. Step-by-step code replacement with before/after examples

For plugin installation and platform-specific configuration (Android permissions, iOS plist entries, Proguard rules, etc.), use the capacitor-plugins skill.

Step 4: Search for Remaining Ionic Enterprise Imports

After completing all migrations, search the codebase for any remaining Ionic Enterprise imports:

grep -r "@ionic-enterprise" --include="*.ts" --include="*.tsx" --include="*.js" --include="*.jsx"

If any are found, replace them with the corresponding Capawesome imports.

Step 5: Clean Up and Verify

  1. Remove all Ionic Enterprise packages from package.json:
npm uninstall @ionic-enterprise/auth @ionic-enterprise/identity-vault @ionic-enterprise/secure-storage

Only uninstall packages that were actually installed.

  1. Sync the project:
npx cap sync
  1. Verify the project builds successfully on all platforms.

Error Handling

  • Capawesome registry not configured: If npm install fails with a 404 or authentication error for @capawesome-team/* packages, verify the npm registry is configured correctly (Step 2).
  • Missing Capawesome Insiders license: All replacement plugins require a Capawesome Insiders license. Direct the user to capawesome.io/insiders to obtain one.
  • Identity Vault session management: Identity Vault's built-in auto-lock, timeout, and lock/unlock events have no direct equivalent. These must be rebuilt using application logic. See the session management section in references/identity-vault-migration.md.
  • Secure Storage encryption: Ionic Secure Storage has built-in encryption. Capawesome SQLite encryption requires additional platform configuration (SQLCipher). If the user needs database encryption, guide them through the SQLite encryption setup in the capacitor-plugins skill reference.
  • Web platform limitations: Capawesome Secure Preferences stores values unencrypted in localStorage on the web. This is for development only and should not be used in production.

Related Skills

  • capacitor-plugins — Referenced throughout this skill for plugin installation and platform configuration.
  • ionic-appflow-migration — If the project also uses Ionic Appflow (Live Updates, Native Builds, App Store Publishing), use this skill to migrate to Capawesome Cloud.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.46%
按下载量换算252

Claude

28.42%
按下载量换算197

Cursor

20.97%
按下载量换算145

Gemini CLI

9.06%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills