
Asc Id Resolver
- 2.4k installs
- 934 repo stars
- Updated July 21, 2026
- rudrankriyam/app-store-connect-cli-skills
asc-id-resolver maps App Store Connect names to app, build, version, and TestFlight IDs via asc list commands.
About
The asc-id-resolver skill maps human-friendly App Store Connect names to IDs required by other asc commands. App IDs are found by bundle ID or name via asc apps list, with paginate for full inventories and ASC_APP_ID for defaults. Build IDs come from asc builds info with latest and version filters or recent asc builds list sorted by upload date. Version, TestFlight group, tester, pre-release, and review submission IDs each have dedicated list commands with paginate recommended to avoid missing entries. Output tips note JSON default, pretty for debug, and table or markdown for human viewing. Guardrails stress paginate on lists and sort where available for deterministic results. Teams invoke this skill before TestFlight orchestration, build lifecycle, or publish flows whenever commands need stable IDs instead of display names. It complements sibling asc skills by preventing failed operations caused by ambiguous app or group labels across large accounts.
- Resolve app IDs by bundle ID, name, or paginated apps list.
- Fetch latest or recent build IDs with version and platform filters.
- List version, TestFlight group, tester, and submission IDs.
- JSON default with pretty, table, or markdown output options.
- Use --paginate and --sort for complete deterministic ID lists.
Asc Id Resolver by the numbers
- 2,445 all-time installs (skills.sh)
- +48 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #88 of 1,048 Mobile Development skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
asc-id-resolver capabilities & compatibility
- Capabilities
- app lookup by bundle id or display name · latest and recent build id resolution · testflight group and tester id listing · pre release and review submission id discovery · output format and pagination guardrails
- Use cases
- orchestration · devops
What asc-id-resolver says it does
Use this skill to map names to IDs needed by other commands.
npx skills add https://github.com/rudrankriyam/app-store-connect-cli-skills --skill asc-id-resolverAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2.4k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rudrankriyam/app-store-connect-cli-skills ↗ |
How do I find the App Store Connect IDs other asc commands require when I only know names or bundle IDs?
Resolve App Store Connect app, build, version, TestFlight group, and submission IDs from names using asc list commands.
Who is it for?
asc CLI users who need stable IDs before TestFlight, build, or review commands.
Skip if: Skip when IDs are already known or when not using the asc CLI toolchain.
When should I use this skill?
User needs APP_ID, BUILD_ID, group ID, or asks asc apps list, builds info --latest.
What you get
Resolved IDs for apps, builds, groups, testers, and submissions ready for downstream asc automation.
- resolved app IDs
- build and version IDs
- ASC_APP_ID environment default
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
Forks & variants (3)
Asc Id Resolver has 3 known copies in the catalog totaling 3.4k installs. They canonicalize to this original listing.
- rorkai - 2.1k installs
- rudrankriyam - 1.3k installs
- ehmo - 1 installs
How it compares
Use asc-id-resolver before other asc skills whenever CLI commands expect numeric IDs rather than human-readable app or version names.
FAQ
How do I get the latest build ID?
Use asc builds info --app APP_ID --latest --version 1.2.3 --platform IOS or list recent builds sorted by upload date.
What if my app list is incomplete?
Add --paginate to list commands so paginated results do not miss IDs on large accounts.
Can I set a default app ID?
Yes, export ASC_APP_ID after resolving the target app from asc apps list.
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.