$npx -y skills add rorkai/app-store-connect-cli-skills --skill asc-testflight-orchestrationOrchestrate TestFlight distribution, groups, testers, and What to Test notes using asc. Use when rolling out betas.
| 1 | # asc TestFlight orchestration |
| 2 | |
| 3 | Use this skill when managing TestFlight testers, groups, and build distribution. |
| 4 | |
| 5 | ## Export current config |
| 6 | - `asc testflight config export --app "APP_ID" --output "./testflight.yaml"` |
| 7 | - Include builds/testers: |
| 8 | - `asc testflight config export --app "APP_ID" --output "./testflight.yaml" --include-builds --include-testers` |
| 9 | |
| 10 | ## Manage groups and testers |
| 11 | - Groups: |
| 12 | - `asc testflight groups list --app "APP_ID" --paginate` |
| 13 | - `asc testflight groups create --app "APP_ID" --name "Beta Testers"` |
| 14 | - Testers: |
| 15 | - `asc testflight testers list --app "APP_ID" --paginate` |
| 16 | - `asc testflight testers add --app "APP_ID" --email "tester@example.com" --group "Beta Testers"` |
| 17 | - `asc testflight testers invite --app "APP_ID" --email "tester@example.com"` |
| 18 | |
| 19 | ## Distribute builds |
| 20 | - `asc builds add-groups --build-id "BUILD_ID" --group "GROUP_ID"` |
| 21 | - Remove from group: |
| 22 | - `asc builds remove-groups --build-id "BUILD_ID" --group "GROUP_ID" --confirm` |
| 23 | |
| 24 | ## What to Test notes |
| 25 | - `asc builds test-notes create --build-id "BUILD_ID" --locale "en-US" --whats-new "Test instructions"` |
| 26 | - `asc builds test-notes update --localization-id "LOCALIZATION_ID" --whats-new "Updated notes"` |
| 27 | |
| 28 | ## Notes |
| 29 | - Use `--paginate` on large groups/tester lists. |
| 30 | - Prefer IDs for deterministic operations; use the ID resolver skill when needed. |