This file is generated from live CLI help output. For authoritative command behavior, also use:
asc --help
asc <command> --help
asc <command> <subcommand> --helpTo regenerate:
make generate-command-docsasc <subcommand> [flags]--api-debug- Enable HTTP debug logging to stderr (redacts sensitive values)--debug- Enable debug logging to stderr--profile- Use named authentication profile--report- Report format for CI output (e.g., junit)--report-file- Path to write CI report file--retry-log- Enable retry logging to stderr (overrides ASC_RETRY_LOG/config when set)--strict-auth- Fail when credentials are resolved from multiple sources (default: false)--version- Print version and exit (default: false)
auth- Manage authentication for the App Store Connect API.doctor- Diagnose authentication configuration issues.install-skills- Install the asc skill pack for App Store Connect workflows.init- Initialize asc helper docs in the current repo.docs- Access embedded documentation guides and reference helpers.
web- [experimental] Unofficial web-session workflows (discouraged).
analytics- Request and download analytics and sales reports.insights- Generate weekly and daily insights from App Store data sources.finance- Download payments and financial reports.performance- Access performance metrics and diagnostic logs.
apps- List and manage apps in App Store Connect.app-setup- Post-create app setup automation.app-tags- Manage app tags for App Store visibility.versions- Manage App Store versions.localizations- Manage App Store localization metadata.screenshots- Upload and manage App Store screenshots; local capture/frame workflow is [experimental].video-previews- Manage App Store app preview videos.background-assets- Manage background assets.product-pages- Manage custom product pages and product page experiments.routing-coverage- Manage routing app coverage files.pricing- Manage app pricing and availability.pre-orders- Manage app pre-orders.categories- Manage App Store categories.age-rating- Manage App Store age rating declarations.accessibility- Manage accessibility declarations.encryption- Manage app encryption declarations and documents.eula- Manage End User License Agreements (EULA).agreements- Manage agreements in App Store Connect.app-clips- Manage App Clip experiences and invocations.android-ios-mapping- Manage Android-to-iOS app mapping details.marketplace- Manage marketplace resources.alternative-distribution- Manage alternative distribution resources.nominations- Manage featuring nominations.game-center- Manage Game Center resources in App Store Connect.
testflight- Manage TestFlight workflows.builds- Manage builds in App Store Connect.build-bundles- Manage build bundles and App Clip data.build-localizations- Manage build release notes localizations.sandbox- Manage sandbox testers in App Store Connect.
release- Run high-level App Store release workflows.review- Manage App Store review details, attachments, and submissions.reviews- List and manage App Store customer reviews.submit- Submit builds for App Store review.validate- Validate App Store version readiness before submission.publish- End-to-end publish workflows for TestFlight and App Store.
iap- Manage in-app purchases in App Store Connect.app-events- Manage App Store in-app events.subscriptions- Manage subscription groups and subscriptions.
signing- Manage signing certificates and profiles.bundle-ids- Manage bundle IDs and capabilities.certificates- Manage signing certificates.profiles- Manage provisioning profiles.merchant-ids- Manage merchant IDs and certificates.pass-type-ids- Manage pass type IDs.notarization- Manage macOS notarization submissions.
account- Inspect account-level health and access signals.users- Manage users and invitations in App Store Connect.actors- Lookup actors (users, API keys) by ID.devices- Manage devices in App Store Connect.
webhooks- Manage webhooks in App Store Connect.xcode-cloud- Trigger and monitor Xcode Cloud workflows.notify- Send notifications to external services.migrate- Migrate metadata from/to fastlane format.
version- Print version information and exit.completion- Print shell completion scripts.schema- Inspect App Store Connect API endpoint schemas at runtime.
diff- Generate deterministic non-mutating diff plans.status- Show a release pipeline dashboard for an app.release-notes- Generate and manage App Store release notes.workflow- Run multi-step automation workflows.xcode- Local Xcode archive/export helpers (macOS only).metadata- Manage app metadata with deterministic file workflows.snitch- Report CLI friction as a GitHub issue.
- Output defaults are TTY-aware: interactive terminals default to
table, while piped/non-interactive output defaults to minifiedjson. - Use
--output tableor--output markdownfor explicit human-readable output. - Use
--output jsonfor explicit machine-readable output. - Use
--paginateon list commands to fetch all pages automatically. - Use
--limitand--nextfor manual pagination control. - Prefer explicit flags and deterministic outputs in CI scripts.
# List apps
asc apps list --output table
# Upload a build
asc builds upload --app "123456789" --ipa "/path/to/MyApp.ipa"
# Release an App Store version (high-level)
asc release run --app "123456789" --version "1.2.3" --build "BUILD_ID" --metadata-dir "./metadata/version/1.2.3" --dry-run
asc release run --app "123456789" --version "1.2.3" --build "BUILD_ID" --metadata-dir "./metadata/version/1.2.3" --confirm
asc status --app "123456789"
# Lower-level review/submit flow
asc validate --app "123456789" --version "1.2.3"
asc submit create --app "123456789" --version "1.2.3" --build "BUILD_ID" --confirm
# Run a local automation workflow
asc workflow run release- ../README.md - onboarding and common workflows
- API_NOTES.md - API-specific behavior and caveats
- TESTING.md - test strategy and patterns
- CONTRIBUTING.md - contribution and dev workflow