Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

xcode-archive-releaseXcode archive 发布

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

公开资料未说明

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/grepug/skills --skill xcode-archive-release

简介

xcode-archive-release 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前功能描述基于仓库公开信息,实际能力以源码和文档为准。

SKILL.md

Xcode Archive & Release

Release an Apple app by bumping version/build metadata, archiving with Xcode, exporting and uploading to App Store Connect, then tagging the released HEAD in git.

Use when

  • The user wants to archive and upload an iOS or macOS app to App Store Connect
  • The user wants to release from an explicit version/build or infer them from a git tag
  • The user needs to retry an upload without rebuilding unless necessary

Prerequisites

  • macOS with Xcode and xcodebuild available
  • A signed Xcode project with a valid scheme
  • Access to the correct Apple Developer team and App Store Connect account
  • A clean understanding of the target project, scheme, platform list, version, and build number

The main helper is scripts/xcode-release.sh. The bundled assets/ExportOptions-AppStore.plist sets method=app-store and destination=upload, so the default flow uploads directly to App Store Connect without a separate altool step. After a successful automatic upload, the script creates the annotated git tag v<version>-<build> on the current HEAD and pushes that exact tag to the branch's upstream remote, or origin if no upstream remote is configured.

Confirm before acting

Before running the script, confirm:

  • the Xcode project path
  • the scheme name
  • the version and build number, or that git tag inference is intended
  • the target platform list: any ordered subset of ios, macos, and mac_catalyst
  • whether the user wants a preflight-only validation run first

For mixed-target or higher-risk projects, prefer a dry run with --preflight-only before touching source files.

Workflow

1. Discover project details

If the user hasn't specified --project or --scheme, find them:

# List .xcodeproj files near the current directory
find . -name "*.xcodeproj" -maxdepth 3

# List available schemes for a project
xcodebuild -project MyApp.xcodeproj -list

2. Confirm before running

Present a dry-run summary to the user before executing:

Project : MyApp.xcodeproj
Scheme  : MyApp_iOS
Version : 2.1.0  Build: 42
Platform: ios (generic/platform=iOS)
Archive : ~/.xcode-archive/MyApp/2.1.0-42/MyApp-ios.xcarchive

For complex or mixed-target projects (e.g. iOS + watchOS), run --preflight-only first to validate the scheme and export plist before any source files are touched:

xcode-release.sh --project MyApp.xcodeproj --scheme MyApp_iOS --version 2.1.0 --build 42 --preflight-only

Ask for confirmation, then proceed.

3. Run the script

Run the bundled script:

chmod +x path/to/skills/xcode-archive-release/scripts/xcode-release.sh

# Infer version + build from the git tag on HEAD (tag must contain both components):
path/to/skills/xcode-archive-release/scripts/xcode-release.sh \
  --project  MyApp/MyApp.xcodeproj \
  --scheme   MyApp_iOS \
  --platform ios,macos

# Or specify explicitly:
path/to/skills/xcode-archive-release/scripts/xcode-release.sh \
  --project  MyApp/MyApp.xcodeproj \
  --scheme   MyApp_iOS \
  --version  2.1.0 \
  --build    42 \
  [--platform ios|macos|mac_catalyst[,ios|macos|mac_catalyst...]] \
  [--export-plist /custom/ExportOptions.plist]  \  # override bundled plist
  [--preflight-only]           # validate setup without building or touching source
  [--force]                    # re-archive even if archive already exists

When multiple platforms are listed, the script builds them sequentially in the order provided. Version/build resolution happens once for the whole batch.

Git tag format — must contain exactly one semver component and one integer component, separated by -, +, /, or _. Leading v is stripped.

TagVersionBuild
v2.1.0-422.1.042
2.1.0+422.1.042
2.1.0/422.1.042
v2.1.0✗ no build
release-2.1.0-42✗ ambiguous

If the tag is ambiguous or missing a component, the script errors with a message directing you to pass --version and --build explicitly.

4. Create and push release tag

After a successful automatic upload, the script creates and pushes an annotated release tag:

  • tag format: v<version>-<build>
  • example: v2.1.0-42
  • tag message: Release 2.1.0 (42)

The tag is created on the current HEAD. The script does not create a git commit for the version/build edits it made during the release. If those edits are still uncommitted, the tag still points at the pre-existing HEAD commit.

If the tag already exists locally or on the remote, the script fails without moving or force-pushing the tag.

5. Report results

On success, the script prints the artifact path. Tell the user:

  • Where artifacts are: ~/.xcode-archive/<project-name>/<version>-<build>/
  • To check App Store Connect → TestFlight or the Builds tab to confirm the upload processed
  • Which git tag was created and which remote it was pushed to

The platform variant is ios, macos, or mac_catalyst. The script keeps the same version/build folder and makes the archive, export, DerivedData, and log names platform-specific.

If the archive succeeds but automatic export/upload hits a missing App Store provisioning profile for the app’s bundle ID, the script opens the .xcarchive in Xcode Organizer instead. In that case, tell the user the archive is ready and they should upload it to App Store Connect manually from Organizer.

Output

