$npx -y skills add hanamizuki/solopreneur --skill asc-id-resolverResolve App Store Connect IDs (apps, builds, app and digital-goods versions, groups, testers) from human-friendly names using asc. Use when commands require IDs.
| 1 | # asc id resolver |
| 2 | |
| 3 | Use this skill to map names to IDs needed by other commands. |
| 4 | |
| 5 | ## App ID |
| 6 | - By bundle ID or name: |
| 7 | - `asc apps list --bundle-id "com.example.app"` |
| 8 | - `asc apps list --name "My App"` |
| 9 | - Fetch everything: |
| 10 | - `asc apps list --paginate` |
| 11 | - Set default: |
| 12 | - `ASC_APP_ID=...` |
| 13 | |
| 14 | ## Build ID |
| 15 | - Latest build: |
| 16 | - `asc builds info --app "APP_ID" --latest --version "1.2.3" --platform IOS` |
| 17 | - Recent builds: |
| 18 | - `asc builds list --app "APP_ID" --sort -uploadedDate --limit 5` |
| 19 | |
| 20 | ## Version ID |
| 21 | - `asc versions list --app "APP_ID" --paginate` |
| 22 | |
| 23 | ## Digital-goods version IDs |
| 24 | |
| 25 | API 4.4.1 version IDs are distinct from IAP product, subscription, and |
| 26 | subscription-group IDs: |
| 27 | |
| 28 | Resolve the owning resources first: |
| 29 | |
| 30 | - IAPs: `asc iap list --app "APP_ID" --paginate --output json` |
| 31 | - Subscription groups: `asc subscriptions groups list --app "APP_ID" --paginate --output json` |
| 32 | - Subscriptions: `asc subscriptions list --app "APP_ID" --paginate --output json` |
| 33 | or `asc subscriptions list --group-id "GROUP_ID" --paginate --output json` |
| 34 | |
| 35 | Then resolve their version IDs: |
| 36 | |
| 37 | - IAP versions: `asc iap versions list --iap-id "IAP_ID" --paginate --output json` |
| 38 | - Subscription versions: `asc subscriptions versions list --subscription-id "SUB_ID" --paginate --output json` |
| 39 | - Subscription group versions: `asc subscriptions groups versions list --group-id "GROUP_ID" --paginate --output json` |
| 40 | |
| 41 | Resolve child localization or image IDs from the corresponding version subtree: |
| 42 | |
| 43 | - IAP localizations: `asc iap versions localizations list --version-id "VERSION_ID" --paginate --output json` |
| 44 | - IAP primary image: `asc iap versions image --version-id "VERSION_ID" --output json` |
| 45 | - IAP image collection: `asc iap versions images list --version-id "VERSION_ID" --paginate --output json` |
| 46 | - Subscription localizations: `asc subscriptions versions localizations list --version-id "VERSION_ID" --paginate --output json` |
| 47 | - Subscription primary image: `asc subscriptions versions images primary --version-id "VERSION_ID" --output json` |
| 48 | - Subscription image collection: `asc subscriptions versions images list --version-id "VERSION_ID" --paginate --output json` |
| 49 | - Subscription-group localizations: `asc subscriptions groups versions localizations list --version-id "VERSION_ID" --paginate --output json` |
| 50 | |
| 51 | ## TestFlight IDs |
| 52 | - Groups: |
| 53 | - `asc testflight groups list --app "APP_ID" --paginate` |
| 54 | - Testers: |
| 55 | - `asc testflight testers list --app "APP_ID" --paginate` |
| 56 | |
| 57 | ## Pre-release version IDs |
| 58 | - `asc testflight pre-release list --app "APP_ID" --platform IOS --paginate` |
| 59 | |
| 60 | ## Review submission IDs |
| 61 | - `asc review submissions-list --app "APP_ID" --paginate` |
| 62 | |
| 63 | ## Output tips |
| 64 | - Output defaults are TTY-aware: table in a terminal and minified JSON in pipes |
| 65 | or CI. An explicit `--output` wins. |
| 66 | - Use explicit `--output json` for automation and add `--pretty` only for |
| 67 | human-readable JSON. |
| 68 | - For human viewing, use `--output table` or `--output markdown`. |
| 69 | |
| 70 | ## Guardrails |
| 71 | - Prefer `--paginate` on list commands to avoid missing IDs. |
| 72 | - Use `--sort` where available to make results deterministic. |