From capacitor-plugin-dev
Guides upgrading Capacitor plugins from v6 to v7 by updating peer dependencies, reviewing migration notes, editing native iOS/Android files, and syncing example apps. Use for plugins targeting Capacitor 6 needing v7 path.
How this skill is triggered — by the user, by Claude, or both
Slash command
/capacitor-plugin-dev:capacitor-plugin-upgrade-v6-to-v7This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Upgrade a Capacitor plugin from version 6 to version 7.
Upgrade a Capacitor plugin from version 6 to version 7.
Plugin and Capacitor package snapshot:
!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=['package.name='+(pkg.name||''),'package.version='+(pkg.version||'')];for(const section of ['peerDependencies','dependencies','devDependencies']){for(const [name,version] of Object.entries(pkg[section]||{})){if(name.startsWith('@capacitor/'))out.push(section+'.'+name+'='+version)}}console.log(out.join('\n'))"
Example and native project paths:
!find . -maxdepth 3 \( -path './example-app' -o -path './ios' -o -path './android' \)
package.json.npm install.npx claudepluginhub cap-go/capgo-skills --plugin capacitor-plugin-devGuides upgrading Capacitor plugins from v7 to v8: updates peer dependencies, reviews migration notes, edits native iOS/Android code, syncs example apps, and verifies. Use for plugins targeting Capacitor 7.
Upgrades Capacitor apps from v6 to v7 by checking packages, updating @capacitor/* deps, running npm install and npx cap sync, verifying iOS/Android builds. For v6 to v7 migrations only.
Guides migration from Apache Cordova/PhoneGap to Capacitor including plugin equivalents, config updates, platform addition for iOS/Android, and key differences.