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

capacitor-plugin-spm-support电容器插件 spm 支持

Agent Skill

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

总安装

2,493

周安装

106

GitHub Stars

19

下载量

873
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/capawesome-team/skills --skill capacitor-plugin-spm-support

简介

用于为 Capacitor 插件添加 Swift Package Manager 支持。

  • 适合替换 Objective-C 桥接并添加 Package.swift 清单。
  • 需项目为插件且具备 Swift 5.9+ 和 Xcode 15+。
  • 可自动提取包名并生成兼容的 Swift 协议实现。
  • 安装前建议确认权限范围,避免触发文件写入操作。

SKILL.md

Add SPM Support to a Capacitor Plugin

Add Swift Package Manager (SPM) support to an existing Capacitor plugin by replacing the Objective-C bridge with the CAPBridgedPlugin Swift protocol and adding a Package.swift manifest.

Prerequisites

RequirementVersion
Capacitor6+
Swift5.9+
Xcode15+

The project must be a Capacitor plugin (not an app project). The plugin must have an existing iOS implementation with Swift source files in ios/Plugin/.

Procedures

Step 1: Gather Plugin Information

  1. Read package.json in the plugin root. Extract:

- The plugin package name (e.g., @capawesome/capacitor-app-review). - The existing files array entries. - The existing scripts entries.

  1. Read the .podspec file in the plugin root. Extract:

- The pod name (the Pod::Spec.new argument, e.g., CapawesomeCapacitorAppReview). This becomes the SPM package name. - The iOS deployment target from s.ios.deployment_target (e.g., '13.0'). Extract the major version number (e.g., 13). This becomes the SPM iOS version. - All third-party CocoaPods dependencies — any s.dependency or spec.dependency entries that are not Capacitor or CapacitorCordova. Record each dependency name and version constraint.

  1. Identify the plugin Swift file in ios/Plugin/. It contains a class extending CAPPlugin with @objc(<PluginClassName>). Extract:

- The plugin class name (e.g., AppReviewPlugin). - The JavaScript name from the Objective-C .m file's CAP_PLUGIN macro first string argument (e.g., AppReview). - All plugin methods from CAP_PLUGIN_METHOD macro calls in the .m file, noting each method's name and return type (e.g., CAPPluginReturnPromise).

  1. Identify the Objective-C bridge files in ios/Plugin/:

- <PluginClassName>.h (header file) - <PluginClassName>.m (implementation file with CAP_PLUGIN macro)

  1. Read the Capacitor peer dependency version from package.json (peerDependencies["@capacitor/core"]). Determine the major version (e.g., 6). This is the Capacitor major version.

Step 2: Resolve CocoaPods Dependencies for SPM

Skip this step if no third-party CocoaPods dependencies were found in Step 1.

For each third-party CocoaPods dependency, an equivalent SPM-compatible package is needed. Present the list of dependencies to the user and ask whether they can provide the SPM package URLs themselves, or whether the agent should search the web for SPM equivalents.

If the user provides SPM package URLs: Record them and proceed to Step 3.

If the user requests a web search: For each CocoaPods dependency:

  1. Search the web for "<dependency_name>" Swift Package Manager to determine whether the original CocoaPods dependency also supports SPM. Many popular libraries (e.g., Firebase, Alamofire) distribute via both CocoaPods and SPM from the same repository.
  2. If the original library supports SPM, use its Git repository URL. Use the same version as specified in the podspec — convert the CocoaPods version constraint to the SPM equivalent (e.g., ~> 5.0 becomes .upToNextMajor(from: "5.0.0"), = 2.1.0 becomes .exact("2.1.0")).
  3. If the original library does not support SPM, search for "<dependency_name>" SPM alternative to find a replacement package that provides equivalent functionality via SPM. Use a version that is compatible with the version used in the podspec.
  4. If no SPM-compatible alternative exists, inform the user and ask how to proceed.

Record the resolved SPM package URL, version requirement, and product name(s) for each dependency. These will be added to Package.swift in the next step.

Step 3: Create Package.swift

Create Package.swift in the plugin root directory with the following content:

// swift-tools-version: 5.9
import PackageDescription

let package = Package(
    name: "<SPM_PACKAGE_NAME>",
    platforms: [.iOS(.v<SPM_IOS_VERSION>)],
    products: [
        .library(
            name: "<SPM_PACKAGE_NAME>",
            targets: ["<PLUGIN_CLASS_NAME>"])
    ],
    dependencies: [
        .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "<CAPACITOR_MAJOR_VERSION>.0.0")
        // <ADDITIONAL_PACKAGE_DEPENDENCIES>
    ],
    targets: [
        .target(
            name: "<PLUGIN_CLASS_NAME>",
            dependencies: [
                .product(name: "Capacitor", package: "capacitor-swift-pm"),
                .product(name: "Cordova", package: "capacitor-swift-pm")
                // <ADDITIONAL_TARGET_DEPENDENCIES>
            ],
            path: "ios/Plugin"),
        .testTarget(
            name: "<PLUGIN_CLASS_NAME>Tests",
            dependencies: ["<PLUGIN_CLASS_NAME>"],
            path: "ios/PluginTests")
    ]
)

