Claude Agent Skill · by Rudrankriyam

Asc Id Resolver

Install Asc Id Resolver skill for Claude Code from rudrankriyam/app-store-connect-cli-skills.

Install
Terminal · npx
$npx skills add https://github.com/rudrankriyam/app-store-connect-cli-skills --skill asc-id-resolver
Works with Paperclip

How Asc Id Resolver fits into a Paperclip company.

Asc Id Resolver drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

E
E-Commerce EmpirePaired

Pre-configured AI company — 20 agents, 9 skills, one-time purchase.

$59$89
Explore pack
Source file
SKILL.md46 lines
Expand
---name: asc-id-resolverdescription: Resolve App Store Connect IDs (apps, builds, versions, groups, testers) from human-friendly names using asc. Use when commands require IDs.--- # 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 `--pretty` for debug.- For human viewing, use `--output table` or `--output markdown`. ## Guardrails- Prefer `--paginate` on list commands to avoid missing IDs.- Use `--sort` where available to make results deterministic.