From sdlc-team-ios
Runs pre-flight checks on iOS project config, fixes upload-blocking issues, then walks through TestFlight submission and beta review. Use before every TestFlight upload.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sdlc-team-ios:ios-testflight-release [path-to-ios-project][path-to-ios-project]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get an iOS build onto TestFlight without the classic upload/processing/beta-review blockers. This
Get an iOS build onto TestFlight without the classic upload/processing/beta-review blockers. This
skill encodes real incidents (e.g. a build silently never processed because of a missing
NSMotionUsageDescription — ITMS-90683) into a pre-flight → upload → confirm → distribute flow.
Belongs to the ios-release-engineer discipline. Run it before every TestFlight upload; the
config checks are cheap and the failures are expensive (a rejected/stalled upload costs a round-trip).
path-to-ios-project — the project directory to check (defaults to the current directory).Run the bundled checker from the plugin's scripts directory:
python -m ios_preflight.cli <project-dir> [--uses-push]
(Set PYTHONPATH to the plugin's scripts/ dir, or run python plugins/sdlc-team-ios/scripts/ -m ios_preflight.cli from a checkout.) It reports, and you must resolve every ERROR before uploading:
NS…UsageDescription purpose string, or App Store Connect rejects the build in processing
(ITMS-90683). The check maps frameworks to keys (CoreMotion→NSMotionUsageDescription,
AVFoundation→NSCameraUsageDescription, CoreLocation→NSLocationWhenInUseUsageDescription,
Contacts, Photos, Speech, HealthKit, …). Rule of thumb: if a permission dialog could appear, the
string must exist — and be a real human sentence (Apple rejects placeholder text).ITSAppUsesNonExemptEncryption = false in Info.plist if the app uses
only exempt encryption (standard HTTPS). This skips the export-compliance questionnaire on every
upload; without it each build stalls waiting for an answer in ASC.PrivacyInfo.xcprivacy if you use required-reason APIs (UserDefaults,
file/disk timestamps, system boot time, disk space) or bundle third-party SDKs; Apple flags builds
without it.get-task-allow in a release build; aps-environment = production for push.CFBundleVersion, or it's rejected. Adopt a policy and automate it — pre-1.0, keep
MARKETING_VERSION fixed (e.g. 1.0.0) and stamp CFBundleVersion from
git rev-list --count HEAD (optionally plus the short SHA and date) so every tester build is
traceable to an exact commit.ENABLE_USER_SCRIPT_SANDBOXING = NO (leave it YES
elsewhere), or the archive fails.ios-signing-doctor if
the archive/signing fails.xcrun altool/notarytool path, the App Store Connect API, or fastlane pilot.Summarise: pre-flight result (errors fixed), build number + the commit it maps to, whether the build processed, and which testing track it went to. If anything is unresolved (e.g. App Privacy not yet filled), say so explicitly rather than implying the external release is ready.
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
npx claudepluginhub stevegjones/ai-first-sdlc-practices --plugin sdlc-team-ios