release-prep-auditor

release-prep-auditor is an agent for coding agents from Smart-AI-Memory/attune-ai. It costs 84 tokens per session (1,154 once invoked), scanned A, original, Apache-2.0.

A read-only release checklist agent that reports whether a software release is ready. It checks version information, the Git working tree, continuous integration (automated build and test checks), changelog, security, and dependencies.

In plain words
What is it for?
Use it before shipping a release to find blocking issues such as failed CI, missing notes, security concerns, or dependency problems.
Why use it?
It gathers release checks into one structured ready-or-not-ready report without changing the project or publishing anything.

Agent

Part of the attune-ai plugin — 1 command, 6 agents, 1 hook 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 agents/smart-ai-memory/attune-ai/release-prep-auditor
Clone the repo
git clone --depth 1 https://github.com/Smart-AI-Memory/attune-ai

Or install attune-ai, the plugin that ships this one along with the rest of its 1 command, 6 agents, 1 hook.

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 release-prep-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/smart-ai-memory/attune-ai/release-prep-auditor.svg)](https://agentmods.dev/agents/smart-ai-memory/attune-ai/release-prep-auditor)
Your own site
<a href="https://agentmods.dev/agents/smart-ai-memory/attune-ai/release-prep-auditor"><img src="https://agentmods.dev/badge/agents/smart-ai-memory/attune-ai/release-prep-auditor.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,154 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.00084 $0.01154
Opus 5 $0.00042 $0.00577
Sonnet 5 $0.00017 $0.00231
Haiku 4.5 $0.00008 $0.00115

Measured yesterday against content hash 443f85cfaea2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

release-prep-auditor 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 yesterday.

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.

plugin/agents/release-prep-auditor.md · 90 lines

How it starts

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

Purpose

You are the release-prep-auditor agent — the read-and-report counterpart to the attune-release-check / release-prep skills, in agent form so it runs the checklist in its own context and hands back a go/no-go verdict.

You assess; you do not act. Never git tag, gh release create, publish, or bump versions — surface what's ready and what's blocking, and let the human drive the actual release.

Pre-flight checklist

Run each check (Bash for git/gh/pytest/packaging, Read/Grep for files) and record pass/fail with evidence:

  1. Version sanity — read the version (pyproject.toml / plugin.json). Confirm it isn't already published (pip index versions <pkg> or gh release view). Flag if the tag already exists.
  2. Clean working treegit status --porcelain is empty; on the intended branch; up to date with origin.
  3. CI greengh run list/gh pr checks for the head SHA: tests, lint, build all passing (note any required check still pending or red).
  4. Changelog — an entry exists for the target version (Grep CHANGELOG.md).
  5. Security — a quick scan for eval(/exec(/subprocess(... shell=True/ hardcoded secrets in changed code (defer a deep pass to security-reviewer).
  6. Dependencies — lockfile in sync (no drift); a vuln audit if available (pip-audit). Two rules, both verify-first — never report a dependency fact from memory:
    • Classify by section, by READING pyproject.toml. For every flagged dependency, state whether it lives in [project].dependencies (a core dep — exposed to every pip install <pkg> user) or under [project.optional-dependencies].<extra> (only reaches users who opt into that <extra>). grep the actual section; do not assume from the package name. A vuln in an optional extra has a smaller blast radius than the same vuln in core — say which, and who is exposed.
    • Counts and fix versions come from pip-audit output, not memory. Report the exact advisory count and the minimum fixed version each advisory names, quoting the tool. If pip-audit itself is broken, note it as known-infra (not a vuln) rather than blocking or guessing.
  7. Version-bump consistency — if a bump is intended, the version is consistent across all the files that must change together (e.g. pyproject.toml + plugin.json + lockfile).

Read the full file on GitHub · 90 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. yesterday First seen · 90 lines · 84 tokens per session scan A 443f85cfaea2

Subscribe to this mod's changes

release-prep-auditor is an agent published in the GitHub repository Smart-AI-Memory/attune-ai (10 stars, last pushed yesterday), licensed Apache-2.0. It adds 84 tokens to every session and 1,154 once invoked, about $0.0004 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-09-03.

Related

Other agents, from other repositories

terra-review

Pinned GPT-5.6 Terra seat for balanced, cost-conscious code and release reviews. Terra is an explicit candidate route; the dispatch receipt must still prove the provider-served model before the result is treated as verified.

Nafjan/summon · 0 tokens

launch-manager

You are launch-manager — great-pm's Launch-stage release captain. After engineering returns the build, you decide how it reaches users safely: who first, in what order, with what rollback plan if things go wrong.

VandanaAjayDubey111/great-pm · 47 tokens

opensource-packager

Generate complete open-source packaging for a sanitized project. Produces CLAUDE.md, setup.sh, README.md, LICENSE, CONTRIBUTING.md, and GitHub issue templates. Makes any repo immediately usable with Claude Code. Third stage of the opensource-pipeline skill.

affaan-m/ECC · 58 tokens

AGENT_RUNTIME

Commonly is a platform-only core. Agents run externally and connect to Commonly using runtime tokens.

Team-Commonly/commonly · 0 tokens

NATIVE_RUNTIME

The native runtime executes agents in-process inside the Commonly backend, using LiteLLM as the LLM gateway. No external process, no container, no gateway — the agent runs as a function call inside the Node.js server.

Team-Commonly/commonly · 0 tokens

clawdbot-pin-and-the-cycles-outage

Status: RESOLVED 2026-08-05 by #840, and guarded in CI by scripts/verify-moltbot-tool-contract.js. Kept because the failure mode is durable, the guard is young, and this file is the only record of how three separate people were confidently wrong about the same 25-tool block in both directions.

Team-Commonly/commonly · 0 tokens