appstore-connect-cli
SolidUse `asc` CLI for App Store Connect command discovery, auth, output formats, pagination, schemas, canonical verbs, Apple Ads, and timeout behavior.
AI & Automation 8 stars
0 forks Updated today MIT
Install
Quality Score: 78/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# App Store Connect CLI
Use when running or designing `asc` commands.
## Discovery
- Start with `--help`: `asc --help`, `asc builds --help`, `asc builds list --help`.
- Use deterministic command search:
- `asc search "submit app for review"`
- `asc search --output table "upload build"`
- Inspect bundled ASC schemas before API-facing commands:
- `asc schema --pretty "GET /v1/apps"`
- `asc schema --method POST appStoreVersions`
- Explain workflow coverage:
- `asc capabilities --area release --output table`
- `asc capabilities --status not-public-api --output markdown`
## Command Rules
- Prefer current verbs shown by help: `view` for reads, `edit` for update-only availability, and `set` only where the CLI models replacement/configuration.
- Use explicit long flags in automation.
- Destructive operations require `--confirm`.
- Use `--paginate` only when all pages are needed.
- Output defaults are TTY-aware: table interactively, JSON when piped/non-interactive.
- Use `--output table`/`markdown` for humans; `--pretty` only with JSON.
Examples:
```bash
asc apps view --id "APP_ID"
asc versions view --version-id "VERSION_ID"
asc pricing availability edit --app "APP_ID" --territory "USA,GBR" --available true
asc xcode version edit --build-number "42"
```
## Auth
Prefer `asc auth login`. Env fallback: `ASC_KEY_ID`, `ASC_ISSUER_ID`, `ASC_PRIVATE_KEY_PATH`, `ASC_PRIVATE_KEY`, `ASC_PRIVATE_KEY_B64`. `ASC_APP_ID` can provide the default app. For unclear key permissions,...
Details
- Author
- Xopoko
- Repository
- Xopoko/plug-n-skills
- Created
- 1 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Data & Documents Listed
aso-asc
Apple App Store Connect API integration. Fetch iOS app metadata, reviews, ratings, and version info directly from App Store Connect. Requires API key. Triggers on: "app store connect", "asc".
1 Updated today
elladineluxemburger97 AI & Automation Solid
appstore-ads-operator
Manage Apple Ads with `asc ads`: separate auth, org lookup, campaigns, ad groups, ads, keywords, reports, raw API requests, and safe live testing.
8 Updated today
Xopoko AI & Automation Listed
appstore-id-resolver
Resolve App Store Connect IDs (apps, builds, versions, groups, testers) from human-friendly names using asc. Use when commands require IDs.
8 Updated today
Xopoko