swiftship/internal/skills/data/features/asc-revenuecat-catalog-sync/SKILL.md
Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat.
npx skillsauth add abdullah4ai/apple-developer-toolkit asc-revenuecat-catalog-syncInstall 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.
Use this skill to keep App Store Connect (ASC) and RevenueCat aligned, including creating missing ASC items and mapping them to RevenueCat resources.
asc authentication is configured (asc auth login or ASC_* env vars).APP_ID)project_idapp_store or mac_app_store) and bundle ID for create flowsproductId == RevenueCat store_identifier.productId stable once products are live.asc commands to create missing ASC subscription groups, subscriptions, and IAPs before RevenueCat mapping.Execute approved actions in this order:
asc subscriptions groups list --app "APP_ID" --paginate --output json
asc iap list --app "APP_ID" --paginate --output json
# for each subscription group:
asc subscriptions list --group "GROUP_ID" --paginate --output json
Use these MCP tools (with project_id and pagination where applicable):
mcp_RC_get_projectmcp_RC_list_appsmcp_RC_list_productsmcp_RC_list_entitlementsmcp_RC_list_offeringsmcp_RC_list_packagesMap ASC product types to RevenueCat product types:
subscriptionCONSUMABLE -> RevenueCat consumableNON_CONSUMABLE -> RevenueCat non_consumableNON_RENEWING_SUBSCRIPTION -> RevenueCat non_renewing_subscriptionSuggested entitlement policy:
Create missing ASC resources first, then re-read ASC to capture canonical IDs.
# create subscription group
asc subscriptions groups create --app "APP_ID" --reference-name "Premium"
# create subscription
asc subscriptions create \
--group "GROUP_ID" \
--ref-name "Monthly" \
--product-id "com.example.premium.monthly" \
--subscription-period ONE_MONTH
# create iap
asc iap create \
--app "APP_ID" \
--type NON_CONSUMABLE \
--ref-name "Lifetime" \
--product-id "com.example.lifetime"
Use MCP:
mcp_RC_create_appmcp_RC_create_product
store_identifier = ASC productIdapp_id = RevenueCat app IDtype from mapping aboveUse MCP:
mcp_RC_list_entitlements, mcp_RC_create_entitlementmcp_RC_attach_products_to_entitlementmcp_RC_get_products_from_entitlementUse MCP:
mcp_RC_list_offeringsmcp_RC_create_offeringmcp_RC_update_offering (is_current=true only if requested)mcp_RC_list_packagesmcp_RC_create_packagemcp_RC_attach_products_to_package with eligibility_criteria: "all"Recommended package keys:
ONE_WEEK -> $rc_weeklyONE_MONTH -> $rc_monthlyTWO_MONTHS -> $rc_two_monthTHREE_MONTHS -> $rc_three_monthSIX_MONTHS -> $rc_six_monthONE_YEAR -> $rc_annual$rc_lifetime$rc_custom_<name>Return a final summary with:
Example:
ASC: created groups=1 subscriptions=2 iap=1, skipped=14, failed=0
RC: created apps=0 products=3 entitlements=2 offerings=1 packages=2, skipped=27, failed=1
Attachments: entitlement_products=3 package_products=2
Failures:
- com.example.premium.annual: duplicate store_identifier exists on another RC app
store_identifier first.--paginate for ASC, starting_after for RevenueCat tools).project_id or app ID.tools
Apple platform skill for docs, WWDC lookup, App Store Connect work, and SwiftUI app generation. Use repo-local `node cli.js` for Apple docs and WWDC search, `appledev store` for App Store Connect workflows, and `appledev build` for app scaffolding or fix loops on macOS. USE WHEN: Apple APIs, WWDC sessions, TestFlight/App Store tasks, or building/fixing Apple-platform apps. DON'T USE WHEN: non-Apple platforms, generic backend work, or general web research. EDGE CASES: docs-only queries use `node cli.js` in this repo, not `appledev`; release workflows use `appledev store`; app scaffolding uses `appledev build`; rules-only requests can read `references/ios-rules/` or `references/swiftui-guides/` progressively without invoking binaries.
tools
All-in-one Apple developer skill with three integrated tools shipped as a single unified binary. (1) Documentation search across Apple frameworks, symbols, and 1,267 WWDC sessions from 2014-2025. No credentials needed. (2) App Store Connect CLI with 120+ commands covering builds (find/wait/upload), TestFlight, pre-submission validate, submissions, signing, subscriptions (family-sharable), IAP, analytics, Xcode Cloud, metadata workflows, release pipeline dashboard, insights, win-back offers, promoted purchases, product pages, nominations, accessibility declarations, pre-orders, pricing filters, localizations update, diff, webhooks with local receiver, workflow automation, and more. Requires App Store Connect API key. (3) Multi-platform app builder (iOS/watchOS/tvOS/iPad/macOS/visionOS) that generates complete Swift/SwiftUI apps from natural language with auto-fix, simulator launch, interactive chat mode, and open-in-Xcode. Requires an LLM API key and Xcode. Includes 38 iOS development rules and 12 SwiftUI best practice guides for Liquid Glass, navigation, state management, and modern APIs. All three tools ship as one binary (appledev). USE WHEN: Apple API docs, App Store Connect management, WWDC lookup, or building iOS/watchOS/tvOS/macOS/visionOS apps from scratch. DON'T USE WHEN: non-Apple platforms or general coding.
testing
watchOS complications: WidgetKit complication families, accessory sizes, timeline providers for watch face. Use when implementing watchOS-specific patterns related to widgets.
development
watchOS haptic feedback: WKInterfaceDevice preset haptic types for wrist-based feedback. Use when implementing watchOS-specific patterns related to haptics.