
Asc Testflight Orchestration
- 1.2k installs
- 934 repo stars
- Updated July 21, 2026
- rudrankriyam/asc-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 from rudrankriyam/asc-skills that orchestrates TestFlight beta distribution, tester groups, and What to Test notes without juggling multiple Apple tools.
About
asc-testflight-orchestration in rudrankriyam/asc-skills helps developers manage TestFlight distribution entirely through asc CLI commands. The skill exports configuration to testflight.yaml with optional build and tester inclusion, paginates group listings, creates named beta groups, and updates What to Test notes per build. Commands mirror the rorkai asc skills set, including asc testflight config export and asc testflight groups create with app ID flags. Developers reach for this skill when rolling out iOS betas from terminal-driven release tooling and avoiding repeated App Store Connect UI navigation across testers and builds.
- Export complete TestFlight configuration including builds and testers to YAML
- Create and manage tester groups with one-command add/invite flows
- Attach What to Test release notes to specific builds and localizations
- Supports --paginate for large tester lists and ID-based deterministic operations
- Integrates with asc ID resolver skill for reliable group and build references
Asc Testflight Orchestration by the numbers
- 1,210 all-time installs (skills.sh)
- +15 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rudrankriyam/asc-skills --skill asc-testflight-orchestrationAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.2k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rudrankriyam/asc-skills ↗ |
How do you manage TestFlight testers from the CLI?
Orchestrate TestFlight beta distribution, tester groups, and What to Test notes without switching between multiple Apple tools.
Who is it for?
iOS developers using rudrankriyam asc-skills who automate TestFlight beta cycles from the terminal.
Skip if: Android release workflows or teams managing betas only through the App Store Connect web UI.
When should I use this skill?
A developer rolling out iOS betas needs asc testflight group management, config export, or What to Test note updates.
What you get
testflight.yaml config file, beta tester groups, distributed builds, and updated What to Test notes in App Store Connect.
- testflight.yaml
- 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
What file does asc-testflight-orchestration export?
asc-testflight-orchestration exports TestFlight configuration to testflight.yaml using asc testflight config export. Developers can include builds and testers with --include-builds and --include-testers flags.
How does asc-testflight-orchestration manage tester groups?
asc-testflight-orchestration lists groups with asc testflight groups list --paginate and creates groups with asc testflight groups create --name 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.