Generate engaging, localized App Store release notes (What's New) from git log, bullet points, or free text using canonical metadata under `./metadata`. Optionally pairs with promotional text updates.
npx skills add https://github.com/rorkai/app-store-connect-cli-skills --skill asc-whats-new-writer
Generate engaging, localized release notes from flexible input. Optionally pair with promotional text updates.
asc metadata pull --app "APP_ID" --version "1.2.3" --dir "./metadata". OR: user provides keywords manually.asc auth login or ASC_* env vars).en-US unless the user specifies otherwise.references/release_notes_guidelines.md for tone, structure, and examples.metadata/version/ (highest semver). Use this for all metadata reads.Accept one of three input modes (auto-detect):
Parse commits since the last tag:
# Find latest tag
git describe --tags --abbrev=0
# List commits since that tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges
Filter out noise: merge commits, dependency bumps, CI changes, formatting-only commits. Extract user-facing changes.
User provides rough bullets like:
User describes changes conversationally:
> "We made search faster, fixed that annoying crash when you open the app, and added a sleep timer feature"
The skill extracts and structures the changes from the text.
Prompt the user: "What changed in this release? You can paste git log output, bullet points, or just describe the changes."
Group changes into sections per the guidelines:
Omit empty sections. If all changes are fixes, only show "Fixed."
Follow the tone rules from references/release_notes_guidelines.md:
The first ~170 characters are the only visible part before "more." Lead with the single most impactful change in a complete, compelling sentence.
keywords from metadata/version/{latest}/{primary-locale}.jsonasc metadata keywords ... reads and writes.If the user wants it, draft a 170-char promotional text that:
Show the draft to the user with character count. Wait for approval before localizing.
Translate the approved notes to all existing locales.
For each locale:
keywords from metadata/version/{latest}/{locale}.jsonShow a table of all locales with their notes and character counts:
| Locale | What's New (first 80 chars...) | Chars | Promo Text | Chars |
|--------|-------------------------------|-------|------------|-------|
| en-US | Search just got faster — ... | 847 | New sleep… | 142 |
| ar-SA | البحث أصبح أسرع — ... | 923 | نوم جديد… | 138 |
| ... | ... | ... | ... | ... |
Do not upload without user confirmation.
Upload via asc (verify exact syntax with asc --help):
# Individual locale direct update
asc apps info edit --app "APP_ID" --version-id "VERSION_ID" --locale "en-US" --whats-new "Your release notes here"
# Bulk canonical-metadata push after writing ./metadata/version/<version>/<locale>.json
asc metadata push --app "APP_ID" --version "1.2.3" --dir "./metadata" --dry-run
asc metadata push --app "APP_ID" --version "1.2.3" --dir "./metadata"
If promotional text was drafted, either include --promotional-text "..." in the direct update command or write promotionalText into the canonical JSON before asc metadata push.
On partial upload failure:
metadata/version/{latest-version}/{locale}.json → keywords fieldmetadata/version/{latest-version}/{locale}.json → whatsNew fieldmetadata/version/./metadata tree is what asc metadata pull, asc metadata push, and asc metadata keywords ... operate on.asc-aso-auditasc-localize-metadata instead.asc-aso-audit first.asc metadata pull or inspect planned keyword changes with asc metadata keywords diff.Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Take rorkai/asc-whats-new-writer from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.