A fast, lightweight, and scriptable CLI for the App Store Connect API. Automate iOS, macOS, tvOS, and visionOS release workflows from your terminal, IDE, or CI/CD pipeline.
- asc skills
- Sponsors
- Quick Start
- Wall of Apps
- Common Workflows
- Commands and Reference
- Documentation
- Contributing
- License
Agent Skills for automating asc workflows including builds, TestFlight, metadata sync, submissions, and signing:
https://github.com/rudrankriyam/app-store-connect-cli-skills
Rork helps you build real mobile apps by chatting with AI, going from idea to phone in minutes and to the App Store in hours.
# Homebrew (recommended)
brew install asc
# Install script (macOS/Linux)
curl -fsSL https://asccli.sh/install | bashFor source builds and contributor setup, see CONTRIBUTING.md.
asc auth login \
--name "MyApp" \
--key-id "ABC123" \
--issuer-id "DEF456" \
--private-key /path/to/AuthKey.p8Generate API keys at: https://appstoreconnect.apple.com/access/integrations/api
asc apps listasc chooses a default --output based on where stdout is connected:
- Interactive terminal (TTY):
table - Non-interactive output (pipes/files/CI):
json
You can still set a global preference:
export ASC_DEFAULT_OUTPUT=markdownAnd explicit flags always win:
asc apps list --output jsonWant to add yours?
asc apps wall submit --app "1234567890" --confirm
The command uses your authenticated gh session to fork the repo and open a pull request that updates docs/wall-of-apps.json.
It resolves the public App Store name, URL, and icon from the app ID automatically. For manual entries that are not on the public App Store yet, use --link with --name.
Use asc apps wall submit --dry-run to preview the fork, branch, and PR plan before creating anything.
asc testflight feedback list --app "123456789" --paginate
asc testflight crashes list --app "123456789" --sort -createdDate --limit 10
asc testflight crashes log --submission-id "SUBMISSION_ID"asc builds upload --app "123456789" --ipa "/path/to/MyApp.ipa"
asc builds list --app "123456789" --output table
asc testflight groups list --app "123456789" --output table# Dry-run first to preview steps
asc release run --app "123456789" --version "1.2.3" --build "BUILD_ID" --metadata-dir "./metadata/version/1.2.3" --dry-run
# Run the full pipeline: ensure version, apply metadata, attach build, validate, submit
asc release run --app "123456789" --version "1.2.3" --build "BUILD_ID" --metadata-dir "./metadata/version/1.2.3" --confirm
# Monitor status after submission
asc status --app "123456789"Lower-level alternatives (for scripting or partial workflows):
asc validate --app "123456789" --version "1.2.3"
asc submit create --app "123456789" --version "1.2.3" --build "BUILD_ID" --confirmasc localizations list --app "123456789"
asc apps info view --app "123456789" --output json --prettyasc screenshots list --app "123456789"
asc video-previews list --app "123456789"asc certificates list
asc profiles list
asc bundle-ids listasc workflow run releaseSee docs/WORKFLOWS.md for a copyable .asc/workflow.json
and ExportOptions.plist that use asc builds latest, asc xcode archive,
asc xcode export, and asc publish testflight --group ... --wait.
asc workflow validate
asc workflow run --dry-run testflight_beta VERSION:1.2.3
asc workflow run testflight_beta VERSION:1.2.3# Trigger from a pull request
asc xcode-cloud run --workflow-id "WORKFLOW_ID" --pull-request-id "PR_ID"
# Rerun from an existing build run with a clean build
asc xcode-cloud run --source-run-id "BUILD_RUN_ID" --clean
# Fetch a single build run by ID
asc xcode-cloud build-runs get --id "BUILD_RUN_ID"Use built-in help as the source of truth:
asc --help
asc <command> --help
asc <command> <subcommand> --helpFor full command families, flags, and discovery patterns, see:
- docs/CI_CD.md - CI/CD integration guides (GitHub Actions, GitLab, Bitrise, CircleCI)
- docs/COMMANDS.md - Command families and reference navigation
- docs/WORKFLOWS.md - Reusable workflow patterns, including local Xcode to TestFlight
- docs/API_NOTES.md - API quirks and behaviors
- docs/CONTRIBUTING.md - CLI development and testing notes
- docs/TESTING.md - Testing patterns and conventions
- docs/openapi/README.md - Offline OpenAPI snapshot + update flow
- CONTRIBUTING.md - Contribution guide
Local screenshot framing uses Koubou (pinned to 0.14.0) for deterministic device-frame rendering.
GitHub: https://github.com/bitomule/koubou
Simulator UI automation for screenshot capture and interactions uses AXe CLI. GitHub: https://github.com/cameroncooke/AXe
Contributions are welcome. See CONTRIBUTING.md for details.
MIT License - see LICENSE for details.
Built with Cursor
This project is an independent, unofficial tool and is not affiliated with, endorsed by, or sponsored by Apple Inc. App Store Connect, TestFlight, Xcode Cloud, and Apple are trademarks of Apple Inc., registered in the U.S. and other countries.
