
Asc Revenuecat Catalog Sync
- 1.5k installs
- 934 repo stars
- Updated July 21, 2026
- rudrankriyam/app-store-connect-cli-skills
A skill that audits and synchronizes App Store Connect product catalogs with RevenueCat by reading both systems, identifying drift, and applying deterministic product mappings based on store identifiers.
About
This skill aligns App Store Connect (ASC) subscription and IAP catalogs with RevenueCat's product, entitlement, and offering data using asc CLI and RevenueCat MCP server. Developers use it to bootstrap RevenueCat from an existing ASC catalog, audit drift before release, or create missing ASC items and map them deterministically by product identifier. The workflow starts in read-only audit mode, builds a diff showing missing or conflicting items across systems, then executes approved changes in order: ASC groups/subscriptions/IAPs, RevenueCat apps/products, entitlements/attachments, and offerings/packages. It requires ASC and RevenueCat authentication, uses store_identifier as the canonical cross-system key, and reports all operations with final reconciliation counts.
- Audit mode (read-only) compares ASC and RevenueCat catalogs, builds a diff plan, and requires confirmation before any wr
- Maps ASC product types to RevenueCat types deterministically: subscriptions to subscription, IAP CONSUMABLE to consumabl
- Creates missing ASC subscription groups, subscriptions, and IAPs via asc CLI, then re-reads to capture canonical product
- Ensures RevenueCat apps, products, entitlements, and package attachments with store_identifier as the primary cross-syst
- Reports final counts of created/skipped/failed items per system and continues on per-item failures to surface all issues
Asc Revenuecat Catalog Sync by the numbers
- 1,520 all-time installs (skills.sh)
- +26 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #315 of 4,386 Backend & APIs skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
asc-revenuecat-catalog-sync capabilities & compatibility
Depends on RevenueCat API v2 key plan; asc CLI is free.
- Capabilities
- read asc subscription groups, subscriptions, and · query revenuecat apps, products, entitlements, o · create missing asc resources (subscription group · create revenuecat resources (apps, products, ent · attach products to entitlements and packages det · generate audit diff and apply changes with expli · report detailed reconciliation with counts and f
- Use cases
- api development · devops · testing · documentation
- Platforms
- macOS · Windows · Linux
- Runs
- Runs locally
- Pricing
- Free
npx skills add https://github.com/rudrankriyam/app-store-connect-cli-skills --skill asc-revenuecat-catalog-syncAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.5k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rudrankriyam/app-store-connect-cli-skills ↗ |
What it does
Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, and offerings to keep catalogs in sync.
Who is it for?
Teams bootstrapping RevenueCat from live ASC catalogs, conducting pre-release drift audits, or creating missing ASC products and mapping them across both platforms.
Skip if: Deleting or destructively modifying existing ASC or RevenueCat resources; the skill enforces read-only safety defaults and never auto-deletes.
When should I use this skill?
Setting up RevenueCat for the first time, syncing new subscriptions or IAPs across ASC and RevenueCat, or auditing catalog drift before a release.
What you get
After running this skill in audit and apply modes, ASC and RevenueCat catalogs are aligned by product identifier, with all necessary entitlements, packages, and offerings created and verified.
- Audit diff report showing missing/conflicting items per system
- Created/skipped/failed item counts for ASC and RevenueCat
- Entitlement and package attachment summary
By the numbers
- Supports full pagination for both ASC (--paginate) and RevenueCat (starting_after) queries
- Maps 4 ASC product types to RevenueCat equivalents: subscription, consumable, non_consumable, non_renewing_subscription
- Six recommended RevenueCat package keys: $rc_weekly, $rc_monthly, $rc_annual, plus custom variants
Files
asc RevenueCat catalog sync
Use this skill to keep App Store Connect (ASC) and RevenueCat aligned, including creating missing ASC items and mapping them to RevenueCat resources.
When to use
- You want to bootstrap RevenueCat from an existing ASC catalog.
- You want to create missing ASC subscriptions/IAPs, then map them into RevenueCat.
- You need a drift audit before release.
- You want deterministic product mapping based on identifiers.
Preconditions
ascauthentication is configured (asc auth loginorASC_*env vars).- RevenueCat MCP server is configured and authenticated.
- In Cursor and VS Code, OAuth auth is available for RevenueCat MCP. API key auth is also supported.
- You know:
- ASC app ID (
APP_ID) - RevenueCat
project_id - target RevenueCat app type (
app_storeormac_app_store) and bundle ID for create flows - Use a write-enabled RevenueCat API v2 key when applying changes.
Safety defaults
- Start in audit mode (read-only).
- Require explicit confirmation before writes.
- Never delete resources in this workflow.
- Continue on per-item failures and report all failures at the end.
Canonical identifiers
- Primary cross-system key: ASC
productId== RevenueCatstore_identifier. - Keep
productIdstable once products are live. - Do not use display names as unique identifiers.
Scope boundary
- RevenueCat MCP configures RevenueCat resources; it does not create App Store Connect products directly.
- Use
asccommands to create missing ASC subscription groups, subscriptions, and IAPs before RevenueCat mapping.
Modes
1) Audit mode (default)
1. Read ASC source catalog. 2. Read RevenueCat target catalog. 3. Build a diff with actions:
- missing in ASC
- missing in RevenueCat
- mapping conflicts (identifier/type/app mismatch)
4. Present a plan and wait for confirmation.
2) Apply mode (explicit)
Execute approved actions in this order: 1. Ensure ASC groups/subscriptions/IAP exist. 2. Ensure RevenueCat app/products exist. 3. Ensure entitlements and product attachments. 4. Ensure offerings/packages and package attachments. 5. Verify and print a final reconciliation summary.
Step-by-step workflow
Step A - Read current ASC catalog
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-id "GROUP_ID" --paginate --output jsonStep B - Read current RevenueCat catalog (MCP)
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_packages
Step C - Build mapping plan
Map ASC product types to RevenueCat product types:
- ASC subscription -> RevenueCat
subscription - ASC IAP
CONSUMABLE-> RevenueCatconsumable - ASC IAP
NON_CONSUMABLE-> RevenueCatnon_consumable - ASC IAP
NON_RENEWING_SUBSCRIPTION-> RevenueCatnon_renewing_subscription
Suggested entitlement policy:
- subscriptions: one entitlement per subscription group (or explicit map provided by user)
- non-consumable IAP: one entitlement per product
- consumable IAP: no entitlement by default unless user asks
Step D - Ensure missing ASC items (if requested)
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-id "GROUP_ID" \
--reference-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"Step E - Ensure RevenueCat app and products
Use MCP:
- create app if missing:
mcp_RC_create_app - create products:
mcp_RC_create_product store_identifier= ASCproductIdapp_id= RevenueCat app IDtypefrom mapping above
Step F - Ensure entitlements and attachments
Use MCP:
- list/create entitlements:
mcp_RC_list_entitlements,mcp_RC_create_entitlement - attach products:
mcp_RC_attach_products_to_entitlement - verify attachments:
mcp_RC_get_products_from_entitlement
Step G - Ensure offerings and packages (optional)
Use MCP:
- list/create/update offerings:
mcp_RC_list_offeringsmcp_RC_create_offeringmcp_RC_update_offering(is_current=trueonly if requested)- list/create packages:
mcp_RC_list_packagesmcp_RC_create_package- attach products to packages:
mcp_RC_attach_products_to_packagewitheligibility_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- lifetime IAP ->
$rc_lifetime - custom ->
$rc_custom_<name>
Expected output format
Return a final summary with:
- ASC created counts (groups/subscriptions/IAP)
- RevenueCat created counts (apps/products/entitlements/offerings/packages)
- attachment counts (entitlement-products, package-products)
- skipped existing items
- failed items with actionable errors
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 appAgent behavior
- Always run audit first, even in apply mode.
- Ask for confirmation before create/update operations.
- Match by
store_identifierfirst. - Use full pagination (
--paginatefor ASC,starting_afterfor RevenueCat tools). - Continue processing after per-item failures and report all failures together.
- Never auto-delete ASC or RevenueCat resources in this skill.
Common pitfalls
- Wrong RevenueCat
project_idor app ID. - Creating RC products under the wrong platform app.
- Accidentally assigning consumables to entitlements.
- Skipping the post-create ASC re-read step.
- Missing offering/package verification after product creation.
Additional resources
- Workflow examples: examples.md
- Source references: references.md
Examples: asc RevenueCat catalog sync
Use these examples as execution templates for realistic catalog synchronization workflows.
Example 1: Drift audit only (read-only)
Goal: compare ASC and RevenueCat, produce a no-write reconciliation report.
User request
Audit my ASC subscriptions and IAP catalog against RevenueCat and show what is missing on either side.
Expected behavior
1. Read ASC:
asc subscriptions groups list --app "APP_ID" --paginate --output jsonasc iap list --app "APP_ID" --paginate --output jsonasc subscriptions list --group-id "GROUP_ID" --paginate --output json(for each group)
2. Read RevenueCat via MCP:
- list apps/products/entitlements/offerings/packages for
project_id
3. Build and present a diff:
- missing in ASC
- missing in RevenueCat
- type mismatch
- app/platform mismatch
4. Stop for confirmation (no writes).
Example 2: Create missing ASC subscriptions, then map to RevenueCat
Goal: bootstrap both systems when store products are partially missing.
User request
Ensure monthly and annual subscriptions exist in ASC for app APP_ID, then sync them to RevenueCat project PROJECT_ID under my iOS app.
Expected behavior
1. Audit existing resources first. 2. If missing in ASC:
- create group:
asc subscriptions groups create --app "APP_ID" --reference-name "Premium"- create subscriptions:
asc subscriptions create --group-id "GROUP_ID" --reference-name "Monthly" --product-id "com.example.premium.monthly" --subscription-period ONE_MONTHasc subscriptions create --group-id "GROUP_ID" --reference-name "Annual" --product-id "com.example.premium.annual" --subscription-period ONE_YEAR
3. Re-read ASC to capture authoritative IDs. 4. In RevenueCat:
- create app if missing (
type: app_store, same bundle identifier) - create products with matching
store_identifier - create entitlement (for example
premium) and attach products - optionally create
defaultoffering with$rc_monthlyand$rc_annual
5. Verify with final summary and failures list.
Example 3: Sync one-time IAP and keep consumables entitlement-free
Goal: model recommended entitlement behavior by product type.
User request
Sync my non-consumable lifetime IAP and consumable coin pack to RevenueCat.
Expected behavior
1. Confirm product type mapping:
NON_CONSUMABLE->non_consumableCONSUMABLE->consumable
2. Create missing ASC IAPs if requested:
asc iap create --app "APP_ID" --type NON_CONSUMABLE --ref-name "Lifetime" --product-id "com.example.lifetime"asc iap create --app "APP_ID" --type CONSUMABLE --ref-name "Coins 100" --product-id "com.example.coins.100"
3. In RevenueCat:
- create both products
- attach non-consumable product to an entitlement (for example
lifetime_access) - skip entitlement attachment for consumable by default (unless user explicitly asks)
4. Return created/skipped/failed counts.
Example 4: Controlled apply in CI-style automation
Goal: make apply mode safe and repeatable in team workflows.
User request
Run a full sync and apply missing resources.
Expected behavior
1. Run audit and print plan. 2. Request explicit approval. 3. Apply in deterministic order:
- ASC group/subscription/IAP
- RC app/product
- RC entitlement + attachments
- RC offering/package + attachments
4. Continue after item failures and aggregate errors. 5. Print machine-readable summary plus human-readable recap.
Suggested natural-language prompts for MCP
List all apps in RevenueCat project PROJECT_ID and show which one matches bundle id com.example.appCreate RevenueCat product com.example.premium.monthly as subscription in app APP_IDCreate entitlement premium and attach product PRODUCT_IDCreate offering default with packages $rc_monthly and $rc_annualShow complete offering configuration including packages and attached products
References
These sources were used to validate command/tool assumptions and workflow boundaries.
RevenueCat MCP docs
- MCP overview:
- https://www.revenuecat.com/docs/tools/mcp
- Setup and authentication (OAuth/API key, cloud endpoint):
- https://www.revenuecat.com/docs/tools/mcp/setup
- Tools reference (tool names, parameters, enums, package naming):
- https://www.revenuecat.com/docs/tools/mcp/tools-reference
- Usage examples (natural language interaction patterns):
- https://www.revenuecat.com/docs/tools/mcp/usage-examples
- Best practices and troubleshooting:
- https://www.revenuecat.com/docs/tools/mcp/best-practices-and-troubleshooting
RevenueCat product model docs
- Configuring products (products, entitlements, offerings model):
- https://www.revenuecat.com/docs/projects/configuring-products
- iOS product setup in App Store Connect (store-side creation details):
- https://www.revenuecat.com/docs/getting-started/entitlements/ios-products
RevenueCat MCP launch context
- Launch post and current beta limitations:
- https://www.revenuecat.com/blog/company/introducing-revenuecat-mcp/
Related skills
Forks & variants (3)
Asc Revenuecat Catalog Sync has 3 known copies in the catalog totaling 3.1k installs. They canonicalize to this original listing.
- rorkai - 2k installs
- rudrankriyam - 1.1k installs
- ehmo - 1 installs
How it compares
Use asc-revenuecat-catalog-sync for ASC CLI plus RevenueCat reconciliation; manual App Store Connect UI checks lack scripted drift detection.
FAQ
What is the primary key for matching products across systems?
ASC productId == RevenueCat store_identifier; this is stable once products go live and should never change.
Can this skill delete resources?
No. The skill enforces safety defaults: audit mode is read-only, apply mode requires explicit confirmation, and deletion is never performed automatically.
What authentication is needed?
ASC authentication (asc auth login or ASC_* env vars), RevenueCat MCP server configured with OAuth or API v2 key (write-enabled for apply mode).
Is Asc Revenuecat Catalog Sync safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.