Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Ios Testflight Release

ASecurity

Prepare and ship an iOS build to TestFlight — runs the submission pre-flight checks, fixes the config that blocks uploads/processing, then walks internal→external beta review. Use when releasing an iOS build to testers.

41 stars
0 votes
0 copies
0 views
Added 9/19/2026
securitypythongobashtestinggitapi

Works with

cliapi

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add SteveGJones/ai-first-sdlc-practices --skill ios-testflight-release --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Ios Testflight Release?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Ios Testflight Release
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/stevegjones-ios-testflight-release/badge)](https://www.skillsdirectory.com/skills/stevegjones-ios-testflight-release)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: ios-testflight-release
description: Prepare and ship an iOS build to TestFlight — runs the submission pre-flight checks, fixes the config that blocks uploads/processing, then walks internal→external beta review. Use when releasing an iOS build to testers.
disable-model-invocation: false
argument-hint: "[path-to-ios-project]"
---

# iOS TestFlight Release

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).

## Arguments

- `path-to-ios-project` — the project directory to check (defaults to the current directory).

## Steps

### 1. Run the pre-flight checks (config that blocks uploads)

Run the bundled checker from the plugin's scripts directory:

```bash
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:

- **Missing usage descriptions** — every sensitive framework the app links/uses needs its
  `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).
- **Export compliance** — set `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.
- **Privacy manifest** — add a `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.
- **Entitlements** — no `get-task-allow` in a release build; `aps-environment = production` for push.

### 2. Verify release-default safety and versioning (not caught by the plist checks)

- **Build number**: every TestFlight upload needs a **unique, monotonically increasing**
  `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**.
- **Release-default safety**: confirm debug menus, feature flags, verbose logging, staging endpoints,
  and experiment toggles **default OFF in Release** (gate them behind a build config or a flag that's
  off unless explicitly enabled). No secrets/API keys in the bundle — use xcconfig/build settings and
  confirm nothing sensitive is in the archived Info.plist.
- **Build-stamp script gotcha**: if a build-phase script reads git or the environment (e.g. to stamp
  the build number), that target may need `ENABLE_USER_SCRIPT_SANDBOXING = NO` (leave it `YES`
  elsewhere), or the archive fails.

### 3. Confirm signing & capabilities

- Bundle ID, team, and signing are set; **only capabilities you actually use** are enabled (a stray
  entitlement with no matching provisioning profile fails the archive). See `ios-signing-doctor` if
  the archive/signing fails.

### 4. Archive, upload, and **confirm the build actually processes**

- Archive with the Release configuration + distribution profile; upload via Xcode Organizer,
  Transporter, `xcrun altool`/`notarytool` path, the App Store Connect API, or fastlane `pilot`.
- **Do not assume the upload became a build.** Confirm the build appears and finishes processing in
  App Store Connect (TestFlight tab). A processing failure (e.g. a missing purpose string) can leave
  the upload silently never becoming a build — check, don't assume.

### 5. Distribute: internal first, then external + Beta App Review

- **Internal testing first** (up to 100 team members with an ASC role) — **no review**, available
  immediately after processing. This is the fastest first loop; shake out the obvious here.
- **External testing** (up to 10,000 testers) requires **Beta App Review** for the first build of a
  version. Before submitting externally, ensure:
  - **App Privacy** ("nutrition label") is filled in ASC (external review bounces without it),
  - a **privacy policy URL** is live (a public Gist is fine for a simple app),
  - **Beta App Review info**: App Review contact (name/email/phone), a **demo/test account** if there
    is any login, and clear **"What to Test"** notes,
  - a stable way for testers to reach you (feedback email or TestFlight's built-in feedback).
- Builds **expire 90 days** after upload.

### 6. Report

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.

## Notes

- Apple renames tooling and renumbers guidelines often — treat exact ITMS/guideline numbers as
  version-sensitive and re-verify against developer.apple.com if a message doesn't match.
- Internal vs external is the key sequencing lever: internal is instant (no review); external needs the
  metadata above. Get internal working first.

Attribution

SteveGJonesSteveGJones
View sourceMore from SteveGJones →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Springboot Security

Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。

2456590 votes

Security Review

Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.

2456590 votes

Summarize Status

Write a short, colloquial summary for a Paperclip summary slot: open with the 1–3 specific, concrete actions the reader needs to take right now to unblock the work, then a brief plain-language status, streaming progress as it works.

798220 votes

Paperclip Task Bridge

Create, comment on, update, and list Paperclip tasks from Hermes using scoped Paperclip API credentials.

798220 votes

V3 Security Overhaul

Complete security architecture overhaul for claude-flow v3. Addresses critical CVEs (CVE-1, CVE-2, CVE-3) and implements secure-by-default patterns. Use for security-first v3 implementation.

701370 votes
View all in security →