
Asc Id Resolver
- 1.3k installs
- 934 repo stars
- Updated July 21, 2026
- rudrankriyam/asc-skills
This is a copy of asc-id-resolver by rudrankriyam - installs and ranking accrue to the original listing.
asc-id-resolver is a mobile release skill that translates App Store Connect app names, bundle identifiers, and version strings into numeric IDs required by asc CLI commands for builds, versions, and tester groups.
About
asc-id-resolver is an asc-skills helper for mapping human-friendly App Store Connect identifiers to numeric IDs other asc commands require. The skill documents asc apps list lookups by bundle ID or name, paginated asc apps --paginate, ASC_APP_ID defaults, latest build resolution with asc builds info --latest --version and --platform IOS, recent build listing with --sort -uploadedDate --limit 5, and version ID queries via asc versions list. Developers reach for asc-id-resolver whenever an asc workflow fails because a command needs an app, build, version, or tester group ID instead of a display name or bundle identifier.
- Resolves App IDs by bundle ID or name using asc apps list
- Fetches latest Build ID with version and platform filters
- Retrieves Version, TestFlight Group, Tester, and Review Submission IDs
- Supports --paginate and --sort guardrails for deterministic results
- Default JSON output with optional --pretty, table, or markdown formatting
Asc Id Resolver by the numbers
- 1,298 all-time installs (skills.sh)
- +25 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-id-resolverAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.3k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rudrankriyam/asc-skills ↗ |
How do you find App Store Connect IDs?
Translate human-readable app names, bundle identifiers, and version strings into the exact numeric IDs that App Store Connect CLI commands require.
Who is it for?
iOS developers running asc CLI release commands who have app names or bundle IDs but need numeric App Store Connect IDs.
Skip if: Android Play Console workflows or teams not using the asc App Store Connect CLI.
When should I use this skill?
An asc CLI command requires numeric App Store Connect IDs and the user only has app names, bundle IDs, or version strings.
What you get
Resolved numeric App Store Connect IDs for apps, builds, versions, and tester groups plus ASC_APP_ID environment defaults for asc CLI workflows.
- Resolved app/build/version IDs
- ASC_APP_ID environment variable
By the numbers
- Documents asc builds list with --limit 5 for recent builds
- Supports IOS platform flag on build resolution commands
Files
asc id resolver
Use this skill to map names to IDs needed by other commands.
App ID
- By bundle ID or name:
asc apps list --bundle-id "com.example.app"asc apps list --name "My App"- Fetch everything:
asc apps --paginate- Set default:
ASC_APP_ID=...
Build ID
- Latest build:
asc builds info --app "APP_ID" --latest --version "1.2.3" --platform IOS- Recent builds:
asc builds list --app "APP_ID" --sort -uploadedDate --limit 5
Version ID
asc versions list --app "APP_ID" --paginate
TestFlight IDs
- Groups:
asc testflight groups list --app "APP_ID" --paginate- Testers:
asc testflight testers list --app "APP_ID" --paginate
Pre-release version IDs
asc testflight pre-release list --app "APP_ID" --platform IOS --paginate
Review submission IDs
asc review submissions-list --app "APP_ID" --paginate
Output tips
- JSON is default; use
--prettyfor debug. - For human viewing, use
--output tableor--output markdown.
Guardrails
- Prefer
--paginateon list commands to avoid missing IDs. - Use
--sortwhere available to make results deterministic.
Related skills
How it compares
Use when asc CLI commands need numeric IDs resolved from names rather than general iOS App Store marketing or metadata editing.
FAQ
How does asc-id-resolver find an app ID?
asc-id-resolver uses asc apps list with --bundle-id or --name filters, supports asc apps --paginate for full listings, and recommends setting ASC_APP_ID as the default for later commands.
How do I get the latest build ID with asc?
asc-id-resolver documents asc builds info --app APP_ID --latest --version 1.2.3 --platform IOS and asc builds list --sort -uploadedDate --limit 5 for recent builds.
Is Asc Id Resolver safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.