release-readiness

release-readiness is a skill for Claude Code, Codex from strikersam/autonomous-ai-agency. It costs 29 tokens per session (690 once invoked), scanned A, original, MIT.

A checklist that must pass before creating a version tag or releasing software. It covers tests, the changelog, version numbering, committing the update, and tagging the release; a version tag marks a specific software version in Git.

In plain words
What is it for?
Use it before a Git release tag or deployment to a production or shared system.
Why use it?
It catches unfinished tests or release notes before code is shared or deployed, and provides a consistent versioning process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it before a Git release tag or deployment to a production or shared system.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/strikersam/autonomous-ai-agency/release-readiness
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 strikersam/autonomous-ai-agency --skill release-readiness
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

Made for: Claude Code, Codex.

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-readiness

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/release-readiness/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/release-readiness)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/release-readiness"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/release-readiness/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 release-readiness

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/release-readiness"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/release-readiness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 690 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 pass 7 Sept 2026
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.00029 $0.00690
Opus 5 $0.00015 $0.00345
Sonnet 5 $0.00006 $0.00138
Haiku 4.5 $0.00003 $0.00069

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

Security

Grade A, and why

release-readiness 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 12d 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.

.agents/skills/release-readiness/SKILL.md · 101 lines

How it starts

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

Skill: release-readiness

When to Use

Before any version tag or deployment to a production/shared instance.

Instructions

Work through this checklist in order. Do not proceed to the next step if any item fails.

1 — Tests green

pytest -v

All tests must pass. Zero failures, zero errors.

2 — Changelog updated

grep -n "Unreleased" docs/changelog.md

There must be at least one entry under ## [Unreleased]. If the section says _(nothing pending)_, the changelog has NOT been updated — stop here.

3 — Determine the version bump

Using Semantic Versioning:

  • MAJOR — breaking API or behaviour change (existing clients must change)
  • MINOR — new feature, backwards-compatible
  • PATCH — bug fix, backwards-compatible

Check docs/changelog.md for the current version to determine the next version.

4 — Update changelog

In docs/changelog.md:

  1. Change ## [Unreleased] to ## [X.Y.Z] — YYYY-MM-DD
  2. Add a new empty ## [Unreleased] section at the top with _(nothing pending)_

5 — Commit the changelog update

git add docs/changelog.md
git commit -m "chore: release vX.Y.Z"

6 — Tag the release

git tag vX.Y.Z
git push origin vX.Y.Z

7 — Verify CI on the tag

Check that the CI workflow passes on the tagged commit. See .github/workflows/ci.yml.

8 — Post-release

  • Update .env.example if any new environment variables were introduced.
  • Update README.md if setup instructions changed.
  • Notify via Telegram bot if the server is running: python telegram_bot.py (if configured).

Acceptance Checks

  • pytest -v exits 0
  • docs/changelog.md [Unreleased] section had entries
  • Changelog moved to versioned section with date
  • git tag vX.Y.Z created
  • CI passes on the tag
  • .env.example updated if needed
  • README.md updated if needed

Rollback Plan

If a release is found to be broken after tagging:

  1. Delete the tag: git tag -d vX.Y.Z && git push origin :refs/tags/vX.Y.Z
  2. Revert the release commit: git revert HEAD
  3. Fix the issue in a new commit
  4. Re-run this release-readiness checklist

Read the full file on GitHub · 101 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. 12d ago First seen · 101 lines · 29 tokens per session scan A 02060e1e3438

Subscribe to this mod's changes

release-readiness is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 690 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories