TopGit
GitHub Repo Review

App Store Connect CLI: App Store Connect CLI automation

rorkai/App-Store-Connect-CLI
ATopGit review image for rorkai/App-Store-Connect-CLI
Review by Topgit.dev for rorkai/App-Store-Connect-CLI, with GitHub repository stats and README context.
Quick verdict

App Store Connect CLI replaces manual App Store Connect browser work with scriptable commands. JSON-first output plays nicely in pipelines, TTY detection is a nice touch, and optional telemetry plus stability labels help in CI. The catch: it is unofficial, so Apple API changes can bite. Worth it once you need CI-driven releases or any repetitive App Store task. Skip it if a manual upload is all you ever do.

Stars
β˜… 5.9k
Forks
β‘‚ 509
Contributors
πŸ‘₯ 281
Language
Go
License
MIT
Topic
β€”
Updated
Aug 2026
Homepage

What is App Store Connect CLI?

App Store Connect CLI is a command-line interface for the App Store Connect API. It automates iOS, macOS, tvOS, and visionOS releases from any terminal or CI pipeline. Commands cover the full release lifecycle: uploading builds, managing TestFlight groups, submitting to the App Store, syncing metadata and screenshots, reviewing certificate and provisioning profile status, and more. Output defaults to JSON for scripting and tables for interactive use.

Key Automation Capabilities

  • βœ“JSON-first command output designed for piping into other tools, with `--output` flags for table, JSON, or markdown
  • βœ“TTY detection switches between table output in terminals and JSON in pipelines automatically
  • βœ“Full authentication via App Store Connect API keys with keychain and file-backed options for CI environments
  • βœ“Commands for builds, TestFlight, app submissions, metadata, screenshots, certificates, profiles, and bundle IDs
  • βœ“Apple Ads campaign management and StoreKit Retention Messaging on their own credential systems
  • βœ“Xcode Cloud integration for triggering and monitoring workflows from pull requests
  • βœ“asc skills command installs 23 reviewed agent skills for Claude Code and similar AI assistants
  • βœ“Stability labels mark commands as stable, experimental, or deprecated so CI scripts know what to expect
How this repository's GitHub stars have grown over time. Source: star-history.com.View the star history β†—

Common Automation Workflows

  • β€’Upload an IPA or PKG build to TestFlight and add it to a beta group from a GitHub Actions job
  • β€’Submit an app to the App Store with metadata copied from the previous version
  • β€’Audit keyword metadata across all locales for an app before publishing
  • β€’Trigger an Xcode Cloud workflow from a pull request and poll for the build result
  • β€’Automate screenshot uploads for multiple device types and locales in one pass
  • β€’Manage App Store Connect API certificates and provisioning profiles from scripts

Installing the CLI Tool

Install via Homebrew on macOS/Linux with `brew install asc`, use the install script at `https://asccli.sh/install`, or download binaries directly from GitHub releases. Windows users can install via WinGet once the package is approved. Released binaries are self-contained and do not require a Go toolchain. Source builds require following the CONTRIBUTING.md guide and the declared Go version from go.mod.

Getting Started with Commands

Authenticate once with `asc auth login` using your App Store Connect API key ID, issuer ID, and private key path. Then run commands like `asc apps list`, `asc builds upload --app APP_ID --ipa ./build.ipa`, or `asc testflight feedback list`. Output flags control format: `--output json`, `--output table`, or `--output markdown`. Use `--pretty` for readable JSON in terminals. Run `asc --help` for the full command tree or `asc <command> --help` for a specific subcommand. Chain commands with workflows using `asc workflow run testflight_beta VERSION:1.2.3`. Preview any workflow with `--dry-run` before executing.

Strengths

  • βœ“Wraps the entire App Store Connect API surface into one installable binaryβ€”no additional runtime dependencies
  • βœ“JSON output by default in non-interactive contexts makes CI/CD integration straightforward
  • βœ“Supports a wide range of domains beyond builds: screenshots, metadata, certificates, Apple Ads, StoreKit Retention Messaging
  • βœ“Agent skills install adds 23 reviewed skills for AI coding assistants to work with the CLI
  • βœ“Telemetry is opt-out and clearly documented, covering only anonymized command-level metadata

Considerations and Limitations

  • β–³This is an unofficial, community-maintained tool with no guarantee of API stability from Apple
  • β–³Apple can change the underlying API at any time, potentially breaking workflows without warning
  • β–³The CLI covers a broad surface area, which means a steeper learning curve when first getting started
  • β–³Bulk operations require multiple API calls with no built-in batching or caching layer
  • β–³Teams relying on it in production need to manage App Store Connect API key credentials as secrets
  • β–³Support comes from GitHub Discussions and Issues, not from Apple or a dedicated support team

Alternatives to App Store Connect CLI

Spacesv β€” Node.js-based App Store Connect wrapper with a different API design and plugin ecosystemTransporter β€” Apple's official upload tool for builds and content, limited to file delivery without scriptingFastlane β€” comprehensive iOS/Android automation suite with a large community and plugins, but heavier to set up

Frequently Asked Questions

Does App Store Connect CLI collect telemetry data?

Yes, it sends pseudonymous command-level telemetry by default. This includes CLI version, OS, architecture, command path, duration, and HTTP status on failuresβ€”but never raw arguments, credentials, Apple account IDs, or file paths. Disable it with `asc telemetry disable` or the `ASC_TELEMETRY_DISABLED=1` environment variable.

How do I authenticate App Store Connect CLI in CI/CD environments?

Use `asc auth login` with `--bypass-keychain` and your App Store Connect API key ID, issuer ID, and private key path. Store the key file as a secret in your CI system. For repo-local credentials, add `--local` to write to `.asc/config.json`.

Can I change the default output format of App Store Connect CLI commands?

Yes. Set `ASC_DEFAULT_OUTPUT` to your preferred format, or use `--output json`, `--output table`, or `--output markdown` on any command. Explicit flags always override the default.

What kind of support is available for App Store Connect CLI?

Community support through GitHub Discussions for setup help and workflow questions. GitHub Issues handles reproducible bugs and feature requests. There is no paid or official Apple support channel.

Is App Store Connect CLI an official Apple tool?

No. It is an independent, community-maintained tool not affiliated with or endorsed by Apple. Apple Inc. holds the trademarks for App Store Connect, TestFlight, Xcode Cloud, and Apple.

What license does App Store Connect CLI use?

MIT License. You can use it freely in commercial and personal projects, modify it, and distribute it subject to the license terms.

The problem it solves

Publishing iOS and macOS apps requires navigating App Store Connect in a browser for builds, TestFlight distribution, app submissions, metadata updates, and screenshot uploads. These tasks are slow, error-prone when done by hand, and block automation in CI/CD pipelines.

Who should try it β€” and who should skip

Reach for App Store Connect CLI when you need CI-driven releases, repetitive TestFlight uploads, or scriptable metadata management. It suits teams already using App Store Connect API keys and developers who want a lightweight alternative to fastlane. Skip it if you only upload builds manually, lack API key management infrastructure, or prefer the web interface for occasional tasks. Teams with existing fastlane setups should weigh the switching cost carefully before migrating.

Related repositories

Source & attribution

Source: https://github.com/rorkai/App-Store-Connect-CLI

GitHub data Β· last synced Aug 15, 2026Reviewed by Henry
← Back to TopGit

Curious whether App-Store-Connect-CLI is right for you?

Let ChatGPT, Claude, or Perplexity look into it β€” click below and see what AI actually says about App-Store-Connect-CLI.

GitHub