Claude Code agent skills for the asc CLI — App Store Connect from the command line.
Each skill teaches your agent how to use a specific asc command group, including flags, workflows, and output formats.
# Install all skills
npx --yes skills add tddworks/asc-cli-skills
# Install a single skill
npx --yes skills add tddworks/asc-cli-skills --name asc-testflight
# List available skills
npx --yes skills add tddworks/asc-cli-skills --listasc skills install --all
asc skills install --name asc-testflight| Skill | Description |
|---|---|
| asc-app-clips | Manage App Clips and default experiences |
| asc-app-infos | Manage app info and per-locale metadata (name, subtitle, categories) |
| asc-app-previews | Manage app preview video sets and uploads |
| asc-app-shots | Generate App Store screenshots (AI-powered or HTML-based) |
| asc-app-wall | Submit an app to the community app wall at asccli.app |
| asc-appstore-release | GitHub Actions workflow for App Store releases |
| asc-appstore-release-local | Local release workflow: bump, archive, upload, submit |
| asc-auth | Authentication and multi-account management |
| asc-beta-review | Beta app review submissions for TestFlight external testing |
| asc-builds-archive | Archive and export Xcode projects to IPA/PKG |
| asc-builds-upload | Upload builds and manage TestFlight distribution |
| asc-check-readiness | Pre-flight submission checks for App Store versions |
| asc-code-signing | Bundle IDs, certificates, devices, and provisioning profiles |
| asc-customer-reviews | Customer reviews and developer responses |
| asc-game-center | Game Center achievements and leaderboards |
| asc-iap | In-App Purchases (consumable, non-consumable, non-renewing) |
| asc-init | Initialize project context (.asc/project.json) |
| asc-performance | Performance metrics and diagnostic logs |
| asc-plugins | Plugin system for custom event handlers |
| asc-reports | Sales, financial, and analytics reports |
| asc-review-detail | App Store review contact info and demo accounts |
| asc-skills | Skill management (install, update, check) |
| asc-subscriptions | Auto-renewable subscriptions, offers, and promo codes |
| asc-testflight | TestFlight beta groups and testers |
| asc-users | Team members and user invitations |
| asc-xcode-cloud | Xcode Cloud CI/CD workflows and build runs |
Each skill is a directory with a SKILL.md file (and optional references/):
asc-auth/
└── SKILL.md # Frontmatter (name, description) + usage guide
asc-code-signing/
├── SKILL.md
└── references/
└── commands.md # Detailed command reference
The shared/ directory contains cross-skill resources like project context resolution.
# Via npx
npx --yes skills check
npx --yes skills update
# Via asc CLI
asc skills check
asc skills updateMIT