app-store-changelog

app-store-changelog is a skill for Claude Code, Codex from henryalouf/ruflow. It costs 20 tokens per session (678 once invoked), scanned A, a copy of app-store-changelog, MIT.

A tool that turns the changes between Git versions into release notes for an app store. Git is a system that records changes to source code, while app store release notes explain updates to users.

In plain words
What is it for?
Use it to collect changes since the last version tag, keep user-visible fixes and improvements, and write concise App Store “What’s New” notes.
Why use it?
It removes the need to turn technical commit messages into user-facing update text by hand.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

Part of the antigravity-awesome-skills plugin — 39 skills shipped together

Good fit Use it to collect changes since the last version tag, keep user-visible fixes and improvements, and write concise App Store “What’s New” notes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/henryalouf/ruflow/app-store-changelog
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 henryalouf/ruflow --skill app-store-changelog
Clone the repo
git clone --depth 1 https://github.com/henryalouf/ruflow

Made for: Claude Code, Codex.

Or install antigravity-awesome-skills, the plugin that ships this one along with the rest of its 39 skills.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/henryalouf/ruflow/app-store-changelog/github.svg)](https://agentmods.dev/skills/henryalouf/ruflow/app-store-changelog)
Your own site
<a href="https://agentmods.dev/skills/henryalouf/ruflow/app-store-changelog"><img src="https://agentmods.dev/badge/skills/henryalouf/ruflow/app-store-changelog/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 app-store-changelog

Your own site · 80×15
<a href="https://agentmods.dev/skills/henryalouf/ruflow/app-store-changelog"><img src="https://agentmods.dev/badge/skills/henryalouf/ruflow/app-store-changelog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 678 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 95% copy Near-identical to another mod 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.00020 $0.00678
Opus 5 $0.00010 $0.00339
Sonnet 5 $0.00004 $0.00136
Haiku 4.5 $0.00002 $0.00068

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

Security

Grade A, and why

app-store-changelog 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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/collect_release_changes.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.

Origin

This is a copy

95% identical to app-store-changelog — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/antigravity-awesome-skills/plugins/antigravity-awesome-skills-claude/skills/app-store-changelog/SKILL.md · 76 lines

How it starts

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

App Store Changelog

Overview

Generate a comprehensive, user-facing changelog from git history since the last tag, then translate commits into clear App Store release notes.

When to Use

  • When the user asks for App Store "What's New" text or release notes from git history.
  • When you need to turn raw commits into concise, user-facing release bullets.

Workflow

1) Collect changes

  • Run scripts/collect_release_changes.sh from the repo root to gather commits and touched files.
  • If needed, pass a specific tag or ref: scripts/collect_release_changes.sh v1.2.3 HEAD.
  • If no tags exist, the script falls back to full history.

2) Triage for user impact

  • Scan commits and files to identify user-visible changes.
  • Group changes by theme (New, Improved, Fixed) and deduplicate overlaps.
  • Drop internal-only work (build scripts, refactors, dependency bumps, CI).

3) Draft App Store notes

  • Write short, benefit-focused bullets for each user-facing change.
  • Use clear verbs and plain language; avoid internal jargon.
  • Prefer 5 to 10 bullets unless the user requests a different length.

4) Validate

  • Ensure every bullet maps back to a real change in the range.
  • Check for duplicates and overly technical wording.
  • Ask for clarification if any change is ambiguous or possibly internal-only.

Commit-to-Bullet Examples

The following shows how raw commits are translated into App Store bullets:

Raw commit message App Store bullet
fix(auth): resolve token refresh race condition on iOS 17 • Fixed a login issue that could leave some users unexpectedly signed out.
feat(search): add voice input to search bar • Search your library hands-free with the new voice input option.
perf(timeline): lazy-load images to reduce scroll jank • Scrolling through your timeline is now smoother and faster.

Internal-only commits that are dropped (no user impact):

  • chore: upgrade fastlane to 2.219
  • refactor(network): extract URLSession wrapper into module
  • ci: add nightly build job

Read the full file on GitHub · 76 lines

Files

What ships with it

3 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. 7d ago First seen · 76 lines · 20 tokens per session scan A e63cdabf73b4

Subscribe to this mod's changes

app-store-changelog is a skill published in the GitHub repository henryalouf/ruflow (129 stars, last pushed 3mo ago), licensed MIT. It adds 20 tokens to every session and 678 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to app-store-changelog, differing in 6 lines, and is treated as a copy.