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

Asc Revenuecat Catalog Sync

  • 1.1k installs
  • 934 repo stars
  • Updated July 21, 2026
  • rudrankriyam/asc-skills

This is a copy of asc-revenuecat-catalog-sync by rudrankriyam - installs and ranking accrue to the original listing.

asc-revenuecat-catalog-sync is a mobile integration skill that reconciles App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages via asc and RevenueCat MCP.

About

asc-revenuecat-catalog-sync from rudrankriyam/asc-skills keeps App Store Connect and RevenueCat catalogs aligned when bootstrapping RevenueCat from an existing ASC catalog, creating missing ASC subscriptions or IAPs, or running a drift audit before release. The workflow uses asc MCP plus RevenueCat MCP to map store items into RevenueCat products, entitlements, offerings, and packages deterministically. iOS developers reach for this skill when subscription metadata diverges between Apple’s store backend and RevenueCat dashboards and manual spreadsheet reconciliation is error-prone.

  • Bootstraps RevenueCat from an existing ASC catalog
  • Creates missing ASC subscriptions and IAPs then maps them into RevenueCat
  • Performs drift audit before release
  • Enforces deterministic product mapping based on identifiers
  • Starts in read-only audit mode with explicit confirmation before any writes

Asc Revenuecat Catalog Sync by the numbers

  • 1,070 all-time installs (skills.sh)
  • +17 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rudrankriyam/asc-skills --skill asc-revenuecat-catalog-sync

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.1k
repo stars934
Security audit3 / 3 scanners passed
Last updatedJuly 21, 2026
Repositoryrudrankriyam/asc-skills

How do you sync App Store Connect with RevenueCat catalogs?

Keep App Store Connect subscriptions and in-app purchases perfectly aligned with RevenueCat products, entitlements, offerings, and packages.

Who is it for?

iOS developers setting up or auditing subscription catalogs across App Store Connect and RevenueCat before shipping in-app purchases.

Skip if: Android-only Google Play Billing setups or apps without RevenueCat in the monetization stack.

When should I use this skill?

User mentions RevenueCat offerings, ASC subscription drift, or bootstrapping RevenueCat from an existing App Store catalog.

What you get

Aligned ASC IAP/subscription records, RevenueCat product mappings, and a drift audit report before mobile release.

  • aligned IAP/subscription catalog
  • RevenueCat offering mappings
  • pre-release drift audit

Files

SKILL.mdMarkdownGitHub ↗

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

  • asc authentication is configured (asc auth login or ASC_* 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_store or mac_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 == RevenueCat store_identifier.
  • Keep productId stable 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 asc commands 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 json

Step B - Read current RevenueCat catalog (MCP)

Use these MCP tools (with project_id and pagination where applicable):

  • mcp_RC_get_project
  • mcp_RC_list_apps
  • mcp_RC_list_products
  • mcp_RC_list_entitlements
  • mcp_RC_list_offerings
  • mcp_RC_list_packages

Step C - Build mapping plan

Map ASC product types to RevenueCat product types:

  • ASC subscription -> RevenueCat subscription
  • ASC IAP CONSUMABLE -> RevenueCat consumable
  • ASC IAP NON_CONSUMABLE -> RevenueCat non_consumable
  • ASC IAP NON_RENEWING_SUBSCRIPTION -> RevenueCat non_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 = ASC productId
  • app_id = RevenueCat app ID
  • type from 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_offerings
  • mcp_RC_create_offering
  • mcp_RC_update_offering (is_current=true only if requested)
  • list/create packages:
  • mcp_RC_list_packages
  • mcp_RC_create_package
  • attach products to packages:
  • mcp_RC_attach_products_to_package with eligibility_criteria: "all"

Recommended package keys:

  • ONE_WEEK -> $rc_weekly
  • ONE_MONTH -> $rc_monthly
  • TWO_MONTHS -> $rc_two_month
  • THREE_MONTHS -> $rc_three_month
  • SIX_MONTHS -> $rc_six_month
  • ONE_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 app

Agent behavior

  • Always run audit first, even in apply mode.
  • Ask for confirmation before create/update operations.
  • Match by store_identifier first.
  • Use full pagination (--paginate for ASC, starting_after for 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_id or 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

Related skills

How it compares

Choose asc-revenuecat-catalog-sync over manual dashboard edits when both ASC and RevenueCat must stay aligned across products, entitlements, offerings, and packages.

FAQ

What does asc-revenuecat-catalog-sync reconcile?

asc-revenuecat-catalog-sync reconciles App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages, creating missing ASC items when needed and mapping them through asc and RevenueCat MCP.

When should I run a RevenueCat drift audit?

Run asc-revenuecat-catalog-sync before an iOS release when RevenueCat offerings, packages, or entitlements may diverge from App Store Connect subscription and IAP records after catalog changes.

Which MCP servers does asc-revenuecat-catalog-sync use?

asc-revenuecat-catalog-sync relies on asc MCP for App Store Connect operations and RevenueCat MCP for product, entitlement, offering, and package management during catalog alignment.

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.

This week in AI coding

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

unsubscribe anytime.