ios-bump-version

ios-bump-version is a skill for Claude Code from CH3COOH/claude-skills. It costs 85 tokens per session (1,098 once invoked), scanned A, original, MIT.

An iOS release helper for changing an app's marketing version, the version number shown to users, and committing the change on the appropriate branch. It first checks the version format, Git state, branch, and current version.

In plain words
What is it for?
Use it to update an iOS app from one version number to another and create or use the required feature branch before committing.
Why use it?
It reduces mistakes when preparing a new iOS release and stops when the project is not in an expected state.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to update an iOS app from one version number to another and create or use the required feature branch before committing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ch3cooh/claude-skills/ios-bump-version
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 CH3COOH/claude-skills --skill ios-bump-version
Clone the repo
git clone --depth 1 https://github.com/CH3COOH/claude-skills

Made for: Claude Code.

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-bump-version

README.md
[![agentmods](https://agentmods.dev/badge/skills/ch3cooh/claude-skills/ios-bump-version/github.svg)](https://agentmods.dev/skills/ch3cooh/claude-skills/ios-bump-version)
Your own site
<a href="https://agentmods.dev/skills/ch3cooh/claude-skills/ios-bump-version"><img src="https://agentmods.dev/badge/skills/ch3cooh/claude-skills/ios-bump-version/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-bump-version

Your own site · 80×15
<a href="https://agentmods.dev/skills/ch3cooh/claude-skills/ios-bump-version"><img src="https://agentmods.dev/badge/skills/ch3cooh/claude-skills/ios-bump-version.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,098 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.00085 $0.01098
Opus 5 $0.00043 $0.00549
Sonnet 5 $0.00017 $0.00220
Haiku 4.5 $0.00009 $0.00110

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

Security

Grade A, and why

ios-bump-version 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 11d 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.

ios-bump-version/SKILL.md · 114 lines

How it starts

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

Bump Version スキル

iOSアプリ の MARKETING_VERSION を更新し、リリースブランチへのコミットまで自動実行します。

事前バリデーション

以下を確認し、問題があれば処理を中断してユーザーに案内すること。

チェック項目 確認コマンド 問題がある場合
引数の有無 - 新バージョン番号を確認する
バージョン形式 - X.X.X 形式(数字とドット)でなければ拒否
作業ディレクトリ git status --porcelain 未コミット変更があれば先に commit/stash を案内
現在のブランチ git branch --show-current release-vX.X.Xrelease-vX.X.X-feature/*developmaster のいずれかであることを確認。それ以外は処理を中断する
現在のバージョン grep -n "MARKETING_VERSION" *.xcodeproj/project.pbxproj 目標バージョンと同一なら「既に最新です」と警告して終了

手順

ここでは例として MyApp というアプリのバージョンを修正する。

Step 1: 現在の状態を確認

git branch --show-current
git status --porcelain

現在のバージョンを確認する:

grep -n "MARKETING_VERSION" MyApp.xcodeproj/project.pbxproj

Step 2: フィーチャーブランチを作成

現在のブランチ名に応じてブランチ名を決定する。

ケース 1: release-vX.X.X 形式のリリースブランチ上(通常):

git checkout -b release-v<base-version>-feature/bump-up-to-v<new-version>

例: ベースが release-v2.9.10、新バージョンが 2.9.10 の場合

git checkout -b release-v2.9.10-feature/bump-up-to-v2.9.10

ケース 2: release-vX.X.X-feature/* または release-vX.X.X-fix/* 形式(既に feature/fix ブランチ上):

新規ブランチは作成しない。現在のブランチのまま作業を続ける。

ケース 3: developmaster などその他のブランチ:

git checkout -b feature/bump-up-to-v<new-version>

Step 3: project.pbxproj を更新

MyApp.xcodeproj/project.pbxproj 内の MARKETING_VERSION をすべて新バージョンに更新する。

  • 対象行: MARKETING_VERSION = <old-version>;(Debug・Release 各 1 行、計 2 行)
  • 変更後: MARKETING_VERSION = <new-version>;

注意: テストターゲットは変更しない。

更新後に確認する:

grep -n "MARKETING_VERSION" MyApp.xcodeproj/project.pbxproj

Step 4: コミット

コミットメッセージは必ず以下の形式を使用する:

Bump up v<new-version>
git add MyApp.xcodeproj/project.pbxproj
git commit -m "Bump up v<new-version>"

出力形式

完了後、以下を報告する:

  1. 作成したブランチ名
  2. 変更前 → 変更後のバージョン
  3. コミットハッシュ

注意事項

  • MARKETING_VERSION = 1.0; の行は変更しない(テストターゲット用)
  • 変更対象は必ず Debug・Release の 2 行
  • コミットメッセージは Bump up vX.X.X 形式で統一

Read the full file on GitHub · 114 lines

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. 11d ago First seen · 114 lines · 85 tokens per session scan A 62f4302bcc4b

Subscribe to this mod's changes

ios-bump-version is a skill published in the GitHub repository CH3COOH/claude-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 85 tokens to every session and 1,098 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-31.

Related

Other skills, from other repositories

apple-release-ops

The mechanics of shipping Apple apps. Use for ANY code signing error ("no signing certificate", "provisioning profile doesn't include...", "revoked certificate"), provisioning profiles, certificates, entitlements, capabilities, TestFlight (groups, expiry, feedback), App Store Connect, uploading builds, xcodebuild…

Dev869/swift-tothemax · 215 tokens

asc-build-lifecycle

Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing.

JordanCoin/ios-skills-collection · 31 tokens

ios-appstore-builder

Prepare, configure, and publish iOS apps to the Apple App Store. Covers certificates, provisioning profiles, TestFlight, App Store submission, and review guidelines.

AtulPurohit/Antigravity-Awesome-Skills · 37 tokens

axiom-shipping

Use when preparing ANY app for submission, handling App Store rejections, writing appeals, or managing App Store Connect. Covers submission checklists, rejection troubleshooting, metadata requirements, privacy manifests, age ratings, export compliance.

CharlesWiltgen/Axiom · 48 tokens

release-new-version

Use when the user wants to release a new Zafiro version — drafting bilingual release notes, deciding the next version number, bumping app/build.gradle.kts, tagging, and publishing to GitHub (main repo, optionally the Xposed repo).

niki914/zafiro · 54 tokens

suede-play-release

Suede Labs Google Play delivery skill: ship an Android release end to end from the agent interface, without opening the Play Console. Set up credentials, upload an AAB, promote between tracks, stage or complete a rollout, push per-locale release notes, and prove against the Play Developer API what is actually live.…

JasonColapietro/suede-creator-skills · 200 tokens