install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/rudrankriyam/app-store-connect-cli-skills/asc-cli-usage" ~/.claude/skills/comeonoliver-skillshub-asc-cli-usage && rm -rf "$T"
manifest:
skills/rudrankriyam/app-store-connect-cli-skills/asc-cli-usage/SKILL.mdsource content
asc cli usage
Use this skill when you need to run or design
asc commands for App Store Connect.
Command discovery
- Always use
to discover commands and flags.--helpasc --helpasc builds --helpasc builds list --help
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
when the user wants all pages.--paginate
Output formats
- Output defaults are TTY-aware:
in interactive terminals,table
when piped or non-interactive.json - Use
or--output table
only for human-readable output.--output markdown
is only valid with JSON output.--pretty
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
can provide a default app ID.ASC_APP_ID
Timeouts
/ASC_TIMEOUT
control request timeouts.ASC_TIMEOUT_SECONDS
/ASC_UPLOAD_TIMEOUT
control upload timeouts.ASC_UPLOAD_TIMEOUT_SECONDS