asc-testflight-orchestration

Orchestrate TestFlight groups, testers, build distribution, and test notes using the asc CLI.

Updated Feb 16, 2026
One-click install
npx skills add https://github.com/dustinober1/sundee-fundee-ios --skill asc-testflight-orchestration-dustinober1
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: asc-testflight-orchestration
Source: https://github.com/dustinober1/sundee-fundee-ios/tree/main/SundeeFundeeApp/.agents/skills/asc-testflight-orchestration
Command: npx skills add https://github.com/dustinober1/sundee-fundee-ios --skill asc-testflight-orchestration-dustinober1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing TestFlight beta distribution manually through App Store Connect is slow and error-prone. This Skill provides a command-driven workflow for exporting TestFlight configuration, managing tester groups, distributing builds, and publishing What to Test notes via the asc CLI. ## Core Features & Use Cases - Config Export: Export the current TestFlight configuration to a YAML file, optionally including builds and testers. - Group and Tester Management: List, create groups, and add or invite testers by email with pagination support for large lists. - Build Distribution: Add or remove builds from groups and create or update localized What to Test notes. - Use Case: When rolling out a new beta of an iOS app, export the current TestFlight config, add new testers to the Beta Testers group, assign the latest build to that group, and publish localized test notes describing what changed. ## Quick Start Use the asc TestFlight skill to add tester@example.com to the Beta Testers group and distribute the latest build with updated What to Test notes.

Frequently Asked Questions about asc-testflight-orchestration

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I distribute a TestFlight build to a group from the command line?▼

Use asc builds add-groups with the build ID and group ID to assign a build to a TestFlight group. To remove it, run asc builds remove-groups with the same IDs and the --confirm flag.

How do I add testers to TestFlight using asc?▼

Run asc testflight testers add with the app ID, tester email, and target group name. You can also send an invitation with asc testflight testers invite using the app ID and email address.

Can I export my TestFlight configuration to a file?▼

Yes, asc testflight config export writes the current TestFlight configuration to a YAML file for a given app ID. Add --include-builds and --include-testers to capture builds and tester data in the export.

How do I set What to Test notes for a TestFlight build?▼

Use asc builds test-notes create with the build ID, locale such as en-US, and the notes text. Update existing notes with asc builds test-notes update using the localization ID.

How do I handle large tester or group lists in TestFlight?▼

Pass the --paginate flag to asc testflight testers list or asc testflight groups list to iterate through large result sets. Prefer IDs over names for deterministic operations on large accounts.