
Asc Testflight Orchestration
- 2.4k installs
- 934 repo stars
- Updated July 21, 2026
- rudrankriyam/app-store-connect-cli-skills
asc-testflight-orchestration is an asc CLI skill for TestFlight groups, testers, build distribution, and What to Test notes.
About
The asc-testflight-orchestration skill guides TestFlight beta distribution with the asc CLI for groups, testers, builds, and What to Test localizations. It starts by exporting current config to YAML with optional builds and testers included, then documents listing and creating groups, adding and inviting testers by email, and attaching or removing builds from groups by ID. What to Test notes are created or updated per build locale with whats-new text. Commands emphasize paginate for large lists and prefer stable IDs over names, pointing to the asc-id-resolver skill when human-friendly names must be mapped. Distribution examples use asc builds add-groups and remove-groups with confirm flags. The skill targets teams rolling out betas who need repeatable CLI workflows instead of manual App Store Connect UI steps. It assumes an APP_ID is known or resolvable and that build and group IDs are used for deterministic attach and detach operations across environments.
- Export TestFlight config to YAML with optional builds and testers.
- Create groups, list testers, add emails, and send invites via asc.
- Attach or remove builds from groups using build-id and group-id.
- Create and update What to Test notes per build locale.
- Use --paginate on large lists; prefer IDs from asc-id-resolver.
Asc Testflight Orchestration by the numbers
- 2,414 all-time installs (skills.sh)
- +30 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #89 of 1,048 Mobile Development skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
asc-testflight-orchestration capabilities & compatibility
- Capabilities
- testflight config export to yaml · group and tester crud via asc cli · build to group attach and detach · what to test localization create and update · pagination and id first operational guidance
- Use cases
- devops · orchestration
What asc-testflight-orchestration says it does
Prefer IDs for deterministic operations; use the ID resolver skill when needed.
npx skills add https://github.com/rudrankriyam/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 | 2.4k |
|---|---|
| repo stars | ★ 934 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | rudrankriyam/app-store-connect-cli-skills ↗ |
How do I manage TestFlight testers, groups, and beta build distribution from the command line?
Orchestrate TestFlight groups, testers, build distribution, and What to Test notes using the asc CLI during iOS beta rollouts.
Who is it for?
iOS teams using asc to roll out TestFlight betas with repeatable CLI workflows.
Skip if: Skip for App Store production submission-only flows or when asc is not installed.
When should I use this skill?
User asks about asc testflight groups, testers invite, builds add-groups, or What to Test notes.
What you get
Exported YAML config plus CLI commands that add testers, attach builds, and publish What to Test notes.
- testflight.yaml configuration
- Tester group assignments
- Localized What to Test notes
By the numbers
- Documents 4 workflow areas: config export, groups/testers, build distribution, and 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
Forks & variants (3)
Asc Testflight Orchestration has 3 known copies in the catalog totaling 3.2k installs. They canonicalize to this original listing.
- rorkai - 2k installs
- rudrankriyam - 1.2k installs
- ehmo - 1 installs
How it compares
Pick asc-testflight-orchestration over generic Fastlane docs when the toolchain is specifically the asc App Store Connect CLI for TestFlight YAML workflows.
FAQ
How do I export current TestFlight setup?
Run asc testflight config export --app APP_ID --output ./testflight.yaml with optional --include-builds and --include-testers.
Should I use names or IDs for groups?
Prefer IDs for deterministic operations; use the asc-id-resolver skill to map names when needed.
How do I add What to Test text?
Use asc builds test-notes create or update with build-id, locale, and whats-new content.
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.