
Asc Testflight Orchestration
- 2k installs
- 934 repo stars
- Updated July 21, 2026
- rorkai/app-store-connect-cli-skills
This is a copy of asc-testflight-orchestration by rudrankriyam - installs and ranking accrue to the original listing.
asc-testflight-orchestration is an asc CLI skill that automates TestFlight beta distribution, tester group management, and What to Test notes without manual App Store Connect browser work.
About
asc-testflight-orchestration is a skill for developers rolling out iOS betas through the asc CLI instead of clicking through App Store Connect. It exports TestFlight configuration to testflight.yaml with optional builds and testers, lists and creates tester groups, and manages What to Test notes for each build. Commands include asc testflight config export, asc testflight groups list, and asc testflight groups create with app ID and pagination flags. Developers reach for asc-testflight-orchestration when beta cohorts change frequently and TestFlight setup must stay scripted alongside CI release pipelines.
- Export complete TestFlight config to YAML including builds and testers
- Create and manage tester groups with one-command add/invite flows
- Attach What to Test release notes directly to specific builds
- Supports --paginate for large tester lists and ID-based deterministic operations
- Integrates with ID resolver skill for reliable group and build targeting
Asc Testflight Orchestration by the numbers
- 2,031 all-time installs (skills.sh)
- +221 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rorkai/app-store-connect-cli-skills --skill asc-testflight-orchestrationAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rorkai/app-store-connect-cli-skills ↗ |
How do you automate TestFlight beta distribution with asc?
Automate TestFlight beta distribution, tester group management, and What to Test notes without switching between browser tabs or manual App Store Connect clicks.
Who is it for?
iOS release engineers managing recurring TestFlight betas who want asc CLI automation instead of App Store Connect UI clicks.
Skip if: Teams shipping only to production without beta testing or developers not using the asc CLI.
When should I use this skill?
A developer needs to roll out TestFlight betas, export tester config, create groups, or update What to Test notes with asc.
What you get
testflight.yaml configuration export, tester groups, assigned beta builds, and What to Test release notes in App Store Connect.
- testflight.yaml export
- Tester groups
- What to Test notes
Files
asc TestFlight orchestration
Use this skill when managing TestFlight testers, groups, and build distribution.
Export current config
asc testflight config export --app "APP_ID" --output "./testflight.yaml"- Include builds/testers:
asc testflight config export --app "APP_ID" --output "./testflight.yaml" --include-builds --include-testers
Manage groups and testers
- Groups:
asc testflight groups list --app "APP_ID" --paginateasc testflight groups create --app "APP_ID" --name "Beta Testers"- Testers:
asc testflight testers list --app "APP_ID" --paginateasc testflight testers add --app "APP_ID" --email "tester@example.com" --group "Beta Testers"asc testflight testers invite --app "APP_ID" --email "tester@example.com"
Distribute builds
asc builds add-groups --build-id "BUILD_ID" --group "GROUP_ID"- Remove from group:
asc builds remove-groups --build-id "BUILD_ID" --group "GROUP_ID" --confirm
What to Test notes
asc builds test-notes create --build-id "BUILD_ID" --locale "en-US" --whats-new "Test instructions"asc builds test-notes update --localization-id "LOCALIZATION_ID" --whats-new "Updated notes"
Notes
- Use
--paginateon large groups/tester lists. - Prefer IDs for deterministic operations; use the ID resolver skill when needed.
Related skills
FAQ
How does asc-testflight-orchestration export TestFlight config?
asc-testflight-orchestration runs asc testflight config export with an app ID and output path such as testflight.yaml. Optional --include-builds and --include-testers flags add build and tester data to the export.
Can asc-testflight-orchestration create beta tester groups?
asc-testflight-orchestration creates TestFlight groups with asc testflight groups create and lists existing groups with asc testflight groups list --paginate for a given App Store Connect app ID.
Is Asc Testflight Orchestration safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.