
Capacitor App Upgrade V6 To V7
- 364 installs
- 57 repo stars
- Updated July 13, 2026
- cap-go/capgo-skills
capacitor-app-upgrade-v6-to-v7 is a Claude Code skill that guides Capacitor app migration from v6 to v7 for developers who must update core packages, Gradle/Xcode settings, plugin APIs, and deprecated configuration.
About
capacitor-app-upgrade-v6-to-v7 is a mobile migration skill in Cap-go/capgo-skills, a collection of 49 Capacitor agent skills. It follows a 6-step procedure: snapshot @capacitor packages from package.json, bump to v7-compatible ranges, review v6-to-v7 migration notes, run npm install, npx cap sync, and verify iOS and Android builds. The skill targets Gradle, Java, Xcode deployment target, and plugin API removals that break compile or runtime. Developers reach for it when @capacitor/core is still on v6 and a coordinated v7 upgrade is required across web and native layers.
- Capacitor v6 to v7 package and CLI migration
- Native Android Gradle and iOS Xcode updates
- Deprecated API replacements and config changes
- Post-upgrade smoke tests on both platforms
Capacitor App Upgrade V6 To V7 by the numbers
- 364 all-time installs (skills.sh)
- Ranked #347 of 1,039 Mobile Development skills by installs in the Skillselion catalog
- Data as of Aug 1, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cap-go/capgo-skills --skill capacitor-app-upgrade-v6-to-v7Add your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 364 |
|---|---|
| repo stars | ★ 57 |
| Last updated | July 13, 2026 |
| Repository | cap-go/capgo-skills ↗ |
How do you upgrade a Capacitor app from v6 to v7?
Upgrade Capacitor apps from v6 to v7 with guided changes to core packages, Gradle/Xcode settings, plugin APIs, and deprecated configuration removals.
Who is it for?
Mobile developers on Capacitor v6 who need a structured v7 migration across package.json and native project files.
Skip if: Greenfield Capacitor installs, plugin-only bumps, or teams already fully on Capacitor v7.
When should I use this skill?
A developer asks to upgrade Capacitor from v6 to v7 or hits v7 breaking changes in Gradle, Xcode, or plugins.
What you get
Capacitor v7 project with updated @capacitor packages, synced Gradle/Xcode projects, and removed deprecated config.
- Updated @capacitor package versions
- Synced native Gradle and Xcode projects
By the numbers
- 6-step upgrade procedure from package snapshot through native build verification
- Part of Cap-go/capgo-skills collection of 49 Capacitor agent skills
Files
Capacitor App Upgrade v6 to v7
Upgrade a Capacitor app from version 6 to version 7.
When to Use This Skill
- User says the app is on Capacitor 6 and must move to v7
- User wants the exact v6 to v7 migration path
- User needs v7-specific native and package updates
Live Project Snapshot
Current Capacitor packages from package.json: !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.startsWith('@capacitor/'))out.push(section+'.'+name+'='+version)}}console.log(out.sort().join('\n'))"
Procedure
1. Start from the injected package snapshot and confirm the current @capacitor/core version. 2. Update all @capacitor/* packages to the v7-compatible range. 3. Review the v6 to v7 migration notes before editing native files. 4. Run npm install. 5. Sync with npx cap sync. 6. Verify the iOS and Android builds.
Error Handling
- If the automated migration misses a package, update it manually before syncing again.
- If iOS fails, check the deployment target and Xcode compatibility for Capacitor 7.
- If Android fails, check the Gradle and Java requirements for Capacitor 7.
{
"version": "1.0.0",
"organization": "Capgo",
"date": "March 2026",
"abstract": "Version-specific guide for upgrading a Capacitor app from v6 to v7.",
"triggers": [
"capacitor 6 to 7",
"upgrade app to capacitor 7",
"v6 to v7 migration",
"capacitor app upgrade v7"
],
"references": [
"https://capacitorjs.com/docs"
]
}
Related skills
How it compares
Pick capacitor-app-upgrade-v6-to-v7 for the exact v6-to-v7 path instead of the broader capacitor-app-upgrades skill covering all major jumps.
FAQ
What does capacitor-app-upgrade-v6-to-v7 change?
capacitor-app-upgrade-v6-to-v7 updates all @capacitor/* packages to v7-compatible ranges, applies v6-to-v7 migration notes to native files, runs npm install and npx cap sync, then verifies iOS and Android builds compile.
When should I not use capacitor-app-upgrade-v6-to-v7?
capacitor-app-upgrade-v6-to-v7 is only for Capacitor apps moving from v6 to v7. Use capacitor-app-upgrades or other version-specific skills for v5-to-v6, v7-to-v8, or plugin-only upgrades.