release-new-version

release-new-version is a skill for Claude Code from niki914/zafiro. It costs 54 tokens per session (2,097 once invoked), scanned A, original, MIT.

A release-preparation procedure for the Zafiro Android app. It synchronizes the app’s version fields with the latest GitHub release and prepares a release APK.

In plain words
What is it for?
Use it when increasing the app version, checking the current Gradle version fields, reading the latest GitHub release tag, choosing a version name, and preparing a release build.
Why use it?
It reduces versioning mistakes by using the project’s Gradle file and latest release tag as the sources for the next version code.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it when increasing the app version, checking the current Gradle version fields, reading the latest GitHub release tag, choosing a version name, and preparing a release build.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/niki914/zafiro/release-new-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 niki914/zafiro --skill release-new-version
Clone the repo
git clone --depth 1 https://github.com/niki914/zafiro

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 release-new-version

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/niki914/zafiro/release-new-version"><img src="https://agentmods.dev/badge/skills/niki914/zafiro/release-new-version.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,097 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00054 $0.02097
Opus 5 $0.00027 $0.01048
Sonnet 5 $0.00011 $0.00419
Haiku 4.5 $0.00005 $0.00210

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

Security

Grade A, and why

release-new-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 3d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/update-code-badge.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/release-new-version/SKILL.md · 141 lines

How it starts

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

Release New Version

Release workflow for Zafiro.

Repos involved:

Repo Tag format Release notes
niki914/zafiro (main, open source) v<code>-<name> e.g. v8-1.1.0 Full bilingual notes
Xposed-Modules-Repo/com.niki914.nexus.agentic (closed) <code>-<name> e.g. 8-1.1.0 Same feature entries, closing line points back to the main repo. Optional — ask the user every time.

One APK, two notes. CI builds and signs the APK and creates the Release when a tag is pushed to the main repo. There is no CI in the Xposed repo — its release is a manual gh operation. Never build locally.

Phase 1 — Gather facts

Collect all of this before asking the user anything:

  1. Local version: read versionCode / versionName from app/build.gradle.kts.
  2. Latest release baseline: gh release view -R niki914/zafiro (returns the latest non-draft, non-prerelease release by default). Parse its tag v<code>-<name>.
  3. Version string locations: find every place the current version literal lives:
    rg -n '<current versionName>' -g '*.{md,kt,kts,txt,py}' .
    
    Only scan these extensions: md, kt, kts, txt, py. Nothing else. rg respects .gitignore by default — do not disable that.
  4. Changes since last release: commits and merged PRs from the last release tag to origin/main:
    git log v<code>-<name>..origin/main --oneline --no-merges
    gh pr list -R niki914/zafiro --state merged --limit 50 --json number,title --jq '.[] | "\(.number) \(.title)"'
    
  5. If local versionCode/versionName do not match the latest release tag: stop and ask the user how to proceed. Do not guess.

Summarize the changes for the user in plain language before drafting.

Phase 2 — Draft release notes (iterate until explicit approval)

Write bilingual notes (Chinese first, ---, then English) from the change list. Apply these rules strictly — they are derived from every historical release:

Read the full file on GitHub · 141 lines

Files

What ships with it

1 file 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. 3d ago Changed · -77 lines · +24 tokens per session ac0bb13de688
  2. 10d ago First seen · 218 lines · 30 tokens per session scan A 1bd240a8b0f5

Subscribe to this mod's changes

release-new-version is a skill published in the GitHub repository niki914/zafiro (153 stars, last pushed today), licensed MIT. It adds 54 tokens to every session and 2,097 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-30.

Related

Other skills, from other repositories

github-repo-management

Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.

NeoLabs-Systems/NeoAgent · 47 tokens

managing-app-versions

Manages semantic versioning for mobile apps across iOS and Android platforms. Use when the user says "bump version", "increment build number", "set version to", "release patch/minor/major", or "sync build numbers". Single source of truth is .msd/versions/{app-id}/version.json. Syncs to app.json (Expo), Info.plist…

ofcskn/mobile-automation-plugin · 95 tokens

submitting-app-release

Runs pre-flight validation gates and submits the app to App Store Connect and Google Play Console via EAS CLI. Use when the user says "release", "submit to store", "publish", "deploy app", or "submit for review". Always runs release-checklist.js first — never submits past a failing gate without explicit user…

ofcskn/mobile-automation-plugin · 72 tokens

antigravity-maintainer-batch-release

Run protected AAS maintainer sweeps, PR merge batches, canonical sync, Core preview checks, and scripted releases. Use for repository maintenance, main alignment, CLI/MCP/Workbench changes, or release.

ranbot-ai/awesome-skills · 50 tokens

shipping-and-launch

Prepares production launches. Use when preparing to deploy to production. Use when you need a pre-launch checklist, when setting up monitoring, when planning a staged rollout, or when you need a rollback strategy.

Djtony707/TITAN · 45 tokens

kappmaker-publish

Build, sign and ship a KAppMaker app — Fastlane setup, signed Android AAB, keystore generation, and uploading to Google Play and the App Store. Use when the user asks to build a release, create a keystore, configure fastlane, ship, upload or publish the app. Building iOS without a Mac is kappmaker-ios-ci.

KAppMaker/KAppMaker-CLI · 79 tokens