ac-tools-milestone

ac-tools-milestone is a skill for Claude Code from WaterplanAI/agentic-config. It costs 42 tokens per session (4,360 once invoked), scanned A, original, MIT.

A skill for checking whether a backlog section is complete and preparing a software release from it.

In plain words
What is it for?
Use it to validate a backlog section, optionally squash commits, create a version tag, and generate milestone or release notes, with confirmation checkpoints unless automatic mode is selected.
Why use it?
It identifies unfinished work before release and can organize the release version, tag, and notes.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions AGENTS.md.

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

Good fit Use it to validate a backlog section, optionally squash commits, create a version tag, and generate milestone or release notes, with confirmation checkpoints unless automatic mode is selected.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waterplanai/agentic-config/ac-tools-milestone
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 WaterplanAI/agentic-config --skill ac-tools-milestone
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 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-tools-milestone

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-milestone/github.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-milestone)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-milestone"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-milestone/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 ac-tools-milestone

Your own site · 80×15
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-tools-milestone"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-tools-milestone.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,360 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 warn 7 Sept 2026
SkillSpector: 4 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 497
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • medium Excessive Agency · line 196
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Excessive Agency · line 220
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Excessive Agency · line 503
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00042 $0.04360
Opus 5 $0.00021 $0.02180
Sonnet 5 $0.00008 $0.00872
Haiku 4.5 $0.00004 $0.00436

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

Security

Grade A, and why

ac-tools-milestone 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 9d 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-tools/skills/ac-tools-milestone/SKILL.md · 575 lines

How it starts

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

Validate section completion in backlog, then either release or identify gaps.

Compatibility Note

This pi wrapper preserves the original milestone workflow while treating confirmation points as explicit manual checkpoints in the current chat instead of a runtime interactive-question dependency.

All arguments are optional with smart defaults.

Argument Parsing

Parse $ARGUMENTS into:

Variable Source Required Default
BACKLOG_PATH 1st arg No Auto-detect: BACKLOG.md, specs/backlog.md, or skip
SECTION 2nd arg No Latest incomplete section, or skip if no backlog
BASE_BRANCH 3rd arg No origin/main (fetches first)
VERSION 4th arg (if not quoted) No Auto-bump from VERSION file or latest git tag
VALIDATION_PROMPT Last quoted string "..." No Auto-derive from checklist
SKIP_TAG --skip-tag flag No false (tags created by default)
AUTO_MODE --auto flag No false (confirmation gates enabled)
WITH_SQUASHED_COMMITS --with-squashed-commits flag No false (squashed commits list excluded by default)

Parsing Rules:

  • If an argument starts and ends with ", treat as VALIDATION_PROMPT
  • Version is optional; if 4th arg is quoted, there's no version
  • If --skip-tag flag is present anywhere in arguments, set SKIP_TAG=true
  • If --with-squashed-commits flag is present anywhere in arguments, set WITH_SQUASHED_COMMITS=true
  • If --auto flag is present anywhere in arguments, set AUTO_MODE=true (skips confirmation gates)
  • Empty $ARGUMENTS triggers full auto-detect mode

Phase 0: Smart Defaults Resolution

When NO arguments provided:

0.1 Fetch Remote

git fetch origin main || git fetch origin master

0.2 Determine BASE_BRANCH

# Try origin/main first, fallback to origin/master
git show-ref --verify --quiet refs/remotes/origin/main && echo "origin/main" || echo "origin/master"

Read the full file on GitHub · 575 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. 9d ago First seen · 575 lines · 42 tokens per session scan A 5ec4a7aabd13

Subscribe to this mod's changes

ac-tools-milestone is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 4,360 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

ijfw-ship

Use when the user says 'ship it', 'ship this', 'release', 'publish', 'launch', 'deploy', 'go live', 'wrap this up', 'time to ship', or invokes '/ijfw-ship'. Domain-aware release — software (test → tag → push → publish), book (final edit → format → KDP / agent / Substack), campaign (review → schedule → launch →…

FerroxLabs/ijfw · 139 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

ship

Use when changes are ready to ship — takes the working tree to a pull request with code review, Conventional Commit, automatic SemVer bump and a PR template. Part of the cys flow (after cys:check).

bacsystem/parallel-plan-executor · 47 tokens

agency-jira-workflow-steward

Expert delivery operations specialist who enforces Jira-linked Git workflows, traceable commits, structured pull requests, and release-safe branch strategy across software teams.

BlackPearl-AI/BlackPearl-CodingAgent · 38 tokens