Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →

cap-go/capgo-skills

48 skills23.1k installs2.7k starsGitHub

Install

npx skills add https://github.com/cap-go/capgo-skills

Skills in this repo

1Capacitor Performancecapacitor-performance is a systematic optimization guide for Capacitor hybrid mobile applications. It addresses slow startups, janky animations, memory leaks, and heavy native-bridge traffic with concrete patterns such as lazy-loading @capacitor plugins instead of importing Camera, Filesystem, and Geolocation at startup. Developers reach for this skill when users report a slow app, memory issues, or stuttering UI and they need profiling-backed fixes rather than guesswork. Coverage spans bundle size reduction, rendering performance, memory management, native bridge efficiency, and device profiling workflows.640installs2Capacitor Splash Screencapacitor-splash-screen is a cap-go Capacitor skill guiding installation of @capacitor/splash-screen via npm install and npx cap sync, with capacitor.config.ts configuration for iOS and Android launch screens. The skill covers asset generation, animated splash options, and programmatic control APIs for customizing app startup appearance and debugging splash screen issues. Mobile developers reach for it when launching a new Capacitor app, replacing default splash images, adding animated launch sequences, or troubleshooting splash display on native platforms. The output is a configured splash screen setup synced to both iOS and Android native projects.636installs3Capacitor Best PracticesCapacitor Best Practices is a comprehensive agent skill from cap-go/capgo-skills that encodes guidelines for production-ready Capacitor applications. It covers recommended directory layout, plugin selection and usage, performance optimization, security hardening, and app store submission preparation. Developers invoke it when setting up a new Capacitor project, reviewing existing Capacitor architecture, optimizing runtime performance, or preparing a release candidate for iOS and Android stores. The skill acts as a structured checklist and reference during code review and project scaffolding rather than generating one-off snippets.634installs4Capacitor Push Notificationscapacitor-push-notifications is a Claude Code skill from cap-go/capgo-skills that implements push notifications in Capacitor apps for both iOS and Android. The guide covers installing `@capacitor/push-notifications`, running `npx cap sync`, configuring Firebase Cloud Messaging for Android, setting up Apple Push Notification Service for iOS, and handling foreground and background notification events including rich notifications. Developers reach for capacitor-push-notifications when a Capacitor hybrid app needs reliable device alerts, FCM token registration, or debugging delivery failures across platforms. The skill consolidates platform-specific certificate and plist steps with Capacitor plugin APIs so one JavaScript layer coordinates native push behavior. Use it during mobile build when notifications are a launch requirement rather than an optional later sprint.616installs5Capacitor Pluginscapacitor-plugins is the official Capgo skills guide for picking native functionality in Capacitor and Ionic projects. It walks a decision process starting with official Capacitor packages, then escalates to Capgo or community plugins when official support is missing or too limited for camera, biometrics, payments, and similar device APIs. Developers reach for capacitor-plugins when they ask which plugin handles a native feature or need side-by-side comparisons before adding npm dependencies to an iOS and Android codebase. The skill prevents mismatched plugins and documents ecosystem alternatives so agents recommend accurate packages instead of guessing from outdated blog posts.608installs6Capacitor Securitycapacitor-security is a cap-go/capgo-skills guide for securing Capacitor and Ionic mobile applications with the Capsec scanner. It covers 63+ security rules spanning hardcoded secrets, insecure storage, network misconfigurations, authentication flaws, cryptography issues, and platform-specific vulnerabilities aligned with OWASP mobile guidance. Developers invoke it when hardening apps, preparing CI/CD security gates, or responding to audit findings. Capsec runs zero-config locally or in pipelines and returns actionable remediation guidance rather than generic checklists.605installs7Capacitor Deep Linkingcapacitor-deep-linking is a Capacitor mobile skill from cap-go/capgo-skills covering iOS Universal Links, Android App Links, custom URL schemes, and in-app navigation handling when users open the app from shared or marketing links. The skill compares link types by platform, format, and whether a server-hosted association file is required. Developers reach for capacitor-deep-linking when adding share links, marketing campaign URLs, or OAuth return paths that must land on the correct screen inside a Capacitor shell. It documents platform-specific setup steps, routing patterns, and troubleshooting for links that fail to open the app or drop users on the wrong view.586installs8Capacitor Keyboardcapacitor-keyboard is a skill from cap-go/capgo-skills that documents correct keyboard handling in Capacitor hybrid apps on iOS and Android. It covers installing @capacitor/keyboard with npm and npx cap sync, then using the Keyboard plugin API for show and hide, keyboard event listeners, accessory bar configuration, and scroll adjustments when inputs focus. Developers reach for it when WebView layouts jump, inputs hide behind the keyboard, or accessory toolbars behave inconsistently across platforms. TypeScript examples import { Keyboard } from '@capacitor/keyboard' and demonstrate await Keyboard.show() plus event-driven layout fixes. The skill triggers on keyboard-related bug reports during mobile QA. It assumes an existing Capacitor project rather than greenfield native Swift or Kotlin development. Skip it for pure React Native or Flutter apps that do not use Capacitor's WebView bridge.585installs9Capacitor Offline Firstcapacitor-offline-first is a mobile build skill from cap-go/capgo-skills for offline-first Capacitor architectures on iOS, Android, and web fallbacks. It layers UI, online/offline service modes, a SyncManager, and local storage via @capgo/capacitor-fast-sql KeyValueStore or IndexedDB. `@capacitor/network` listeners trigger `syncPendingChanges()` on reconnect; OfflineRepository tracks `syncStatus` of synced, pending, or conflict with last-write-wins resolution. Service worker examples use Workbox NetworkFirst API caching, CacheFirst images, and queued failed requests persisted locally. Patterns include optimistic UI updates, conflict dialogs, validation before sync, and sync status badges. Fast SQL production setup notes cover iOS localhost networking, Android cleartext exceptions, and optional sql.js web fallback with a dedicated sqlite-to-fast-sql skill for migrations. Developers reach for this skill when field users need Capacitor apps that read and write locally first, then reconcile with REST backends automatically.573installs10Capacitor Testingcapacitor-testing is a cap-go/capgo-skills agent skill that documents complete testing strategies for Capacitor hybrid mobile applications. It covers unit tests, integration tests, E2E tests, native plugin mocking, and CI testing setup using Jest, Vitest, Playwright, Appium, and native testing frameworks. Developers reach for capacitor-testing when they need a testing pyramid for real devices, full user flows, and mocked native bridges. The skill triggers on requests to add tests, choose testing strategies, mock Capacitor plugins, or configure mobile CI pipelines. It targets the ship phase for teams validating Capacitor apps before app store distribution.569installs11Debugging Capacitordebugging-capacitor is a ship-phase debugging skill from cap-go/capgo-skills covering end-to-end Capacitor troubleshooting on iOS and Android. WebView debugging uses Safari Web Inspector on iOS—with `webContentsDebuggingEnabled` required on iOS 16.4+—and Chrome `chrome://inspect` on Android after enabling debug flags in `capacitor.config.ts`. Native debugging paths include Xcode LLDB commands (`po`, `bt`, `step`) and Android Studio Logcat filters. The skill documents console patterns on JS and native sides, common failures like plugin-not-implemented errors, ATS HTTP blocks, cleartext restrictions, permission denials, white screens, and deep link handling with `@capacitor/app`. Performance sections cover `performance.mark`, Instruments Time Profiler, and Android Profiler CPU/memory traces, plus LeakCanary on Android. An 8-item debugging checklist ends with clean rebuild steps (`npx cap sync`, pod install). Developers invoke it when Capacitor apps crash on device, plugins vanish after sync, or API calls fail only in native WebViews.568installs12Capacitor App Storecapacitor-app-store is a Claude Code skill from cap-go/capgo-skills for publishing Capacitor apps to Apple App Store and Google Play Store. It provides a pre-submission checklist covering app icons, splash screens, screenshots, store metadata, review guidelines, and the full submission process for both platforms. The skill also helps with app listing updates and common rejection troubleshooting when store review blocks release. Developers reach for capacitor-app-store when a Capacitor build is feature-complete and ready for production distribution rather than during native plugin development or local debugging.567installs13Safe Area Handlingsafe-area-handling is a Capacitor mobile layout skill from cap-go/capgo-skills covering safe regions on notched iPhones, Dynamic Island devices, home indicators, and Android display cutouts. The guide walks through CSS safe-area-inset variables, JavaScript measurement APIs, and native Capacitor configuration so headers, footers, and fullscreen content avoid system chrome. Developers invoke it when content renders under the notch, home indicator hides controls, or fullscreen layouts clip on modern hardware. The skill targets Capacitor hybrid apps specifically, combining web-view CSS techniques with platform-aware native adjustments for production-ready mobile UI.565installs14Tailwind Capacitortailwind-capacitor is a Capacitor styling skill from cap-go/capgo-skills for integrating Tailwind CSS into hybrid mobile apps. Setup starts with npm install -D tailwindcss postcss autoprefixer followed by npx tailwindcss init -p to generate PostCSS config. The guide covers mobile-first responsive design, minimum touch-target sizing, safe-area inset handling, dark mode theming, and web-view performance optimization specific to Capacitor shells. Developers reach for tailwind-capacitor when they want utility-first styling in a Capacitor project rather than bespoke CSS, especially when notch layouts, touch accessibility, and dark mode must work together on iOS and Android.565installs15Capacitor Accessibilitycapacitor-accessibility is a Capgo agent skill that walks developers through making Capacitor apps inclusive with screen reader labels, semantic HTML, focus management, keyboard navigation, and WCAG-oriented checks. The readme includes a quick checklist covering semantic HTML, alt text, 44x44pt touch targets, 4.5:1 color contrast, focus indicators, screen reader labels, and keyboard navigation. Use it when building or auditing Capacitor iOS or Android apps that must meet accessibility expectations before release. The skill fires on requests about WCAG, VoiceOver, TalkBack, focus traps, or accessible touch targets in hybrid mobile codebases.557installs16Capacitor Mcpcapacitor-mcp is an agent skill from cap-go/capgo-skills that connects coding agents to Capacitor mobile projects through MCP. It surfaces project context, installed Capacitor plugins, configuration files, and CapGo live-update workflows so agents can reason about real mobile app state instead of guessing from partial file snippets. Developers reach for capacitor-mcp when building or debugging Ionic or Capacitor apps and need agents to inspect native bridge setup, plugin versions, or CapGo deployment steps inline. The skill targets hybrid mobile development where JavaScript or TypeScript web code ships inside native iOS and Android shells. It reduces back-and-forth when agents must align code changes with Capacitor config, plugin APIs, and CapGo release mechanics during feature work.540installs17Capacitor Ci Cdcapacitor-ci-cd is a Capgo skill providing a complete CI/CD guide for Capacitor hybrid apps across GitHub Actions and GitLab CI. The skill documents end-to-end workflows: lint and unit tests on Node 20, capsec security scans, web asset builds, macOS iOS archives with CocoaPods and certificate import, Android APK and AAB signing with Gradle, Capgo CLI uploads, and deployments to App Store Connect and Google Play. It includes Fastlane Fastfiles for iOS TestFlight and Android Play Store tracks, GitLab CI stage definitions, semantic-release version bumping, Gradle and CocoaPods caching, and a secrets table covering 10 required credentials such as CERTIFICATE_P12, KEYSTORE_BASE64, CAPGO_TOKEN, and PLAY_SERVICE_ACCOUNT. Developers reach for capacitor-ci-cd when automating Capacitor release pipelines instead of manual Xcode or Android Studio uploads.530installs18Framework To Capacitorframework-to-capacitor is a Capgo agent skill that guides wrapping web framework applications in Capacitor to ship iOS and Android binaries from an existing web codebase. The skill covers configuring native shells, Capacitor plugins, mobile routing adjustments, and platform-specific build pipelines so web apps compile into store-ready mobile packages. Developers reach for it when a React, Vue, Angular, or similar SPA already works in the browser and the next step is App Store or Play Store distribution without a full native rewrite. It focuses on the bridge layer—native project scaffolding, plugin selection, and mobile build commands—rather than greenfield mobile UI design.530installs19Ios Android Logsios-android-logs is a mobile debugging skill from cap-go/capgo-skills that helps developers capture and interpret iOS and Android device logs for Capacitor hybrid apps. The skill guides log collection from connected devices or simulators and surfaces patterns relevant to Capacitor plugin failures, native bridge errors, and user-reported production crashes. Developers reach for ios-android-logs when standard browser devtools miss native-layer failures or when support tickets reference on-device behavior that needs adb or Xcode console output.524installs20Ionic Designionic-design is a Capgo agent skill for Ionic and Capacitor hybrid app development. It steers engineers toward proven Ionic component patterns, mobile-first layouts, accessible screen structure, and navigation flows when implementing app screens in TypeScript, HTML, and Ionic markup. The skill fits projects that ship one codebase to iOS and Android through Capacitor while keeping native-feeling UI conventions. Developers reach for ionic-design when scaffolding tabs, modals, lists, forms, or routing in an Ionic app and want agent suggestions aligned with Ionic design idioms instead of generic web layouts. It complements Capacitor plugin work by focusing on presentation layer decisions that affect usability on phones and tablets.513installs21Capacitor Apple Review Preflightcapacitor-apple-review-preflight is a Cap-go skill that runs a structured Apple App Store preflight for Capacitor apps before submission or after rejection. It adapts guideline and rejection-rule corpora from app-store-preflight-skills and adds Capacitor-specific checks for Info.plist usage strings, entitlements, PrivacyInfo.xcprivacy, social-login Sign in with Apple requirements, WebView minimum-functionality risks, and live-update reviewer notes. The six-step procedure loads app-type checklists—subscriptions, UGC, kids, health, games, AI, crypto, and VPN—then maps metadata, privacy, design, and entitlement rule files onto the project. Developers invoke it when preparing an iOS Capacitor build for App Store review or diagnosing a Guideline 4.2 or 4.8 rejection.508installs22Capgo Live Updatescapgo-live-updates is a Capgo-maintained agent skill in cap-go/capgo-skills for over-the-air (OTA) updates in Capacitor iOS and Android apps. Its 525-line SKILL.md covers Capgo account and @capgo/cli setup, capacitor.config.ts CapacitorUpdater options, automatic and manual update flows with notifyAppReady(), channel-based staged rollouts, encrypted bundle uploads, and GitHub Actions or GitLab CI deploy examples. Capgo pushes JavaScript, HTML, and CSS bundle changes instantly while native Swift, Kotlin, or Java changes still require app store submission. The skill documents automatic rollback when notifyAppReady() is not called within 10 seconds, plus dashboard analytics for update success, rollback rates, and version distribution. Developers reach for capgo-live-updates when they need hotfixes, beta channels, or A/B rollouts without waiting for Apple or Google review cycles.503installs23Konsta Uikonsta-ui is a cap-go/capgo-skills agent skill for building polished mobile-first interfaces inside Capacitor hybrid apps using Konsta UI components styled with Tailwind CSS. Konsta UI provides iOS and Android adaptive components—lists, sheets, toggles, and navigation patterns—that inherit platform-appropriate appearance without maintaining separate Swift, Kotlin, or bespoke CSS theme files. Developers reach for konsta-ui when scaffolding Capacitor screens, replacing generic web UI with touch-native patterns, or aligning Capgo mobile releases with App Store and Play Store UX expectations. The skill fits teams already using Capacitor and Tailwind who want consistent cross-platform mobile UI faster than hand-rolling platform-specific styles.500installs24Cordova To Capacitorcordova-to-capacitor is a Capgo-maintained agent skill that walks developers through a 10-step Cordova-to-Capacitor migration for iOS and Android hybrid apps. The skill inspects package.json for cordova and @capacitor dependencies, lists installed Cordova plugins, and maps 14 core Cordova plugins—camera, geolocation, device, network, status bar, splash screen, keyboard, dialogs, file, in-app browser, media, vibration, local notifications, and push—to official @capacitor equivalents with npm install commands. It covers npx cap init, cap add ios/android, converting deviceready callbacks to async/await imports, creating capacitor.config.ts from config.xml, adding Info.plist and AndroidManifest permission strings, and npx cap sync before opening Xcode or Android Studio. Developers reach for cordova-to-capacitor when modernizing a legacy hybrid codebase, replacing Cordova globals, or debugging white-screen and permission failures after platform migration. The skill also documents hybrid side-by-side migration, Cordova compatibility layers, and optional Capgo live-update setup after cutover.481installs25Capacitor App Upgradescapacitor-app-upgrades is an agent skill from cap-go/capgo-skills for planning and executing Capacitor framework version bumps across iOS, Android, and web. The skill walks through dependency updates, capacitor.config changes, native project migrations, and plugin compatibility fixes when Capacitor ships breaking API or build-tool changes. Developers reach for capacitor-app-upgrades when a Capacitor major or minor release blocks builds, breaks plugins, or requires native shell edits they cannot safely apply from memory alone.470installs26Cocoapods To Spmcocoapods-to-spm is a Capgo agent skill for moving Capacitor iOS targets off CocoaPods onto Swift Package Manager without breaking plugin compatibility. The skill addresses Podfile removal, SPM package references, Xcode build setting updates, and validation that Capacitor plugins still resolve and compile. Developers reach for cocoapods-to-spm when Apple ecosystem pressure or team standards require SPM while keeping existing Capacitor native modules working. It targets reproducible Xcode builds after dependency manager changes. Expect step-by-step migration checks rather than greenfield iOS app scaffolding.468installs27Capgo Cli Usagecapgo-cli-usage is the routing entry skill in cap-go/capgo-skills for CapGo CLI operations on Capacitor mobile apps. It triages general CapGo questions and either handles basic commands such as npx @capgo/cli login, init, doctor, app add, and app list directly or forwards work to specialized sibling skills for OTA release management, native cloud builds, and organization administration. Developers reach for capgo-cli-usage when publishing bundle uploads to production or staging channels, rolling out JavaScript hotfixes between store releases, or diagnosing authentication before deeper release troubleshooting. The CapGo CLI supports bundle upload, channel set, bundle cleanup, and programmatic CapgoSDK automation for CI pipelines. Install the skill with npx skills add Cap-go/capgo-skills --skill capgo-cli-usage alongside a configured Capacitor project and CapGo API key when mobile teams want agent-guided live-update workflows instead of memorizing the full CLI surface.444installs28Capacitor Plugin Upgradescapacitor-plugin-upgrades guides maintainers bumping @capacitor/* peer dependencies on custom or community plugins to a new major Capacitor release. A live snapshot reads package.json for @capacitor versions and locates example-app, ios/, android/, and capacitor.config files before confirming the target major. Each major jump updates peer deps and native bridge code, runs npm install and npx cap sync from the example app—not the plugin root—and verifies API surface across TypeScript definitions, Android Gradle settings, and iOS deployment targets without skipping intermediate majors. Final checks prefer npm run verify or fall back to build, test, cap sync, and per-platform example builds. Developers reach for capacitor-plugin-upgrades when a plugin breaks after a Capacitor major bump or before publishing a compatibility release.441installs29Capgo Native Buildscapgo-native-builds is a Cap-go/capgo-skills agent skill for Capgo Cloud Build native iOS and Android compilation of Capacitor apps. It covers Capgo CLI login with API keys, credential storage in ~/.capgo-credentials, iOS build init onboarding, and build request flows producing signed IPA, APK, or AAB artifacts with optional TestFlight, App Store Connect, or Google Play upload. Commands include build init, build request, build credentials save/list/update/clear/migrate, plus flags like --output-upload for time-limited download links and --output-retention up to 7d. Capgo docs note build images supporting Xcode 26.2 and Android Studio 2025. The skill explicitly excludes JavaScript-only OTA bundle uploads. Developers reach for capgo-native-builds when Capacitor apps need hosted native builds from CI or local CLI without maintaining local native toolchains.439installs30Sqlite To Fast Sqlsqlite-to-fast-sql is a Claude Code skill from cap-go/capgo-skills that guides migration from legacy embedded SQLite in Capacitor apps to Capgo fast SQL patterns tuned for sync and throughput. Mobile teams hit bridge bottlenecks when batching large offline datasets or building local-first replication; this skill maps schema moves, connection setup, transaction batches, and sync-friendly query paths. It aligns with @capgo/capacitor-fast-sql patterns that expose a local HTTP server for native SQL instead of heavy JS-bridge serialization. Reach for sqlite-to-fast-sql when a Capacitor app outgrows basic SQLite plugins, needs CRDT or operational-transform friendly storage, or must replace IndexedDB-limited web storage with production-grade query performance on iOS, Android, and web targets. Migration steps cover connect and execute API swaps, transaction boundaries, and optional SQLConnection HTTP paths for large batch inserts. The skill helps teams preserve offline-first semantics while gaining replication headroom for production mobile workloads.427installs31Capacitor Plugin Spm Supportcapacitor-plugin-spm-support is a cap-go skill for Capacitor plugin maintainers adding Xcode Swift Package Manager consumption alongside or instead of CocoaPods. The six-step procedure reads package.json, the podspec, and the main Swift plugin class, then creates Package.swift with iOS deployment target and Capacitor SPM dependencies, converts the plugin to CAPBridgedPlugin with identifier, jsName, and pluginMethods, removes Objective-C bridge files, updates package exports, and verifies via npx cap sync in the example app. The skill handles third-party CocoaPods dependencies by finding SPM equivalents or keeping mixed managers. Developers reach for capacitor-plugin-spm-support when a plugin needs Package.swift, CAPBridgedPlugin registration, or cleanup of legacy bridge headers—not for app projects or non-Capacitor frameworks.424installs32Capgo Release Managementcapgo-release-management is a cap-go capgo-skills skill for orchestrating Capacitor mobile app releases through CapGo over-the-air update channels. It guides developers through semver versioning, channel promotion, staged rollout percentages, and the transition from OTA delivery to native store submission when binary changes require it. Teams reach for capgo-release-management when shipping hybrid mobile apps that rely on CapGo for rapid JavaScript bundle updates while maintaining store compliance. The skill connects release engineering tasks—choosing channels, sequencing rollouts, and coordinating store handoff—into a repeatable workflow for Capacitor projects. Use it during release weeks when OTA strategy, version bumps, and production rollout timing must align across iOS and Android Capacitor builds.422installs33Capgo Release Workflowscapgo-release-workflows is a top-level Capacitor release router from cap-go/capgo-skills that coordinates three workflow areas: Capgo live OTA updates via capgo-live-updates, reproducible native builds via capacitor-ci-cd, and TestFlight or Google Play publishing via capacitor-app-store. It helps teams define Production, Staging, and Dev channel structures, staged rollouts, rollback paths, and signing gates while keeping credentials and release logic in the repository. The skill verifies the full chain—OTA bundle upload, signed native artifacts, and store submission—before broad production traffic. Reach for capgo-release-workflows when migrating Capacitor apps to Capgo OTA plus repo-owned CI/CD instead of a single hosted mobile release platform.421installs34Capgo Cloudcapgo-cloud is a Cap-go umbrella skill that routes multi-step Capacitor cloud workflows across native builds, OTA bundle delivery, store publishing, and organization administration. It verifies CLI access, app registration, signing material, and environment configuration before delegating to eight specialized skills: capgo-native-builds, capgo-release-management, capgo-live-updates, capacitor-app-store, capacitor-ci-cd, capgo-organization-management, and capgo-cli-usage. The documented end-to-end flow has five stages: prepare the project, build the native binary via CapGo Build, ship the web bundle through OTA channels, publish the native release to stores, and govern team access when billing or policy matters. Use capgo-cloud when a request spans more than one CapGo product area and you need clear separation between OTA rollout risk and native release steps.416installs35Capacitor App Upgrade V7 To V8capacitor-app-upgrade-v7-to-v8 is a Claude Code skill from cap-go/capgo-skills that walks agents through upgrading Ionic Capacitor apps from version 7 to 8. Capacitor 8 introduces Swift Package Manager defaults on iOS, a System Bars plugin replacing edge-to-edge margin hacks, Kotlin 2.2 compiler changes, and renamed Android bridge layout resources. The skill follows official breaking-change notes: bump @capacitor packages to ^8.0.0, run plugin migration tooling, update Gradle and kotlin_version, adjust iOS deployment targets, and reconcile plugin rewrites. Reach for capacitor-app-upgrade-v7-to-v8 when a mobile codebase pins Capacitor 7 and you need a structured, checklist-driven upgrade before the next App Store or Play Store release rather than ad-hoc dependency bumps. After dependency bumps, the skill drives npx cap sync, validates native project diffs, and flags plugin packages still pinned to v7 APIs. It helps teams avoid shipping broken Android bridge layouts or deprecated kotlinOptions blocks that fail Kotlin 2.2 builds.414installs36Capgo Organization ManagementHelps operators structure CapGo organizations, assign team permissions, and maintain app-channel infrastructure so Capacitor OTA updates deploy predictably across staging and production without access sprawl.411installs37Ionic Enterprise Sdk Migrationionic-enterprise-sdk-migration is a CapGo-maintained Claude Code skill that walks developers through replacing @ionic-enterprise/auth, identity-vault, and secure-storage with open alternatives. The skill auto-detects enterprise packages in package.json, applies a three-row replacement map—Auth Connect to @capgo/capacitor-social-login, Identity Vault to @capgo/capacitor-native-biometric plus app session logic, Secure Storage to @capgo/capacitor-fast-sql or @capacitor/preferences—and runs a six-step procedure ending with rg cleanup, npm install, and npx cap sync. Developers reach for ionic-enterprise-sdk-migration when entitlement costs, vendor lock-in, or CapGo live-update compatibility require removing Ionic Enterprise while preserving OIDC redirects, biometric gates, and encrypted local data. The workflow migrates one plugin at a time, preserves schemas where possible, and verifies builds on every shipped platform before release.411installs38Skill Creatorskill-creator is an agent skill from cap-go/capgo-skills that walks developers through professional agent skill authoring inside the CapGo skills ecosystem, which ships 49 Capacitor-focused skills for mobile development agents. The 7-step procedure validates YAML frontmatter with unique lowercase names and specific trigger descriptions, keeps main SKILL.md lean while moving dense rules into references/ or assets/ and fragile logic into scripts/, aligns CLI examples with npx @capgo/cli@latest for consumer-facing Capacitor commands, applies progressive disclosure with one-level-deep support files, adds skillgrade evals with deterministic graders, and reviews for hallucination gaps where agents would otherwise guess. Developers reach for skill-creator when creating new skill directories, tightening discoverability metadata, splitting oversized instructions, or preparing skillgrade regression tests. The parent repository validates packs via npm run lint-skills and optional ENABLE_SKILLGRADE=1 npm run lint-skills-skillgrade workflows.406installs39Ionic Appflow Migrationionic-appflow-migration is a Capgo agent skill (metadata version 1.0.0) that orchestrates moving Ionic and Capacitor apps off Ionic Appflow onto Capgo live updates and repo-owned automation. The skill injects live scans of package.json for @capacitor/live-updates, cordova-plugin-ionic, and Appflow npm scripts, plus a find pass across six config paths including capacitor.config and .github/workflows. It splits Appflow usage into three feature areas—live updates, native cloud builds, and store publishing—and follows a five-step procedure: detect usage, migrate OTA channels, replace build automation, move TestFlight or Play publishing, then remove stale packages and secrets. Deep work delegates to capgo-live-updates, capacitor-ci-cd, and capacitor-app-store companion skills while preserving signing, channel rollout, and store release cadence. Developers reach for ionic-appflow-migration when a production repository still references ionic appflow, Appflow Live Updates, or Ionic cloud build commands and needs an equivalent Capgo path without breaking OTA delivery.383installs40Capacitor Plugin Upgrade V7 To V8capacitor-plugin-upgrade-v7-to-v8 is a Claude Code skill from cap-go/capgo-skills for migrating Capacitor plugins from v7 to v8. A six-step procedure starts from an injected package.json snapshot listing @capacitor peer dependencies, updates the peer range to Capacitor 8, reviews v7-to-v8 migration notes, updates the example app, runs npm install, and syncs native projects. Error handling covers iOS deployment targets and Android Gradle/Java requirements for Capacitor 8. The skill is plugin-specific—do not use it for full app upgrades or other major Capacitor versions.372installs41Capacitor App Upgrade V6 To V7capacitor-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.364installs42Capacitor Plugin Upgrade V6 To V7capacitor-plugin-upgrade-v6-to-v7 is a Capgo-maintained Claude skill for maintainers of Capacitor plugins—not full app upgrades—who must move `@capacitor/*` peer dependencies and native projects from v6 to v7. The skill injects a live `package.json` snapshot, locates `example-app`, `ios`, and `android` paths, and follows a 6-step procedure: confirm peer ranges, apply v7 migration notes, update the example app, run `npm install`, sync, and verify builds. It explicitly scopes out non-Capacitor plugins and other major versions. Use it when a plugin still targets Capacitor 6 and CI or local builds fail after bumping Capacitor core to 7.362installs43Capacitor App Upgrade V5 To V6capacitor-app-upgrade-v5-to-v6 is an agent skill from cap-go/capgo-skills that walks developers through upgrading a Capacitor v5 hybrid mobile application to Capacitor v6. The skill addresses breaking changes across native iOS and Android projects, Capacitor configuration files, plugin compatibility, and CI release pipelines so builds keep passing after the major version bump. Developers reach for capacitor-app-upgrade-v5-to-v6 when Capacitor v6 features or security fixes require migration, plugin vendors drop v5 support, or native toolchain updates fail against an outdated Capacitor baseline. The migration skill focuses on preserving working Xcode and Gradle builds while updating JavaScript and native bridge APIs, making it essential during mobile frontend maintenance rather than greenfield app creation. Invoke when asked to upgrade Capacitor from v5 to v6, fix post-migration native build errors, or align plugins and CI with Capacitor 6 requirements.360installs44Capacitor App Upgrade V4 To V5capacitor-app-upgrade-v4-to-v5 is a Capgo agent skill in cap-go/capgo-skills that walks through upgrading a Capacitor hybrid app from version 4 to version 5. The skill snapshots current @capacitor/* versions from package.json, updates all packages to v5-compatible ranges, reviews official v4-to-v5 migration notes before editing native files, runs npm install and npx cap sync, then verifies iOS and Android builds. It includes Bash allowed-tools for reading dependency versions and documents error handling for missed packages, iOS deployment targets, and Android Gradle/Java requirements. Developers reach for capacitor-app-upgrade-v4-to-v5 when package.json shows @capacitor/core v4 and the team needs the exact v5 migration path—not plugin-only bumps or other major versions.359installs45Capacitor Plugin Upgrade V5 To V6capacitor-plugin-upgrade-v5-to-v6 is a Capgo agent skill for developers maintaining Ionic or Capacitor hybrid mobile apps who must move from Capacitor 5 to Capacitor 6. The skill sequences breaking-change checks across plugin source, native Android and iOS projects, capacitor.config files, and dependency manifests so native bridge calls, permissions, and build settings stay compatible. A developer reaches for capacitor-plugin-upgrade-v5-to-v6 when a Capacitor 6 release blocks CI, store submission fails after a major bump, or community plugins still target v5 APIs. The workflow emphasizes incremental verification of each plugin and platform folder rather than a blind dependency bump.359installs46Capacitor Plugin Upgrade V4 To V5capacitor-plugin-upgrade-v4-to-v5 is an agent skill from cap-go/capgo-skills that guides developers through upgrading Capacitor plugins from version 4 to version 5. The skill addresses breaking API changes, updated build tooling, TypeScript definition shifts, and native bridge adjustments so custom or third-party plugins continue working inside Capacitor apps on modern framework versions. Developers reach for capacitor-plugin-upgrade-v4-to-v5 when maintaining a Capacitor plugin package, unblocking app upgrades blocked by outdated plugin APIs, or aligning plugin releases with Capacitor 5 app requirements. The skill complements app-level migration workflows by focusing on plugin source and publish pipelines rather than entire hybrid application rewrites. Invoke when asked to upgrade a Capacitor plugin from v4 to v5, fix plugin breaking changes, or update plugin build tooling for Capacitor 5 compatibility.358installs47Webapp To Capacitorwebapp-to-capacitor is a Capacitor migration skill from cap-go/capgo-skills that wraps an existing web application as installable iOS and Android binaries. It covers Capacitor project setup, native plugin integration, mobile build pipelines, and store-ready packaging so teams ship hybrid apps instead of maintaining separate native codebases. Developers reach for it when a React, Vue, or static web product needs App Store and Play Store distribution with camera, push, or filesystem access. The skill sequences platform adds, plugin wiring, and release configuration so the web bundle runs inside native WebViews with production signing paths.342installs48Subscription App Revenuesubscription-app-revenue is a Claude Code agent skill from cap-go/capgo-skills that guides developers through in-app subscription revenue implementation for Capacitor hybrid mobile applications. The skill covers store billing integration, entitlement verification, renewal and lapse handling, and patterns that keep subscription state consistent between native store receipts and app UI gating. Developers reach for subscription-app-revenue when a Capacitor iOS or Android app must monetize through recurring plans rather than one-time purchases, and when botched renewal logic causes support churn or revenue leakage. The skill aligns with Capgo ecosystem practices for shipping hybrid apps that rely on Apple App Store and Google Play billing APIs. Use it while building paywalls, restore-purchase flows, and subscription status screens in a Capacitor codebase.312installs

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.

cap-go/capgo-skills · 48 skills · Skillselion