release-management-and-rollback-planning

release-management-and-rollback-planning is a skill for Claude Code from shennawardana23/skillme. It costs 98 tokens per session (1,265 once invoked), scanned A, original, Apache-2.0.

A guide for releasing software gradually and preparing a tested way to undo the release if it causes problems. A canary release sends a small share of users to the new version first.

In plain words
What is it for?
Use it to plan canary releases, staged rollouts, feature-flag launches, deployment checks, and rollback runbooks.
Why use it?
It limits the impact of faulty code or configuration and makes the decision to continue or roll back based on observed results.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skillme plugin — 137 skills, 2 commands shipped together

Good fit Use it to plan canary releases, staged rollouts, feature-flag launches, deployment checks, and rollback runbooks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shennawardana23/skillme/release-management-and-rollback-planning
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 shennawardana23/skillme --skill release-management-and-rollback-planning
Clone the repo
git clone --depth 1 https://github.com/shennawardana23/skillme

Made for: Claude Code.

Or install skillme, the plugin that ships this one along with the rest of its 137 skills, 2 commands.

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-management-and-rollback-planning

README.md
[![agentmods](https://agentmods.dev/badge/skills/shennawardana23/skillme/release-management-and-rollback-planning/github.svg)](https://agentmods.dev/skills/shennawardana23/skillme/release-management-and-rollback-planning)
Your own site
<a href="https://agentmods.dev/skills/shennawardana23/skillme/release-management-and-rollback-planning"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/release-management-and-rollback-planning/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-management-and-rollback-planning

Your own site · 80×15
<a href="https://agentmods.dev/skills/shennawardana23/skillme/release-management-and-rollback-planning"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/release-management-and-rollback-planning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,265 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.
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.00098 $0.01265
Opus 5 $0.00049 $0.00633
Sonnet 5 $0.00020 $0.00253
Haiku 4.5 $0.00010 $0.00127

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

Security

Grade A, and why

release-management-and-rollback-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 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.

skills/release-management-and-rollback-planning/SKILL.md · 107 lines

How it starts

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

Release Management and Rollback Planning

The rollback plan is written before the release, not improvised during an incident. A release with no tested rollback path isn't a release plan — it's a bet that nothing will go wrong.

Progressive delivery

Ship changes to an increasing slice of traffic rather than all at once:

  1. Canary: route a small percentage of traffic (often 1-5%) to the new version; compare error rate, latency, and business metrics against the baseline before continuing.
  2. Staged rollout: widen in increments (e.g. 5% → 25% → 50% → 100%, or region by region / hotel-brand by hotel-brand), with a defined dwell time and defined go/no-go metrics at each step.
  3. Full rollout: only after each prior stage cleared its metrics thresholds, not just "elapsed time with no complaints."

Config and data changes need the same discipline as code changes — a "just a config update" mindset is exactly what removes the staged rollout step that would have caught a bad config before it reached 100% of traffic (see Real-world grounding).

Feature flags

Feature flags decouple deploy (code reaches production, dormant) from release (the behavior is turned on for users), which is what makes canarying and instant rollback possible without a redeploy. Martin Fowler's feature toggle taxonomy usefully separates flags by purpose:

  • Release toggles — hide incomplete work behind a flag so it can merge to main continuously; short-lived, removed once fully released.
  • Ops toggles — a kill switch for degrading gracefully under load or disabling a risky feature instantly if it misbehaves; can be long-lived.
  • Experiment toggles — A/B testing; lifespan matches the experiment.
  • Permission toggles — gate a feature by plan/tenant/role; often long-lived by design.

Flag hygiene matters: a release toggle left in the code long after full rollout is tech debt (dead code paths, combinatorial testing burden) — schedule its removal at rollout time, not "eventually."

Read the full file on GitHub · 107 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 107 lines · 98 tokens per session scan A a126eefe5d62

Subscribe to this mod's changes

release-management-and-rollback-planning is a skill published in the GitHub repository shennawardana23/skillme (2 stars, last pushed 15d ago), licensed Apache-2.0. It adds 98 tokens to every session and 1,265 once invoked, about $0.0005 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 skills, from other repositories

limrun-xcode

Build an iOS / Apple app on remote Xcode with lim xcode build instead of local xcodebuild, or run its XCTest suites with lim xcode test, from any environment (Linux, Windows, macOS, VM, container). Use for non-Bazel projects (an .xcodeproj / .xcworkspace, an XcodeGen project.yml with a gitignored project, React Native…

sutchan/Agent-Skills-Hub · 159 tokens

limrun-xcode-bazel

Build a Bazel-based iOS / macOS / Apple app on Limrun's remote build execution (RBE) instead of a local Mac, and install it on a remote iOS simulator. Use when the project is a Bazel workspace (MODULE.bazel / WORKSPACE) building rulesapple / rulesswift targets and the user wants to bazel build it or run it on a…

sutchan/Agent-Skills-Hub · 149 tokens

publisher

Publish HTML frontend projects to the PushWebly publishing platform, list published projects, obtain shareable project URLs, change a published app's public/private visibility, and package published HTML projects into Android APKs. Use when Codex needs to publish a local zip project, publish and build an APK, build an…

publisher-skill/publisher · 109 tokens

publisher-skills

Publish HTML frontend projects to the PushWebly publishing platform, list published projects, obtain shareable project URLs, change a published app's public/private visibility, and package published HTML projects into Android APKs. Use when Codex needs to publish a local zip project, publish and build an APK, build an…

publisher-skill/publisher · 111 tokens

insforge-cli

Use this skill whenever someone needs a backend, or a task touches InsForge backend or cloud infrastructure through the InsForge CLI: projects, SQL, migrations, RLS policies, functions, storage, backups, deployments, compute, secrets, config, schedules, logs, diagnostics, advisor scans and suppressions, import/export…

sutchan/Agent-Skills-Hub · 157 tokens

cloudrun-development

CloudBase Run backend development rules (Function mode/Container mode). Use this skill when deploying backend services that require long connections, multi-language support, custom environments, AI agent development, or migrating existing/GitHub apps that need VPC access to MySQL/PostgreSQL/Redis. Also use when…

sutchan/Agent-Skills-Hub · 99 tokens