apple-release-ops

apple-release-ops is a skill for Claude Code from Dev869/swift-tothemax. It costs 215 tokens per session (2,914 once invoked), scanned A, original, MIT.

A guide to signing and shipping Apple apps through TestFlight and the App Store. It covers certificates, provisioning profiles, entitlements, capabilities, builds, and release monitoring.

In plain words
What is it for?
Use it when fixing code-signing problems, managing profiles and entitlements, uploading builds, configuring TestFlight, or releasing through App Store Connect.
Why use it?
It explains the separate Apple credentials and permissions involved in signing, helping diagnose common certificate and provisioning errors.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the swift-tothemax plugin — 8 skills shipped together

Good fit Use it when fixing code-signing problems, managing profiles and entitlements, uploading builds…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dev869/swift-tothemax/apple-release-ops
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Dev869/swift-tothemax --skill apple-release-ops
Clone the repo
git clone --depth 1 https://github.com/Dev869/swift-tothemax

Made for: Claude Code.

Or install swift-tothemax, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for apple-release-ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/dev869/swift-tothemax/apple-release-ops.svg)](https://agentmods.dev/skills/dev869/swift-tothemax/apple-release-ops)
Your own site
<a href="https://agentmods.dev/skills/dev869/swift-tothemax/apple-release-ops"><img src="https://agentmods.dev/badge/skills/dev869/swift-tothemax/apple-release-ops.svg" alt="Measured on agentmods" height="20"></a>
Per session 215 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,914 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00215 $0.02914
Opus 5 $0.00108 $0.01457
Sonnet 5 $0.00043 $0.00583
Haiku 4.5 $0.00021 $0.00291

Measured 6d ago against content hash 1a6153839da4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

apple-release-ops scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/apple-release-ops/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Apple Release Ops

You own the pipeline: signed binary → TestFlight → App Store → monitored release. As of July 2026: Xcode 26.6 (Swift 6.3, iOS 26.5 SDK, requires macOS Tahoe 26.2+). Sibling skills own review strategy (app-review-max) and legal/compliance (apple-legal-max) — route there, don't improvise.

Signing, demystified

Four artifacts, four jobs. Most "signing hell" is conflating them:

Artifact What it is Where it lives
Certificate Your identity (public key signed by Apple + your private key) Keychain. Private key is the part you can lose.
Provisioning profile Apple's permission slip: this cert + this app ID + these entitlements (+ these devices, for dev/ad-hoc) ~/Library/Developer/Xcode/UserData/Provisioning Profiles/ (Xcode 16+; formerly ~/Library/MobileDevice/)
Entitlements Key-value claims baked into the binary at sign time (.entitlements file) Inside the signed binary. Inspect: codesign -d --entitlements - MyApp.app
Capability App Store Connect / Xcode UI switch that regenerates the app ID config and profiles Developer portal

Rules that resolve 90% of confusion:

  • Every entitlement your binary claims MUST be allowed by the profile it ships with. Mismatch = install/upload failure, not a build failure.
  • Distribution profiles have no device list. "Device not registered" is a development/ad-hoc problem only.
  • Cloud-managed certificates (Xcode 13+, default with automatic signing + "Distribute App"): Apple holds the distribution private key. Nothing to back up, nothing to expire out from under you, works with xcodebuild -allowProvisioningUpdates. Prefer them unless your CI can't authenticate to Apple.

Decision: automatic vs manual signing.

  • Solo dev / small team, Xcode or Xcode Cloud builds → automatic + cloud-managed certs. Done.
  • Self-hosted CI, multiple apps sharing certs, or extensions with exotic entitlements → manual with profiles checked into a secrets store, or fastlane match (git/S3-backed, encrypted). Never both: mixed automatic/manual across targets is the #1 source of phantom errors.
  • Wrong: fixing CI signing by exporting your personal dev certificate. Right: a dedicated distribution cert (or cloud signing via App Store Connect API key) that no laptop depends on.

Read the full file on GitHub · 204 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 204 lines · 215 tokens per session scan A 1a6153839da4

Subscribe to this mod's changes

apple-release-ops is a skill published in the GitHub repository Dev869/swift-tothemax (7 stars, last pushed 2mo ago), licensed MIT. It adds 215 tokens to every session and 2,914 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

apple-app-delivery

Upload builds, distribute on TestFlight, manage metadata, submit for Beta/App Review, and release on the App Store using Apple's official CLIs and the App Store Connect API. Default stable delivery to APPSTORE so one build can be tested in TestFlight and later submitted to the App Store; choose TESTFLIGHTINTERNALONLY…

moritouch/apple-app-delivery · 125 tokens

app-store-review-guidelines

Route App Store submission-compliance tasks to the correct Knowledge Contracts — app completeness, demo accounts, screenshot/description accuracy, in-app purchase requirements, external payment link restrictions, restore purchases, minimum functionality, spam/duplicate-app avoidance, permission usage strings, privacy…

caglarbaranbora/Apple-Agent-Kit · 296 tokens

backgroundtasks

Route BackgroundTasks implementation tasks to the correct Knowledge Contracts -- background task registration and scheduling, task execution and expiration handling, processing task constraints and conditions, and background refresh and widget timeline hookup. Use when registering a task identifier with…

caglarbaranbora/Apple-Agent-Kit · 267 tokens

core-data

Route Core Data implementation tasks to the correct Knowledge Contracts -- subclassing NSManagedObject and choosing an .xcdatamodeld Codegen mode (Class Definition/Manual-None/Category+Extension) with @NSManaged properties, standing up NSPersistentContainer via loadPersistentStores(completionHandler:) and viewContext…

caglarbaranbora/Apple-Agent-Kit · 410 tokens

core-location

Route Core Location implementation tasks to the correct Knowledge Contracts -- authorization and usage strings, location updates and delivery, accuracy and precise location, and background monitoring with location-triggered launches. Use when reading CLAuthorizationStatus or authorizationStatus, calling…

caglarbaranbora/Apple-Agent-Kit · 235 tokens

networking

Route URLSession networking implementation tasks to the correct Knowledge Contracts — request construction, async/await and completion-handler data fetching, Codable decoding, HTTP error handling, task cancellation, session configuration, App Transport Security, authenticated requests, session delegates and their…

caglarbaranbora/Apple-Agent-Kit · 295 tokens