ac-git-release

ac-git-release is a skill for Claude Code, Codex from WaterplanAI/agentic-config. It costs 45 tokens per session (2,262 once invoked), scanned A, original, MIT.

A Git release workflow that prepares a versioned release, updates version information, and merges the result into the main branch.

In plain words
What is it for?
It is for validating an unreleased changelog section, preparing a release commit and tag, rebasing and pushing changes, merging to main, and preparing a GitHub release.
Why use it?
It organizes release checks and reduces the chance of missing changelog, version, history, tag, or synchronization steps.

Skill for Claude CodeCodex

Part of the agentic-config plugin — 49 skills, 2 agents, 1 plugin shipped together

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.

agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-git-release
Any agent
npx skills add WaterplanAI/agentic-config --skill ac-git-release
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code, Codex.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 2 agents, 1 plugin.

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 ac-git-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-git-release.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-git-release)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-git-release"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-git-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,262 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00045 $0.02262
Opus 5 $0.00023 $0.01131
Sonnet 5 $0.00009 $0.00452
Haiku 4.5 $0.00005 $0.00226

Measured 5d ago against content hash 3885bb07f225, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ac-git-release 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 5d 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.

packages/pi-ac-git/skills/ac-git-release/SKILL.md · 312 lines

How it starts

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

Release Command

Full release workflow: validate changelog, prepare a squashed release commit and tag, sync the VERSION file plus repo/package version metadata, rebase, push, and merge to main.

No arguments required - auto-detect the current branch, release version, and release inputs.

Compatibility Note

This pi wrapper preserves the original release workflow but performs the former milestone-preparation steps directly because ac-tools-milestone does not ship as a separate pi wrapper in the current package surface.

Context Awareness

Before any destructive history rewrite, use /skill:ac-git-git-safe to inspect the dry-run plan and confirm the exact squash/tag steps you intend to execute.

Phase 1: Prepare the Release Locally

1.1 Pre-Flight

Verify all of the following before rewriting history:

  • git state is clean
  • branch is not main
  • commits exist ahead of origin/main
  • CHANGELOG.md has a populated [Unreleased] section
  • the next release version can be derived from VERSION or the latest v*.*.* tag

Suggested checks:

git status --short
git fetch origin main
git rev-parse --abbrev-ref HEAD
git log --oneline origin/main..HEAD
git tag -l 'v*.*.*' | sort -V | tail -1
test -f VERSION && cat VERSION
test -f CHANGELOG.md && sed -n '/\[Unreleased\]/,/^## /p' CHANGELOG.md

1.2 Determine Release Inputs

Capture these values for the rest of the flow:

  • BRANCH: current branch name
  • VERSION: next release tag (prefer patch bump from VERSION, otherwise patch bump from latest semantic tag)
  • COMMITS_INCLUDED: the commit list that will be squashed

1.3 Prepare the Squashed Release Commit

Use the same dry-run-first safety rules as ac-git-git-safe:

  1. propose the exact squash plan before executing
  2. create a backup branch before rewriting history
  3. squash the commits ahead of origin/main into one conventional commit
  4. keep CHANGELOG.md aligned with the release contents
  5. create an annotated tag for {VERSION} on the squashed commit
  6. do not push yet

Read the full file on GitHub · 312 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. 5d ago First seen · 312 lines · 45 tokens per session scan A 3885bb07f225

Subscribe to this mod's changes

ac-git-release is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 2,262 once invoked, about $0.0002 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

share-a-library

Use when a managed library is ready to publish to GitHub and hand to teammates as an install command. Run the GitHub publishing steps, then return the exact shareable install command.

MoizIbnYousaf/Ai-Agent-Skills · 41 tokens

generate-release-notes

Generate categorized release notes from any source (GitHub, Linear, Jira, or manual input) with optional publishing.

huytieu/COG-second-brain · 27 tokens

git-flow-pr

Executes the full PR-driven development workflow: create an isolated feature branch from the current work, commit all staged changes, rebase cleanly onto the selected base branch (skipping any ancestor commits already merged), push the branch, and open a GitHub pull request linked to a related issue. Includes guidance…

soulcodex/agentic · 103 tokens

git-conventional-commits

Author standardized conventional commit messages (feat, fix, docs, refactor, chore), generate automated semver releases, and format pull request descriptions.

pedroiff0/awesome-skills · 36 tokens

prepare-providers-documentation

Replace the manual commit-by-commit classification step in breeze release-management prepare-provider-documentation with AI-driven classification. For each provider with pending changes, analyze every PR (batched into one sub-agent per provider, not one per PR), pay special attention to potentially breaking changes by…

apache/airflow · 113 tokens

flow-next-land

Autonomous PR babysitter tick. Fixes CI, resolves feedback, merges when converged, closes the spec, releases. Emits LANDVERDICT. Use when asked to land PRs.

gmickel/flow-next · 42 tokens