/asc-subscription-localization
Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.
$ npx -y skills add rudrankriyam/asc-skills --skill asc-subscription-localization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/asc-subscription-localization
Context preview
The summary Claude sees to decide when to auto-load this skill.
Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.
SKILL.md
asc-subscription-localization.SKILL.mdname: asc-subscription-localization
description: Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.
asc subscription localization
Use this skill to bulk-create or bulk-update display names and, where supported, descriptions for subscriptions, subscription groups, and in-app purchases across all App Store Connect locales. This eliminates the tedious manual process of clicking through each language in App Store Connect to set the same display name.
Preconditions
- Auth configured (`asc auth login` or `ASC_*` env vars).
- Know your app ID (`ASC_APP_ID` or `--app`).
- Subscription groups and subscriptions already exist.
Choose the API scope first
API 4.4.1 adds discrete versions for IAPs, subscriptions, and subscription groups. A version ID is different from its product, subscription, or group ID.
- Use `asc ... versions localizations ...` for all new localization work.
- Do not use the product- or group-scoped v1 localization commands. API 4.4.1
deprecates those resources, and the CLI now emits migration warnings for their compatibility commands.
- Never pass a product, subscription, or group ID to a version-scoped command.
Resolve or create versions before localizing them:
asc iap versions list --iap-id "IAP_ID" --state PREPARE_FOR_SUBMISSION --paginate --output table
asc subscriptions versions list --subscription-id "SUB_ID" --state PREPARE_FOR_SUBMISSION --paginate --output table
asc subscriptions groups versions list --group-id "GROUP_ID" --state PREPARE_FOR_SUBMISSION --paginate --output table
Branch independently on each list result: zero matches means create, one means reuse that version ID, and more than one means stop and require an explicit version ID. Run each command below only for its zero-match branch:
# If and only if the IAP version list returned zero matches:
asc iap versions create --iap-id "IAP_ID" --output json
# If and only if the subscription version list returned zero matches:
asc subscriptions versions create --subscription-id "SUB_ID" --output json
# If and only if the group version list returned zero matches:
asc subscriptions groups versions create --group-id "GROUP_ID" --output json
None of the three version families has a version delete command. List and reuse the single `PREPARE_FOR_SUBMISSION` version; create only for zero matches, and stop for an explicit ID when multiple matches exist. Live parent deletion did not cascade IAP or subscription versions, so do not assume parent deletion cleans up versions created for testing.
Supported App Store Locales
These are the locales supported by App Store Connect for subscription and IAP localizations:
ar-SA, ca, cs, da, de-DE, el, en-AU, en-CA, en-GB, en-US,
es-ES, es-MX, fi, fr-CA, fr-FR, he, hi, hr, hu, id, it,
ja, ko, ms, nl-NL, no, pl, pt-BR, pt-PT, ro, ru, sk,
sv, th, tr, uk, vi, zh-Hans, zh-Hant
Workflow: Bulk-localize a subscription version (v2)
List existing localizations, create only missing locales, then verify:
asc subscriptions versions localizations list --version-id "VERSION_ID" --paginate --output table
asc subscriptions versions localizations create --version-id "VERSION_ID" --locale "LOCALE" --name "Display Name" --description "Description"
asc subscriptions versions localizations list --version-id "VERSION_ID" --paginate --output table
Updates distinguish omitted values, non-empty strings, and JSON `null`:
asc subscriptions versions localizations update --id "LOC_ID" --name "New Name" --description "Updated description"
Do not combine a value flag with its matching `--clear-name` or `--clear-description` flag. The 4.4.1 schema permits JSON `null`, but Apple's live service currently rejects both an empty `--description` and `--clear-description` for subscription-version localizations because the description must contain at least one character.
Creating a missing subscription-version localization therefore requires a non-empty description. A display-name-only run may update the name of an existing localization, but must not create a missing locale until the user provides a non-empty locale-specific or shared fallback description.
Workflow: Bulk-localize a subscription group version (v2)
asc subscriptions groups versions localizations list --version-id "VERSION_ID" --paginate --output table
asc subscriptions groups versions localizations create --version-id "VERSION_ID" --locale "LOCALE" --name "Group Display Name" --custom-app-name "My App"
asc subscriptions groups versions localizations update --id "LOC_ID" --name "Updated Group Display Name" --custom-app-name "My App"
asc subscriptions groups versions localizations list --version-id "VERSION_ID" --paginate --output table
Clearing metadata is a separate, explicit opt-in operation. After confirming that the user wants to remove an existing custom app name, run:
asc subscriptions groups versions localizations update --id "LOC_ID" --clear-custom-app-name
Do not include `--clear-name` or `--clear-custom-app-name` in the standard bulk localization workflow. Use either flag only when JSON `null` is deliberately intended; omitting the flag leaves that attribute unchanged.
Workflow: Bulk-localize an IAP version (v2)
asc iap versions localizations list --version-id "VERSION_ID" --paginate --output table
asc iap versions localizations create --version-id "VERSION_ID" --locale "LOCALE" --name "Display Name" --description "Description"
asc iap versions localizations update --localization-id "LOC_ID" --description "Updated description"
asc iap versions localizations list --version-id "VERSION_ID" --paginate --output table
Apple's live service also rejects empty descriptions and `--clear-description
Read more
name: asc-subscription-localization description: Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.
asc subscription localization
Use this skill to bulk-create or bulk-update display names and, where supported, descriptions for subscriptions, subscription groups, and in-app purchases across all App Store Connect locales. This eliminates the tedious manual process of clicking through each language in App Store Connect to set the same display name.
Preconditions
- Auth configured (`asc auth login` or `ASC_*` env vars).
- Know your app ID (`ASC_APP_ID` or `--app`).
- Subscription groups and subscriptions already exist.
Choose the API scope first
API 4.4.1 adds discrete versions for IAPs, subscriptions, and subscription groups. A version ID is different from its product, subscription, or group ID.
- Use `asc ... versions localizations ...` for all new localization work.
- Do not use the product- or group-scoped v1 localization commands. API 4.4.1
deprecates those resources, and the CLI now emits migration warnings for their compatibility commands.
- Never pass a product, subscription, or group ID to a version-scoped command.
Resolve or create versions before localizing them:
asc iap versions list --iap-id "IAP_ID" --state PREPARE_FOR_SUBMISSION --paginate --output table asc subscriptions versions list --subscription-id "SUB_ID" --state PREPARE_FOR_SUBMISSION --paginate --output table asc subscriptions groups versions list --group-id "GROUP_ID" --state PREPARE_FOR_SUBMISSION --paginate --output table
Branch independently on each list result: zero matches means create, one means reuse that version ID, and more than one means stop and require an explicit version ID. Run each command below only for its zero-match branch:
# If and only if the IAP version list returned zero matches: asc iap versions create --iap-id "IAP_ID" --output json # If and only if the subscription version list returned zero matches: asc subscriptions versions create --subscription-id "SUB_ID" --output json # If and only if the group version list returned zero matches: asc subscriptions groups versions create --group-id "GROUP_ID" --output json
None of the three version families has a version delete command. List and reuse the single `PREPARE_FOR_SUBMISSION` version; create only for zero matches, and stop for an explicit ID when multiple matches exist. Live parent deletion did not cascade IAP or subscription versions, so do not assume parent deletion cleans up versions created for testing.
Supported App Store Locales
These are the locales supported by App Store Connect for subscription and IAP localizations:
ar-SA, ca, cs, da, de-DE, el, en-AU, en-CA, en-GB, en-US, es-ES, es-MX, fi, fr-CA, fr-FR, he, hi, hr, hu, id, it, ja, ko, ms, nl-NL, no, pl, pt-BR, pt-PT, ro, ru, sk, sv, th, tr, uk, vi, zh-Hans, zh-Hant
Workflow: Bulk-localize a subscription version (v2)
List existing localizations, create only missing locales, then verify:
asc subscriptions versions localizations list --version-id "VERSION_ID" --paginate --output table asc subscriptions versions localizations create --version-id "VERSION_ID" --locale "LOCALE" --name "Display Name" --description "Description" asc subscriptions versions localizations list --version-id "VERSION_ID" --paginate --output table
Updates distinguish omitted values, non-empty strings, and JSON `null`:
asc subscriptions versions localizations update --id "LOC_ID" --name "New Name" --description "Updated description"
Do not combine a value flag with its matching `--clear-name` or `--clear-description` flag. The 4.4.1 schema permits JSON `null`, but Apple's live service currently rejects both an empty `--description` and `--clear-description` for subscription-version localizations because the description must contain at least one character.
Creating a missing subscription-version localization therefore requires a non-empty description. A display-name-only run may update the name of an existing localization, but must not create a missing locale until the user provides a non-empty locale-specific or shared fallback description.
Workflow: Bulk-localize a subscription group version (v2)
asc subscriptions groups versions localizations list --version-id "VERSION_ID" --paginate --output table asc subscriptions groups versions localizations create --version-id "VERSION_ID" --locale "LOCALE" --name "Group Display Name" --custom-app-name "My App" asc subscriptions groups versions localizations update --id "LOC_ID" --name "Updated Group Display Name" --custom-app-name "My App" asc subscriptions groups versions localizations list --version-id "VERSION_ID" --paginate --output table
Clearing metadata is a separate, explicit opt-in operation. After confirming that the user wants to remove an existing custom app name, run:
asc subscriptions groups versions localizations update --id "LOC_ID" --clear-custom-app-name
Do not include `--clear-name` or `--clear-custom-app-name` in the standard bulk localization workflow. Use either flag only when JSON `null` is deliberately intended; omitting the flag leaves that attribute unchanged.
Workflow: Bulk-localize an IAP version (v2)
asc iap versions localizations list --version-id "VERSION_ID" --paginate --output table asc iap versions localizations create --version-id "VERSION_ID" --locale "LOCALE" --name "Display Name" --description "Description" asc iap versions localizations update --localization-id "LOC_ID" --description "Updated description" asc iap versions localizations list --version-id "VERSION_ID" --paginate --output table
Apple's live service also rejects empty descriptions and `--clear-description
A collection of Agent Skills for shipping with the asc cli (asc). These skills help agents run builds, TestFlight, metadata, submissions, signing, and Apple Ads workflows. This is a community-maintained, unofficial skill pack and is not affiliated with Apple.
Other skills on asc.
- /asc-app-create-ui
Create a new App Store Connect app record via browser automation. Use when there is no public API for app creation and you need an agent to drive the New App form.
Open skill - /asc-apple-ads
Use when managing Apple Ads with asc, including auth, org lookup, campaigns, ad groups, ads, keywords, reports, raw API calls, and safe live testing.
Open skill - /asc-aso-audit
Run an offline ASO audit on canonical App Store metadata under `./metadata` and surface keyword gaps using Astro MCP. Use after pulling metadata with `asc metadata pull`.
Open skill - /asc-build-lifecycle
Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing.
Open skill - /asc-cli-usage
Guidance for using asc cli in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design asc commands or interact with App Store Connect via the CLI.
Open skill - /asc-crash-triage
Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch diagnostics, or wants a crash summary for a build or app.
Open skill

