Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

ship-ios-appship iOS 应用

Agent Skill

ship-ios-app 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

499

周安装

21

GitHub Stars

公开资料未说明

下载量

175
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ship-ios-app(ship iOS 应用)
来源仓库:https://github.com/intrusive-memory/skills
仓库路径:skills/ship-ios-app
安装命令:
npx skills add intrusive-memory/skills --skill "ship-ios-app"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add intrusive-memory/skills --skill "ship-ios-app"

简介

ship-ios-app 用于 iOS 应用发布流程支持,协助处理打包与分发相关操作。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要自动化部署移动应用的场景。
  • 通过 npx skills add 命令安装,具体步骤请参考仓库内详细说明。
  • 涉及 Xcode 与 App Store Connect 集成,需配置开发者账号与证书。
  • 注意苹果政策变更可能导致自动化流程失效,应定期验证兼容性。

SKILL.md

name
ship-ios-app
description
Ships new versions of iOS/macOS apps. Use when asked to ship, release, or deploy an app, or when checking if a version is ready to ship.
allowed-tools
Read, Bash, Grep, Glob, Edit, Task

Ship iOS/macOS App Version

This skill manages the release workflow for iOS and macOS apps distributed via App Store Connect.

Pre-flight Checks

Before shipping, verify ALL of the following conditions:

1. Check for Ready Pull Request

gh pr list --state open --json number,title,headRefName,statusCheckRollup

A PR is ready to ship ONLY if:

  • There is an open PR targeting the main branch
  • All status checks have passed (all items in statusCheckRollup show "SUCCESS")

If no PR exists with passing tests, STOP and report: "No Pull Request ready to ship. A PR with passing tests is required."

2. Verify Version Bump Has Occurred

Compare the version in README.md and CLAUDE.md against the last tagged version:

# Get the last tagged version
git fetch --tags
git tag --sort=-v:refname | head -1

# Check versions in documentation files
grep -i "version" README.md
grep -i "version" CLAUDE.md

If the versions in README.md and CLAUDE.md match the last tagged version, STOP and report: "Version has not been bumped. Please update the version in README.md and CLAUDE.md before shipping."

3. Verify Version Consistency with App Store

Check that BOTH marketing version AND build number are correct:

# Check local marketing version (what users see: 1.0, 2.0, 22, 23...)
MARKETING_VERSION=$(grep "MARKETING_VERSION" <YourApp>.xcodeproj/project.pbxproj | head -1 | grep -oE '[0-9]+(\.[0-9]+)*')
echo "Local Marketing Version: ${MARKETING_VERSION}"

# Check local build number (internal counter: 274, 275, 276...)
BUILD_NUMBER=$(agvtool what-version -terse)
echo "Local Build Number: ${BUILD_NUMBER}"

CRITICAL: iOS apps use TWO version numbers:

  • Marketing Version (user-visible): 1.0, 2.0, 22, 23... (shown in App Store)
  • Build Number (auto-incrementing): 274, 275, 276... (internal tracking)

Verify on TestFlight:

  1. Marketing Version should match the version shown in TestFlight "Version" field
  2. Build Number must be HIGHER than the latest TestFlight build number

If marketing version doesn't match App Store, STOP and report: "Marketing version mismatch with App Store." If build number is not higher than App Store, STOP and report: "Build number must be incremented beyond App Store Connect."

4. Verify Changelog Entry Exists

Check that CHANGELOG.md has an entry for the current release in development:

# Get the version from project
VERSION=$(grep "MARKETING_VERSION" <YourApp>.xcodeproj/project.pbxproj | head -1 | grep -oE '[0-9]+(\.[0-9]+)*')

# Check if CHANGELOG.md has an entry for this version
grep -i "version ${VERSION}\|## ${VERSION}\|# ${VERSION}" CHANGELOG.md

If no changelog entry exists for the current version, STOP and report: "Missing changelog entry. CHANGELOG.md must have an entry for version ${VERSION} before shipping."

5. Determine Next Version

The next version is always one more than the last tag:

  • If last tag is v1.2.3, next version is v1.2.4
  • If last tag is 1.2.3, next version is 1.2.4 (preserve format)

Shipping Process

Once all pre-flight checks pass:

Step 1: Merge the Pull Request

Squash merge to keep main branch history clean:

gh pr merge <PR_NUMBER> --squash --delete-branch

Step 2: Fetch the Merge Commit

git fetch origin main
git checkout main
git pull origin main

Step 3: Tag the Merge Commit

Tag the merge commit that was just created with the agreed-upon version:

git tag <VERSION>
git push origin <VERSION>

Step 4: Verify and Report

# Verify the tag exists on remote
git ls-remote --tags origin | grep <VERSION>

# Show the tagged commit
git show <VERSION> --oneline --no-patch

Report success with:

  • The version number that was shipped
  • The PR number that was merged
  • A link to the new tag/release

Important Rules

  1. NEVER ship without a passing PR - Quality gates are mandatory
  2. NEVER ship if version hasn't been bumped - Each release must have a unique version
  3. NEVER ship if version doesn't match App Store canonical version - Version consistency is critical
  4. NEVER ship without a changelog entry - Users need to know what changed
  5. ALWAYS use squash merge - Keep main branch history clean with --squash flag
  6. ALWAYS increment from last tag - Version is always last tag + 1 (patch version)
  7. ALWAYS delete the branch after merge - Keep the repo clean

Failure Scenarios

ScenarioAction
No open PRReport "No PR ready to ship"
PR has failing testsReport "Tests failing, cannot ship"
Version not bumpedReport "Version must be bumped before shipping"
Version doesn't match App StoreReport "Version mismatch with App Store canonical version"
Missing changelog entryReport "CHANGELOG.md missing entry for current version"
Merge conflictReport conflict and ask user to resolve
Tag already existsReport error and verify correct version

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Antigravity

30.68%
按下载量换算54

windsurf

19.82%
按下载量换算35

Claude Code

17.23%
按下载量换算30

Codex

11.54%
按下载量换算20

Gemini CLI

6.61%
按下载量换算12

OpenCode

3.35%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills