release-docs

release-docs is a skill for Claude Code, Codex from caipe-io/ai-platform-engineering. It costs 76 tokens per session (2,390 once invoked), scanned A, original, Apache-2.0.

A release-document generator for ai-platform-engineering. It combines release notes, which describe changes in a new version, with an upgrade guide explaining how to move from an older version.

In plain words
What is it for?
Use it when preparing a release, answering what changed between versions, or generating an upgrade guide from one version to another.
Why use it?
It keeps the explanation of what changed and the instructions for upgrading in one dated document, including version-specific migration details when available.

Skill for Claude CodeCodex

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/caipe-io/ai-platform-engineering/release-docs
Any agent
npx skills add caipe-io/ai-platform-engineering --skill release-docs
Clone the repo
git clone --depth 1 https://github.com/caipe-io/ai-platform-engineering

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/caipe-io/ai-platform-engineering/release-docs.svg)](https://agentmods.dev/skills/caipe-io/ai-platform-engineering/release-docs)
Your own site
<a href="https://agentmods.dev/skills/caipe-io/ai-platform-engineering/release-docs"><img src="https://agentmods.dev/badge/skills/caipe-io/ai-platform-engineering/release-docs.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,390 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.00076 $0.02390
Opus 5 $0.00038 $0.01195
Sonnet 5 $0.00015 $0.00478
Haiku 4.5 $0.00008 $0.00239

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

Security

Grade A, and why

release-docs 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.

.claude/skills/release-docs/SKILL.md · 319 lines

How it starts

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

Release Blog Post Generator

Produce one combined blog post for an ai-platform-engineering release:

docs/releases/YYYY-MM-DD-release-X-Y-Z.md — release notes narrative (highlights, what's new, bug fixes, breaking changes) followed by the full upgrade guide (Helm values diff, step-by-step runbook, personal impact analysis) as an embedded section.

The file is picked up by the Docusaurus releases blog plugin and published at /blog/releases/release-X.Y.Z.


Execution context

Runs in two modes:

  • Coding agent (Claude Code, Cursor) with shell access — run git and helm commands directly and write the file to disk.
  • Chat-only (CAIPE chat, Slack, web UI) — render output as a fenced markdown block the user can copy; note which commands to run manually.

Detect by whether a Bash/shell tool is available.


Step 1 — Gather inputs

Ask the user for:

Input Example Required
To version 0.4.9 Yes
From version 0.4.8 Yes (defaults to previous tag)
User's values.yaml paste or path No — enables personal impact analysis
Environment dev / preview / prod / vm No — enables env-specific notes

If from/to are not provided, detect from the repo:

git tag --sort=-version:refname | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$' | head -2

Step 2 — Collect raw data

Run all of the following in parallel where possible.

2a — Git log between versions

git log <from>..<to> --oneline --no-merges

Fetch full PR bodies for non-chore commits:

# for each PR number in the log, e.g. (#1324):
gh pr view <number> --json title,body,labels

2b — Helm values diff

CHART=oci://ghcr.io/caipe-io/charts/ai-platform-engineering
helm show values "$CHART" --version <from> > /tmp/values-from.yaml
helm show values "$CHART" --version <to>   > /tmp/values-to.yaml
diff -u /tmp/values-from.yaml /tmp/values-to.yaml

2c — Chart metadata

Read the full file on GitHub · 319 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 · 319 lines · 76 tokens per session scan A 7c2afcb306d8

Subscribe to this mod's changes

release-docs is a skill published in the GitHub repository caipe-io/ai-platform-engineering (405 stars, last pushed yesterday), licensed Apache-2.0. It adds 76 tokens to every session and 2,390 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-08-30.