release-planning

release-planning is a skill for Claude Code, Codex from caiaffa/claude-code-ultimate-engineering-system. It costs 23 tokens per session (636 once invoked), scanned A, original, MIT.

A guide for planning production releases, including migrations, staged rollouts, monitoring, and recovery steps.

In plain words
What is it for?
Use it to plan feature launches, infrastructure or traffic changes, database migrations, and other changes that could be difficult to undo.
Why use it?
It makes assumptions, responsibilities, warning signs, and rollback decisions clear before a change reaches users.

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/caiaffa/claude-code-ultimate-engineering-system/release-planning
Any agent
npx skills add caiaffa/claude-code-ultimate-engineering-system --skill release-planning
Clone the repo
git clone --depth 1 https://github.com/caiaffa/claude-code-ultimate-engineering-system

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/caiaffa/claude-code-ultimate-engineering-system/release-planning.svg)](https://agentmods.dev/skills/caiaffa/claude-code-ultimate-engineering-system/release-planning)
Your own site
<a href="https://agentmods.dev/skills/caiaffa/claude-code-ultimate-engineering-system/release-planning"><img src="https://agentmods.dev/badge/skills/caiaffa/claude-code-ultimate-engineering-system/release-planning.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 636 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.00023 $0.00636
Opus 5 $0.00012 $0.00318
Sonnet 5 $0.00005 $0.00127
Haiku 4.5 $0.00002 $0.00064

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

Security

Grade A, and why

release-planning 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 4d 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.

skills/release-planning/SKILL.md · 66 lines

How it starts

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

Mission

Reduce deployment risk by making release assumptions, sequencing, safeguards, and recovery paths explicit.

When to use

  • Shipping critical features.
  • Deploying migrations.
  • Changing infra or traffic flows.
  • Introducing backward compatibility risk.
  • Coordinating multi-step rollouts.

Handoff

  • Receives from: backend-platform-engineer (feature ready) or premortem-facilitator (risks identified).
  • Hands off to: staff-sre (production validation), operational-excellence-enforcer (runbook check).

Release plan structure

1. WHAT is changing (summary, not full diff)
2. PRECONDITIONS (what must be true before we start)
3. STEPS (ordered, with decision gates between phases)
4. MONITORING (what to watch, what thresholds mean stop)
5. SUCCESS SIGNALS (how we know it worked)
6. ROLLBACK (triggers, procedure, data implications)
7. IRREVERSIBLE STEPS (clearly marked ⚠️)
8. OWNERS (who owns each step, who makes go/no-go calls)

Rollout strategy selection

Risk level Strategy
Low risk (config change, minor fix) Deploy + monitor for 30 min
Medium risk (new feature, API change) Feature flag → 1% → 10% → 50% → 100%
High risk (migration, data change) Canary → soak 24h → expand → monitor 48h
Critical (schema migration, breaking change) Expand-and-contract: dual-write → migrate reads → verify → drop old

Rollback reality check

For each release, answer honestly:

  1. Can we roll back the code? (usually yes)
  2. Can we roll back the data? (often no)
  3. Can we roll back the schema? (depends on migration)
  4. What happens to in-flight requests during rollback?
  5. What happens to data written by the new version?
  6. How long does rollback take? (minutes? hours?)

Red flags

  • Release plan is "deploy and monitor."
  • No one can describe the rollback procedure.
  • Canary has no success criteria.
  • Migration plan works on staging but wasn't tested under production load.
  • Feature flag exists but there's no plan for when to remove it.
  • Multiple irreversible steps without explicit acknowledgment.

Read the full file on GitHub · 66 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. 4d ago First seen · 66 lines · 23 tokens per session scan A a81cb7a992bc

Subscribe to this mod's changes

release-planning is a skill published in the GitHub repository caiaffa/claude-code-ultimate-engineering-system (17 stars, last pushed 2mo ago), licensed MIT. It adds 23 tokens to every session and 636 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-30.

Related

Other skills, from other repositories

release

Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.

openai/symphony · 42 tokens

changelog-entry

Add a new entry to CHANGELOG.yml under the current unreleased version (or create the version block if needed), then regenerate documentation. Use when the user says things like "add a changelog entry", "log this fix in the changelog", or "/changelog-entry".

telepresenceio/telepresence · 60 tokens

release-notes

Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.

phuryn/pm-skills · 57 tokens

mate-oss-gate

在准备把 MateCloud(或其子集)开源 / 发布到公开仓前使用。按 open-core 边界把关:剥离企业代码、清竞品名与内部路径、查密钥、确认 LICENSE。当用户说"要开源了""发布公开版""开源前检查""oss release"时触发。.

mateaix/matecloud · 81 tokens

snapshot-release

Drives the snapshot-release flow for the current branch's PR. Posts a /snapshot comment on the PR if one isn't already there (with confirmation), waits for the Continuous Releases workflow to finish, and reports the tarball URLs from the resulting 📦 Snapshot Release comment. Use for both triggering and waiting …

daangn/seed-design · 142 tokens

devops/changelog-generation

自动生成 CHANGELOG,基于 git 提交历史和 pipeline 产物信息,遵循 Conventional Commits 和 Keep a Changelog 规范.

echoVic/boss-skill · 36 tokens