
Asc Cli Usage
- 2.2k installs
- 934 repo stars
- Updated July 21, 2026
- rorkai/app-store-connect-cli-skills
This is a copy of asc-cli-usage by rudrankriyam - installs and ranking accrue to the original listing.
asc-cli-usage is a Claude Code skill that teaches developers to discover, format, and run App Store Connect CLI commands for submitting builds, managing versions, and executing iOS release workflows.
About
asc-cli-usage is a repo-specific skill for the asc App Store Connect CLI that guides command discovery, flag selection, output formats, pagination, authentication, and schema inspection. Developers use asc --help, asc search for deterministic local command lookup, and asc schema for structured API exploration when designing release automation. The skill applies when running or designing asc commands to upload builds, list versions, or submit apps for Apple review. Teams reach for asc-cli-usage when CI scripts or agents must interact with App Store Connect without guessing command paths or misconfiguring auth and pagination flags.
- Always start with `--help`, `asc search`, `asc schema`, or `asc capabilities` for deterministic command discovery
- 4 canonical discovery commands: asc --help, asc search, asc schema, asc capabilities
- Prefers `view` over legacy `get` and `edit` for update-only flows
- Explains pagination, output formats (table/markdown), authentication patterns, and partial vs public API coverage
- Guides design of safe, repeatable asc commands before execution
Asc Cli Usage by the numbers
- 2,220 all-time installs (skills.sh)
- +239 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rorkai/app-store-connect-cli-skills --skill asc-cli-usageAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2.2k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rorkai/app-store-connect-cli-skills ↗ |
How do you submit iOS builds with asc CLI?
Correctly discover, format, and run App Store Connect CLI commands for submitting builds, managing versions, and handling release workflows.
Who is it for?
iOS developers and release engineers automating App Store Connect workflows with the asc CLI in CI or agent sessions.
Skip if: Android developers using Google Play Console or teams managing releases only through Xcode GUI without CLI automation.
When should I use this skill?
The user asks to run asc commands, upload an iOS build, submit for review, or discover App Store Connect CLI flags and pagination.
What you get
Correct asc CLI commands, authenticated API calls, paginated listings, and submitted App Store Connect release actions.
- asc CLI command sequences
- Release workflow scripts
By the numbers
- Documents 3 discovery methods: asc --help, asc search, and asc schema
Files
asc cli usage
Use this skill when you need to run or design asc commands for App Store Connect.
Command discovery
- Always use
--helpto discover commands and flags. asc --helpasc builds --helpasc builds list --help- Use
asc searchfor local, deterministic command discovery when you know the workflow but not the command path. asc search "submit app for review"asc search --output table "upload build"- Use
asc schemato inspect bundled App Store Connect endpoint schemas and request/query fields before designing API-facing commands. asc schema --pretty "GET /v1/apps"asc schema --method POST appStoreVersions- Use
asc capabilitiesto explain CLI-supported, partial, web-only, and public-API-limited workflow coverage. asc capabilities --area release --output tableasc capabilities --status not-public-api --output markdown
Canonical verbs (current asc)
- Prefer
viewover legacygetaliases for read-only commands in docs and automation. asc apps view --id "APP_ID"asc versions view --version-id "VERSION_ID"asc pricing availability view --app "APP_ID"- Prefer
editfor update-only availability surfaces and other canonical edit flows. asc pricing availability edit --app "APP_ID" --territory "USA,GBR" --available trueasc app-setup availability edit --app "APP_ID" --territory "USA,GBR" --available trueasc xcode version edit --build-number "42"- Keep
setwhere the CLI intentionally models a higher-level replacement/configuration flow and--helpstill showssetas the canonical verb.
Flag conventions
- Use explicit long flags (e.g.,
--app,--output). - Prefer explicit flags in automation; some newer commands can prompt for missing fields when run interactively.
- Destructive operations require
--confirm. - Use
--paginatewhen the user wants all pages.
Output formats
- Output defaults are TTY-aware:
tablein interactive terminals,jsonwhen piped or non-interactive. - Use
--output tableor--output markdownonly for human-readable output. --prettyis only valid with JSON output.
Authentication and defaults
- Prefer keychain auth via
asc auth login. - Fallback env vars:
ASC_KEY_ID,ASC_ISSUER_ID,ASC_PRIVATE_KEY_PATH,ASC_PRIVATE_KEY,ASC_PRIVATE_KEY_B64. ASC_APP_IDcan provide a default app ID.- When permissions are unclear, inspect exact API key role coverage with
asc web auth capabilities. - This lives under the experimental web auth surface.
- It can resolve the current local auth by default, or inspect a specific key with
--key-id.
Apple Ads
- Use
asc ads --helpbefore choosing a command. - Apple Ads uses
asc ads auth,--ads-profile, andASC_ADS_*variables. It does not use App Store Connect API credentials. - Resolve org access with
asc ads acls --output jsonunless the org ID is already known. - Most endpoint commands need
--orgorASC_ADS_ORG_ID. - Body commands use
--filewith Apple Ads JSON payloads. Object endpoints need a JSON object. Bulk endpoints often need a JSON array. - Use
--paginateonly where help shows it. Reporting and selector payloads carry pagination inside the JSON file. - Destructive commands and bulk delete commands require
--confirm. - For live mutation tests, create paused resources with a clear test name and delete the parent campaign when done.
Timeouts
ASC_TIMEOUT/ASC_TIMEOUT_SECONDScontrol request timeouts.ASC_UPLOAD_TIMEOUT/ASC_UPLOAD_TIMEOUT_SECONDScontrol upload timeouts.
Related skills
How it compares
Pick asc-cli-usage for agent-guided asc CLI release automation instead of manual Xcode Organizer-only workflows.
FAQ
How does asc-cli-usage help find asc commands?
The asc-cli-usage skill recommends asc --help for flag discovery and asc search for deterministic local lookup when you know the workflow, such as submit app for review or upload build, plus asc schema for structured exploration.
What release tasks does asc-cli-usage cover?
The asc-cli-usage skill covers designing and running asc commands for build uploads, version management, pagination, authentication, and App Store review submission workflows through the App Store Connect CLI.
Is Asc Cli Usage safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.