with one click
release
Generate release notes and publish a new version of ClaudeBlobs
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate release notes and publish a new version of ClaudeBlobs
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | release |
| description | Generate release notes and publish a new version of ClaudeBlobs |
| argument-hint | [patch|minor|major] |
| allowed-tools | Bash, Read, Glob, Grep, AskUserQuestion |
Create a new release with auto-generated release notes.
Optional first argument: patch (default), minor, or major.
Pre-flight checks — verify:
main branch: git rev-parse --abbrev-ref HEADgit diff --quiet && git diff --cached --quietswift testDetermine version — read current version from Resources/Info.plist using /usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" Resources/Info.plist, then compute the next version based on the bump argument.
Collect commits — get all commits since the last tag:
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
if [ -n "$LAST_TAG" ]; then
git log --oneline "${LAST_TAG}..HEAD"
else
git log --oneline
fi
Every commit in ${LAST_TAG}..HEAD is by definition new since the last tag — include all of them. Do not filter or drop commits based on a guess that they "already shipped." If a commit looks like it might belong to an older release, verify with git tag --contains <sha> before excluding.
Generate release notes — categorize commits into:
Format as markdown with a one-line summary at the top describing the release theme. Lead the summary with the most user-visible change — usually a new feature, not bug fixes.
If the commit range contains any New Features and the user requested a patch bump (or did not specify), flag this and recommend a minor bump instead before proceeding.
Get explicit approval — REQUIRED before publishing — show the user:
vX.Y.ZThen stop and wait for explicit user approval before running make release. Do not proceed on the basis of a prior "operate autonomously" instruction — releases push tags and trigger CI publishing, which is not reversible and not within the autonomous-operation scope. Ask via AskUserQuestion if no approval has been given yet in this turn.
Execute release — only after explicit approval:
NOTES_FILE=$(mktemp)
# Write approved release notes to NOTES_FILE
NOTES_FILE="$NOTES_FILE" make release BUMP=<arg>
Report — tell the user the tag has been pushed and CI will handle the rest. Link to the GitHub Actions tab: https://github.com/kbrady1/ClaudeBlobs/actions