Successful runs produce:

  • a versioned archive folder at ~/.xcode-archive/<ProjectName>/<version>-<build>/
  • the .xcarchive
  • exported artifacts under export-<platform-variant>/
  • logs under logs-<platform-variant>/archive.log and logs-<platform-variant>/export.log
  • a per-platform completion marker used to skip already completed variants on rerun
  • an annotated git tag v<version>-<build> pushed to the configured remote after automatic upload succeeds

The user should verify the build appears in App Store Connect after processing finishes.

Retry a Failed Upload

If one platform in a batch fails (network issue, ASC outage, etc.):

  1. If the original run already pinned version/build explicitly, or inferred them from a git tag, run the exact same command — already completed platforms are skipped, and incomplete platforms are retried in sequence.
  2. If the original run inferred version/build from archive history, use the retry command printed on failure instead. That retry command pins the resolved --version and --build, so it retries the same release instead of advancing to the next build number.
  3. Use --force only if you need to rebuild all listed platforms from scratch (e.g. wrong code was archived).

If upload succeeded but tag creation or tag push failed, do not re-run the full release command blindly. The binary may already be uploaded, and a retry can fail with duplicate upload or duplicate tag errors. Use the script's tag-specific failure message to decide whether to create or push the tag manually.

Output Folder Structure

~/.xcode-archive/<ProjectName>/
└── <version>-<build>/              e.g. 2.1.0-42/
    ├── MyApp-ios.xcarchive         iOS archive
    ├── MyApp-macos.xcarchive       macOS archive when present
    ├── MyApp-mac_catalyst.xcarchive Catalyst archive when present
    ├── DerivedData-ios/            isolated DerivedData per platform variant
    ├── DerivedData-macos/
    ├── DerivedData-mac_catalyst/
    ├── export-ios/                 export output
    │   ├── MyApp.ipa
    │   ├── ExportOptions.plist     copy of the options used
    │   └── UploadSessionLogs/      ASC upload diagnostic logs
    ├── export-macos/
    ├── export-mac_catalyst/
    ├── logs-ios/
    │   ├── archive.log             full xcodebuild archive output
    │   └── export.log              full xcodebuild -exportArchive output
    ├── logs-macos/
    ├── logs-mac_catalyst/
    ├── .completed-ios
    ├── .completed-macos
    └── .completed-mac_catalyst

Each run has its own versioned folder, and each platform variant gets its own artifact names inside that folder. That lets the same version/build coexist across platforms without overwriting the archive.

Bundled files

  • scripts/xcode-release.sh — main release workflow
  • assets/ExportOptions-AppStore.plist — default App Store export settings

Troubleshooting

SymptomFix
Code signing failedOpen Xcode → project target → Signing & Capabilities, ensure a valid provisioning profile and team are set for Release
error: exportArchive No profiles for '<bundle-id>' were foundTreat this as an Organizer handoff: open the generated .xcarchive in Xcode Organizer and tell the user to upload it to App Store Connect manually
No schemes foundRun xcodebuild -project MyApp.xcodeproj -list to list valid scheme names; or use --preflight-only to check before running
ERROR ITMS-90189: Duplicate binary uploadThe build number already exists in ASC. Increment --build
Duplicate platform in --platform listRemove repeated platform entries. Each batch should list each of ios, macos, and mac_catalyst at most once
Archive not found on retryCheck the path ~/.xcode-archive/<name>/<version>-<build>/<name>-<platform-variant>.xcarchive exists; if not, re-run with the same --platform list used for the original archive
PlistBuddy: Entry, ":CFBundleShortVersionString", Does Not ExistHarmless — the Info.plist doesn't have that key (modern Xcode projects); the project.pbxproj patch handles it
No git tag on HEADHEAD isn't tagged. Create a tag (git tag v2.1.0-42 && git push --tags) or pass --version and --build explicitly
Tag(s) on HEAD... don't contain one semver + one integer componentTag is missing the build number (e.g. v2.1.0) or has an unrecognised part (e.g. release-2.1.0-42). Rename the tag or pass --version/--build explicitly
Script fails with ✗ FAILED at step: archiveCheck ~/.xcode-archive/<name>/<ver>-<build>/logs-<platform-variant>/archive.log for the root cause; the failure block prints the last 20 lines automatically
Release tag already exists locallyThe current repo already has v<version>-<build>. Do not force-move it; use a new build number if this is a new release attempt
Release tag already exists on remoteThe remote already has v<version>-<build>. Treat the tag as immutable; verify whether the release already happened before retrying
✗ FAILED at step: tag after upload succeededThe app upload completed but tagging did not. Follow the printed recovery command to push the local tag, or resolve the duplicate-tag/git-remote issue manually

ExportOptions Customization

The bundled plist (assets/ExportOptions-AppStore.plist) works for standard App Store uploads. To customize (e.g. add teamID, signingStyle, or iCloudContainerEnvironment), copy it to the project folder and pass --export-plist:

cp path/to/skills/xcode-archive-release/assets/ExportOptions-AppStore.plist ./ExportOptions.plist
# edit as needed
xcode-release.sh ... --export-plist ./ExportOptions.plist

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

33.56%
按下载量换算33

Claude

29.16%
按下载量换算29

Cursor

18.8%
按下载量换算19

Gemini CLI

10.31%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills