asc-id-resolver
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseASC ID Resolver
ASC ID解析工具
Use this skill to map names to IDs needed by other commands.
使用此技能将名称映射为其他命令所需的ID。
App ID
应用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=...
- 通过Bundle ID或名称获取:
asc apps list --bundle-id "com.example.app"asc apps list --name "My App"
- 获取全部应用:
asc apps --paginate
- 设置默认应用ID:
ASC_APP_ID=...
Build ID
构建版本ID
- Latest build:
asc builds latest --app "APP_ID" --version "1.2.3" --platform IOS
- Recent builds:
asc builds list --app "APP_ID" --sort -uploadedDate --limit 5
- 获取最新构建版本:
asc builds latest --app "APP_ID" --version "1.2.3" --platform IOS
- 获取近期构建版本:
asc builds list --app "APP_ID" --sort -uploadedDate --limit 5
Version ID
版本ID
asc versions list --app "APP_ID" --paginate
asc versions list --app "APP_ID" --paginate
TestFlight IDs
TestFlight ID
- Groups:
asc beta-groups list --app "APP_ID" --paginate
- Testers:
asc beta-testers list --app "APP_ID" --paginate
- 测试组:
asc beta-groups list --app "APP_ID" --paginate
- 测试人员:
asc beta-testers list --app "APP_ID" --paginate
Pre-release version IDs
预发布版本ID
asc pre-release-versions list --app "APP_ID" --platform IOS --paginate
asc pre-release-versions list --app "APP_ID" --platform IOS --paginate
Review submission IDs
审核提交ID
asc review submissions-list --app "APP_ID" --paginate
asc review submissions-list --app "APP_ID" --paginate
Output tips
输出提示
- JSON is default; use for debug.
--pretty - For human viewing, use or
--output table.--output markdown
- 默认输出为JSON格式;使用参数便于调试。
--pretty - 若要便于人工查看,可使用或
--output table参数。--output markdown
Guardrails
注意事项
- Prefer on list commands to avoid missing IDs.
--paginate - Use where available to make results deterministic.
--sort
- 在列表命令中优先使用参数,避免遗漏ID。
--paginate - 在支持的情况下使用参数,确保结果的确定性。
--sort