skills/capacitor-plugin-spm-support/SKILL.md
Guides the agent through adding Swift Package Manager (SPM) support to an existing Capacitor plugin. Covers creating a Package.swift manifest, replacing Objective-C bridge files with the CAPBridgedPlugin Swift protocol, updating .gitignore for SPM artifacts, cleaning up the Xcode project file, and updating package.json. Do not use for Capacitor app projects, creating new plugins from scratch, or non-Capacitor plugin frameworks.
npx skillsauth add capawesome-team/skills capacitor-plugin-spm-supportInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
| Requirement | Version | | ----------------- | ------- | | Capacitor | 6+ | | Swift | 5.9+ | | Xcode | 15+ |
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/.
package.json in the plugin root. Extract:
@capawesome/capacitor-app-review).files array entries.scripts entries..podspec file in the plugin root. Extract:
Pod::Spec.new argument, e.g., CapawesomeCapacitorAppReview). This becomes the SPM package name.s.ios.deployment_target (e.g., '13.0'). Extract the major version number (e.g., 13). This becomes the SPM iOS version.s.dependency or spec.dependency entries that are not Capacitor or CapacitorCordova. Record each dependency name and version constraint.ios/Plugin/. It contains a class extending CAPPlugin with @objc(<PluginClassName>). Extract:
AppReviewPlugin)..m file's CAP_PLUGIN macro first string argument (e.g., AppReview).CAP_PLUGIN_METHOD macro calls in the .m file, noting each method's name and return type (e.g., CAPPluginReturnPromise).ios/Plugin/:
<PluginClassName>.h (header file)<PluginClassName>.m (implementation file with CAP_PLUGIN macro)package.json (peerDependencies["@capacitor/core"]). Determine the major version (e.g., 6). This is the Capacitor major version.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:
"<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.~> 5.0 becomes .upToNextMajor(from: "5.0.0"), = 2.1.0 becomes .exact("2.1.0"))."<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.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.
Package.swiftCreate 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.Open the plugin Swift file (e.g., ios/Plugin/<PluginClassName>.swift).
CAPBridgedPlugin protocol conformance to the class declaration.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).pluginMethods array — list all methods from the .m file's CAP_PLUGIN_METHOD calls, preserving each method's name and return type exactly.Delete the following files from ios/Plugin/:
<PluginClassName>.h<PluginClassName>.mThese are no longer needed because the plugin registration is now handled by the CAPBridgedPlugin protocol in Swift.
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.
.gitignoreOpen .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).
package.jsonApply two changes to package.json:
"Package.swift" to the files array: "ios/Plugin/",
- "<PodName>.podspec"
+ "<PodName>.podspec",
+ "Package.swift"
],
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.
npm install in the plugin root to ensure package.json is valid..pbxproj file becomes corrupted after removing ObjC references, restore it from version control and carefully re-edit, ensuring only complete lines are removed.CAPBridgedPlugin not found, verify that @capacitor/core is version 6+ and that capacitor-swift-pm branch matches the Capacitor major version.swift package resolve), verify the Package.swift target paths match the actual directory structure (ios/Plugin for sources, ios/PluginTests for tests).ios/PluginTests), remove the .testTarget block from Package.swift..swift files in the target path..m file uses CAPPluginReturnNone instead of CAPPluginReturnPromise for some methods, preserve the original return type in the pluginMethods array.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.tools
A comprehensive starting point for AI agents to work with the Ionic Framework. Covers core concepts, components, CLI, theming, layout, lifecycle, navigation, and framework-specific patterns for Angular, React, and Vue. Pair with the other Ionic skills in this collection for deeper topic-specific guidance like app creation, framework integration, and upgrades.
tools
Guides the agent through setting up and using Capawesome Cloud for Capacitor and Cordova apps. Covers three core workflows: (1) Native Builds — cloud builds for iOS and Android (Capacitor, Cordova, or native projects), signing certificates, environments, Trapeze configuration, and build artifacts; (2) Live Updates — OTA updates via the @capawesome/capacitor-live-update or @capawesome/cordova-live-update plugin, channels, versioning, rollbacks, and code signing; (3) App Store Publishing — automated submissions to Apple App Store (TestFlight) and Google Play Store. Includes CI/CD integration for all workflows. Do not use for non-Capacitor, non-Cordova mobile frameworks such as React Native or Flutter.
tools
Guides the agent through installing, authenticating, configuring, and using the Capawesome CLI (@capawesome/cli). Covers installation, interactive and token-based authentication, project linking via capawesome.config.json, the full command reference (app management, native builds, live updates, certificates, environments, channels, deployments, destinations, devices), CI/CD integration with token auth and JSON output, and diagnostics via the doctor command. Do not use for Capawesome Cloud feature setup (native builds workflow, live updates workflow, app store publishing) — use the capawesome-cloud skill instead.
tools
A comprehensive starting point for AI agents to work with Capacitor. Covers core concepts, CLI, app creation, plugins, framework integration, best practices, storage, security, testing, troubleshooting, upgrading, and Capawesome Cloud (live updates, native builds, app store publishing). Pair with the other Capacitor skills in this collection for deeper topic-specific guidance.