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.
npx skills add troyjthomas/ios-agent-skills --skill post-launchgit clone --depth 1 https://github.com/troyjthomas/ios-agent-skillsWrote 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.
[](https://agentmods.dev/skills/troyjthomas/ios-agent-skills/post-launch)<a href="https://agentmods.dev/skills/troyjthomas/ios-agent-skills/post-launch"><img src="https://agentmods.dev/badge/skills/troyjthomas/ios-agent-skills/post-launch.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00054 | $0.01669 |
| Opus 5 | $0.00027 | $0.00834 |
| Sonnet 5 | $0.00011 | $0.00334 |
| Haiku 4.5 | $0.00005 | $0.00167 |
Grade A, and why
post-launch 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Post-Launch
Your app is live. Now keep it alive. This skill covers the ongoing lifecycle.
Crash Reporting (Set Up Before v1 Launch)
You need to know when your app crashes in the wild. Set this up before TestFlight distribution.
Option 1: Firebase Crashlytics (Recommended for Solo/Small)
Tell Claude Code:
Add Firebase Crashlytics to the project using Swift Package Manager.
Configure it in the App struct's init. Follow the Firebase iOS
setup guide. Do NOT modify the .xcodeproj file for build phases.
I'll add the build phase script in Xcode manually.
Important: Firebase requires a GoogleService-Info.plist file and a build phase script. Claude Code should create the Swift integration code, but you add the plist and build phase in Xcode manually (.pbxproj safety rule).
Option 2: Apple's Built-In Crash Reports
App Store Connect > Your App > Analytics > Crashes. No setup required, but reports are delayed (24-48 hours) and less detailed. Good enough for v1 if you don't want to add Firebase.
TestFlight Feedback Loop
Collecting Feedback
TestFlight has built-in feedback: testers take a screenshot, it prompts them to send feedback with the screenshot attached. This arrives in App Store Connect > TestFlight > Feedback.
Tell your testers (your wife, friends):
- "If something feels wrong, screenshot it and submit feedback via TestFlight"
- "If something crashes, just tell me what you were doing when it crashed"
Processing Feedback into Tasks
After collecting feedback, sit down with Claude:
Here's the feedback from TestFlight this week:
- [Tester] said the project list loads slowly with 20+ items
- [Tester] said the delete confirmation doesn't appear sometimes
- [Tester] said dark mode makes the progress ring hard to see
Turn these into specific, actionable tasks I can give to
Claude Code. Prioritize by severity (crashes > broken features
> visual issues > nice-to-haves).
Claude helps you triage. You take the prioritized list into Conductor.
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.
- 8d ago First seen · 214 lines · 54 tokens per session scan A 381a4a2d931a
post-launch is a skill published in the GitHub repository troyjthomas/ios-agent-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 54 tokens to every session and 1,669 once invoked, about $0.0003 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.
Other skills, from other repositories
asc-release-flow
Determine whether an app is ready to submit, then drive the App Store release flow with asc, including first-time submission fixes for availability, in-app purchases, subscriptions, Game Center, and App Privacy.
asc-submission
Prepare an app for App Store submission or TestFlight distribution using the App Store Connect MCP server. Use when user says "prepare submission", "submit to app store", "prepare for review", "update metadata", "set what's new", "check submission readiness", "distribute to testflight", or wants to manage App Store…
push-notifications
Implement, review, or debug push notifications in iOS/macOS apps — local notifications, remote (APNs) notifications, rich notifications, notification actions, silent pushes, and notification service/content extensions. Use when working with UNUserNotificationCenter, registering for remote notifications, handling…
activitykit
Implement, review, or improve Live Activities and Dynamic Island experiences in iOS apps using ActivityKit. Use when building real-time updating widgets for the Lock Screen and Dynamic Island — delivery tracking, sports scores, ride-sharing status, workout timers, media playback, or any time-sensitive information that…
app-intents
Implement App Intents for Siri, Shortcuts, Spotlight, widgets, Control Center, and Apple Intelligence on iOS. Covers AppIntent actions, AppEntity and EntityQuery models, AppShortcutsProvider phrases, IndexedEntity Spotlight indexing, WidgetConfigurationIntent, SnippetIntent, and assistant schemas. Use when exposing…
appmigrationkit
Transfer app data to or from other platforms using AppMigrationKit. Use when implementing system-orchestrated one-time migration between iOS and Android or another platform, building an AppMigrationExtension, packaging transportable resources with ResourcesArchiver, importing resources on the destination device…