asc-cli-usage

Guide asc CLI command design for App Store Connect with flags, output formats, and authentication.

33|2|Updated Feb 21, 2025
One-click install
npx skills add https://github.com/yspreen/dotfiles --skill asc-cli-usage
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: asc-cli-usage
Source: https://github.com/yspreen/dotfiles/tree/main/.agents/skills/asc-cli-usage
Command: npx skills add https://github.com/yspreen/dotfiles --skill asc-cli-usage

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Guidance for using asc cli in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design asc commands or interact with App Store Connect via the CLI.

Core Features & Use Cases

  • Command discovery: Always use --help to discover commands and flags, e.g., asc --help, asc builds --help, asc builds list --help.
  • Flag conventions: Use explicit long flags (e.g., --app, --output); no interactive prompts; destructive operations require --confirm; use --paginate for full pages.
  • Output formats: Default is minified JSON; use --output table or --output markdown for human-readable output; --pretty valid only with JSON.
  • 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_ID can provide a default app ID.
  • Timeouts: ASC_TIMEOUT / ASC_TIMEOUT_SECONDS, ASC_UPLOAD_TIMEOUT / ASC_UPLOAD_TIMEOUT_SECONDS.

Quick Start

Use the asc skill to run or design App Store Connect commands by asking for guidance on flags, output formats, and authentication.

Frequently Asked Questions about asc-cli-usage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I authenticate the asc CLI for App Store Connect?

To authenticate the asc CLI for App Store Connect, prefer keychain auth via 'asc auth login', or use fallback environment variables like ASC_KEY_ID, ASC_ISSUER_ID, and ASC_PRIVATE_KEY_PATH to provide credentials.

What output formats does the asc CLI support?

The asc CLI supports minified JSON as the default output. Use '--output table' or '--output markdown' for human-readable formats, and apply '--pretty' specifically to format JSON output readably.

How do I discover available commands and flags in the asc CLI?

To discover App Store Connect CLI commands, always use the '--help' flag. Run 'asc --help' for top-level commands, or drill down with examples like 'asc builds list --help' for specific flags.

Can I fetch all pages of results using the asc CLI?

Yes, you can fetch all pages of results using the asc CLI by applying the '--paginate' flag to your App Store Connect queries, which retrieves full pages instead of a single page.

How do I configure timeouts for asc CLI operations?

Configure asc CLI timeouts using the ASC_TIMEOUT or ASC_TIMEOUT_SECONDS environment variables. For uploads, use ASC_UPLOAD_TIMEOUT or ASC_UPLOAD_TIMEOUT_SECONDS to control operation limits.

Do I need to confirm destructive App Store Connect operations via the CLI?

Yes, destructive App Store Connect operations require the '--confirm' flag. The asc CLI avoids interactive prompts, so you must explicitly pass flags like '--app' and '--confirm' for execution.