ios-app-store

ios-app-store is a skill for Claude Code, Codex from lh17708357536-gif/flutter-cn-overseas-app-skills. It costs 71 tokens per session (3,454 once invoked), scanned A, original, MIT.

A guide for publishing Flutter apps through Apple’s App Store and TestFlight, Apple’s service for distributing test versions. It covers iOS-specific release settings and what to do when Apple closes a version’s build submission line.

In plain words
What is it for?
It is for preparing iOS release builds, uploading them to TestFlight, updating version and build numbers, and keeping release notes and app settings consistent.
Why use it?
It helps developers handle iOS release requirements and recover from a common upload error caused by submitting new builds to a closed version.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/build_ios_testflight.sh --build-name 1.0.2 --build-number 22.

Good fit It is for preparing iOS release builds, uploading them to TestFlight, updating version and build numbers, and keeping release notes and app settings consistent.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/lh17708357536-gif/flutter-cn-overseas-app-skills
agentmods
npx agentmods add skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store

Made for: Claude Code, Codex.

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 ios-app-store

README.md
[![agentmods](https://agentmods.dev/badge/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store/github.svg)](https://agentmods.dev/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store)
Your own site
<a href="https://agentmods.dev/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store"><img src="https://agentmods.dev/badge/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ios-app-store

Your own site · 80×15
<a href="https://agentmods.dev/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store"><img src="https://agentmods.dev/badge/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/ios-app-store.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,454 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.00071 $0.03454
Opus 5 $0.00036 $0.01727
Sonnet 5 $0.00014 $0.00691
Haiku 4.5 $0.00007 $0.00345

Measured 12d ago against content hash 00bf790b2142, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ios-app-store 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 12d 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/ios-app-store/SKILL.md · 276 lines

How it starts

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

iOS App Store 发布 Skill

适用于 Flutter iOS 上架 App Store / TestFlight。所有 <PLACEHOLDER> 替换为项目实际值。

跨平台共用规则在 ~/.claude/skills/_shared/rules.md

  • §3 buildNumber + Changelog 三件套(双平台共用)
  • §5 ICP 备案应用名(iOS / Android 共用)

本 skill 只补充 iOS 特有的内容。

1. TestFlight train-closed 409 应对(iOS 独有)

症状:上传 IPA 后 Apple Connect 返回:

Validation failed (409)
Invalid Pre-Release Train. The train version 'X.Y.Z' is closed for new build submissions

根因:上一发布(如 1.0.1+19)已在 App Store 上线,App Store Connect 自动关闭 1.0.1 这条 pre-release train,不再接受任何 1.0.1+N build。

应对:必须按版本号纪律 patch +1,开新 train:

  • 1.0.1+211.0.2+22(patch +1,buildNumber 同步 +1)
  • pubspec.yaml、所有 docs/changelog/{ios,android}/*.md 文件名、CHANGELOG.md header 全部同步改名/同步号

2. build_ios_testflight.sh 模板

完整可执行模板见 templates/build_ios_testflight.sh.template。落地步骤:

  1. cp ~/.claude/skills/ios-app-store/templates/build_ios_testflight.sh.template scripts/build_ios_testflight.sh
  2. 替换 <PROD_API_URL>
  3. chmod +x scripts/build_ios_testflight.sh

调用:

./scripts/build_ios_testflight.sh --build-name 1.0.2 --build-number 22

3. pubspec.yaml Release 默认值

name: <app_name_snake>
description: "<App Display Description>"
publish_to: 'none'
version: 1.0.0+1

environment:
  sdk: ^3.10.0

生产口径:iOS / TestFlight / App Store 生产包默认后端必须固定(不能 fallback 到 localhost / 空值)。build_ios_testflight.sh 强制传 API_BASE_URL

4. Info.plist 关键字段

<key>CFBundleDisplayName</key>
<string><App 显示名(用户主屏看到的)></string>

<key>CFBundleName</key>
<string><App 短名 ASCII(技术字段,≤16 chars)></string>

<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>

<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>

<!-- 隐私权限说明(用到才声明,未用不写) -->
<key>NSCameraUsageDescription</key>
<string>用于扫码、拍照等业务功能</string>

<key>NSMicrophoneUsageDescription</key>
<string>用于语音输入和通话功能</string>

<key>NSPhotoLibraryUsageDescription</key>
<string>用于选择照片上传</string>

<!-- ★ 不使用 IDFA 时禁止声明 NSUserTrackingUsageDescription -->

Read the full file on GitHub · 276 lines

Files

What ships with it

2 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. 12d ago First seen · 276 lines · 71 tokens per session scan A 00bf790b2142

Subscribe to this mod's changes

ios-app-store is a skill published in the GitHub repository lh17708357536-gif/flutter-cn-overseas-app-skills (20 stars, last pushed 2mo ago), licensed MIT. It adds 71 tokens to every session and 3,454 once invoked, about $0.0004 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-30.

Related

Other skills, from other repositories

app-store-preflight-compliance

Pre-submission compliance scanner workflow for Apple App Store apps. Use when reviewing iOS, macOS, tvOS, watchOS, or visionOS projects (Swift, Objective-C, React Native, Expo) for App Store rejection risks, submission readiness, privacy compliance, or guideline violations.

RevylAI/greenlight · 65 tokens

gingiris-aso-growth

A broad guide to growing mobile apps through App Store Optimization, launch planning, creator-made content, and marketing on platforms such as TikTok, Instagram, and YouTube Shorts.

Gingiris-1031/gingiris-skills · 320 tokens

app-paywall-pilot

Design, audit, debug, and implement App Store-compliant mobile paywalls, subscription flows, pricing screens, trials, offers, feature gates, and subscription lifecycle UX. Use when the user asks to audit my paywall, fix App Store 3.1.2 rejection, improve trial-to-paid, choose plans/prices/trials, review…

Nikolai-Iakubovskii/app-paywall-pilot · 101 tokens

ipaship-audit

Use when auditing iOS/Android app submissions for compliance with Apple App Store Review Guidelines or Google Play Developer Policies. Scan .ipa, .apk, or .zip files against official store policies, generate structured compliance reports, and identify violations with remediation steps.

atharvnaik1/ipaship-audit · 57 tokens

aso-asc

Apple App Store Connect API integration. Fetch iOS app metadata, reviews, ratings, and version info directly from App Store Connect. Requires API key. Triggers on: "app store connect", "asc".

FelixGraeber/claude-aso-audit-skill · 46 tokens

mobile-engineer

You are the Mobile Engineer Specialist — a cross-platform mobile development expert who builds performant, production-ready mobile applications. You specialize in React Native (Expo) and Flutter, with deep expertise in native integrations, offline-first architectures, and app store deployment.

buiphucminhtam/forgewright · 56 tokens