Replace all placeholders:

  • <SPM_IOS_VERSION> — the SPM iOS version from Step 1 (e.g., 13).
  • <SPM_PACKAGE_NAME> — the pod name from Step 1 (e.g., CapawesomeCapacitorAppReview).
  • <PLUGIN_CLASS_NAME> — the plugin class name from Step 1 (e.g., AppReviewPlugin).
  • <CAPACITOR_MAJOR_VERSION> — the Capacitor major version from Step 1 (e.g., 6).
  • <ADDITIONAL_PACKAGE_DEPENDENCIES> — if third-party dependencies were resolved in Step 2, add a .package(url: "<repo_url>", <version_requirement>) entry for each. Remove the comment line if no extra dependencies exist.
  • <ADDITIONAL_TARGET_DEPENDENCIES> — for each package dependency added above, add a corresponding .product(name: "<ProductName>", package: "<package-name>") entry. Remove the comment line if no extra dependencies exist.

Step 4: Update the Swift Plugin Class

Open the plugin Swift file (e.g., ios/Plugin/<PluginClassName>.swift).

  1. Add CAPBridgedPlugin protocol conformance to the class declaration.
  2. Add the three required properties as the first properties in the class body, before any existing properties.

Apply this diff pattern:

 @objc(<PluginClassName>)
-public class <PluginClassName>: CAPPlugin {
+public class <PluginClassName>: CAPPlugin, CAPBridgedPlugin {
+    public let identifier = "<PluginClassName>"
+    public let jsName = "<JS_NAME>"
+    public let pluginMethods: [CAPPluginMethod] = [
+        CAPPluginMethod(name: "<method1>", returnType: CAPPluginReturnPromise),
+        CAPPluginMethod(name: "<method2>", returnType: CAPPluginReturnPromise)
+    ]

Replace:

  • <PluginClassName> — the plugin class name (e.g., AppReviewPlugin).
  • <JS_NAME> — the JavaScript name from the .m file's CAP_PLUGIN macro (e.g., AppReview).
  • The pluginMethods array — list all methods from the .m file's CAP_PLUGIN_METHOD calls, preserving each method's name and return type exactly.

Step 5: Delete Objective-C Bridge Files

Delete the following files from ios/Plugin/:

  • <PluginClassName>.h
  • <PluginClassName>.m

These are no longer needed because the plugin registration is now handled by the CAPBridgedPlugin protocol in Swift.

Step 6: Clean Up the Xcode Project File

Open ios/Plugin.xcodeproj/project.pbxproj and remove all references to the deleted Objective-C files. Specifically, remove lines referencing:

  • <PluginClassName>.h — file references, build phase entries (PBXBuildFile, PBXFileReference, PBXGroup children, PBXHeadersBuildPhase)
  • <PluginClassName>.m — file references, build phase entries (PBXBuildFile, PBXFileReference, PBXGroup children, PBXSourcesBuildPhase)

Search for both filenames in the .pbxproj file and remove every line that references them.

Step 7: Update .gitignore

Open .gitignore in the plugin root. Add the following entries if not already present:

 # iOS files
+Package.resolved
+/.build
+/Packages
+.swiftpm/configuration/registries.json
+.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
+.netrc

Place these entries in the iOS section of the .gitignore file, after any existing iOS-related entries (e.g., Pods, Podfile.lock).

Step 8: Update package.json

Apply two changes to package.json:

  1. Add "Package.swift" to the files array:
     "ios/Plugin/",
-    "<PodName>.podspec"
+    "<PodName>.podspec",
+    "Package.swift"
   ],
  1. Add the ios:spm:install script to the scripts object:
     "ios:pod:install": "cd ios && pod install --repo-update && cd ..",
+    "ios:spm:install": "cd ios && swift package resolve && cd ..",

If the ios:pod:install script does not exist, add the ios:spm:install script after the last existing script entry.

Step 9: Verify

  1. Run npm install in the plugin root to ensure package.json is valid.
  2. Verify the iOS build still succeeds by building the plugin's example or test app.

Error Handling

  • If the .pbxproj file becomes corrupted after removing ObjC references, restore it from version control and carefully re-edit, ensuring only complete lines are removed.
  • If the Swift build fails with CAPBridgedPlugin not found, verify that @capacitor/core is version 6+ and that capacitor-swift-pm branch matches the Capacitor major version.
  • If SPM resolution fails (swift package resolve), verify the Package.swift target paths match the actual directory structure (ios/Plugin for sources, ios/PluginTests for tests).
  • If the plugin has no test target directory (ios/PluginTests), remove the .testTarget block from Package.swift.
  • If the plugin has additional Swift source files beyond the main plugin file, no extra changes are needed — SPM automatically includes all .swift files in the target path.
  • If the .m file uses CAPPluginReturnNone instead of CAPPluginReturnPromise for some methods, preserve the original return type in the pluginMethods array.
  • If a CocoaPods dependency has no SPM equivalent and no alternative can be found, the plugin cannot fully support SPM. Inform the user and suggest they either vendor the dependency source or wait for upstream SPM support.

Related Skills

  • capacitor-plugin-development — For creating new Capacitor plugins from scratch, including scaffolding, native implementation, and publishing.
  • capacitor-plugin-upgrades — For upgrading a Capacitor plugin to a newer major version.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.62%
按下载量换算320

Claude

28.27%
按下载量换算247

Cursor

18.35%
按下载量换算160

Gemini CLI

8.62%
按下载量换算75

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills