progressive-delivery

progressive-delivery is a skill for Claude Code from arjunprabhulal/devops-skills. It costs 127 tokens per session (1,284 once invoked), scanned A, original, MIT.

An automated release method that advances or rolls back canary and blue-green deployments based on live performance measurements.

In plain words
What is it for?
Use it with controllers such as Argo Rollouts or Flagger to define deployment metrics and automatically hold, promote, or abort a release.
Why use it?
It replaces timer-based or manually watched promotions with decisions based on signals such as error rates and response latency.

Skill for Claude Code

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

Part of the devops-skills plugin — 56 skills shipped together

Good fit Use it with controllers such as Argo Rollouts or Flagger to define deployment metrics and automatically hold, promote, or abort a release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arjunprabhulal/devops-skills/progressive-delivery
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 arjunprabhulal/devops-skills --skill progressive-delivery
Clone the repo
git clone --depth 1 https://github.com/arjunprabhulal/devops-skills

Made for: Claude Code.

Or install devops-skills, the plugin that ships this one along with the rest of its 56 skills.

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 progressive-delivery

README.md
[![agentmods](https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/progressive-delivery.svg)](https://agentmods.dev/skills/arjunprabhulal/devops-skills/progressive-delivery)
Your own site
<a href="https://agentmods.dev/skills/arjunprabhulal/devops-skills/progressive-delivery"><img src="https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/progressive-delivery.svg" alt="Measured on agentmods" height="20"></a>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,284 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.00127 $0.01284
Opus 5 $0.00063 $0.00642
Sonnet 5 $0.00025 $0.00257
Haiku 4.5 $0.00013 $0.00128

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

Security

Grade A, and why

progressive-delivery 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 8d 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/gitops/progressive-delivery/SKILL.md · 95 lines

How it starts

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

Progressive Delivery

Progressive delivery takes strategies covered in deployment-strategies — canary, blue-green — and makes the promotion decision automatic and metric-driven instead of manual or time-based. A canary that "runs for ten minutes then goes to 100%" is not progressive delivery, it's a timer with extra steps: if the ten minutes happened not to expose the regression, you ship it anyway. The controller (Argo Rollouts, Flagger) exists to query real signals at each step and decide, without a human in the loop, whether to advance, hold, or abort.

A canary step that isn't gated on a query against production metrics is just a delay, not a safety mechanism.

1. Pick metrics that would actually catch a bad release

The default temptation is to gate on whatever's easiest to query — often just HTTP error rate. That catches crashes, not the more common failure: a change that's technically 200-OK but slower, more expensive per request, or silently returning wrong data to a subset of users. Combine at least an error-rate metric with a latency percentile (p95 or p99, not average — averages hide tail regressions), and add a business metric when one exists and is fast enough to compute (checkout success rate, not daily revenue). See slo-definition for choosing thresholds that reflect what users actually notice, and metrics-and-monitoring for where these queries come from.

Done when: the analysis would have failed on the last real incident this service had.

2. Define the AnalysisTemplate as the actual go/no-go contract

The AnalysisTemplate (Argo Rollouts) or MetricTemplate (Flagger) is where "success" gets a precise definition — the query, the threshold, how many consecutive failures trigger a rollback, how many samples are required before a judgment is even made. Treat changes to this file with the same review rigor as the deployment manifest itself, because a threshold set too loose makes the automation theater, and one set too tight makes every deploy flap on noise.

Read the full file on GitHub · 95 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. 8d ago First seen · 95 lines · 127 tokens per session scan A b14d19c6131c

Subscribe to this mod's changes

progressive-delivery is a skill published in the GitHub repository arjunprabhulal/devops-skills (3 stars, last pushed 13d ago), licensed MIT. It adds 127 tokens to every session and 1,284 once invoked, about $0.0006 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

google-cloud-solution-guided-gke-ai-migration

Guides the migration of existing AI workloads (Cloud Run, Gemini API, Gemini Enterprise Agent Platform) to self-hosted GKE inference using gcloud and kubectl. Use when the user has an existing AI inference workload (on Cloud Run, the Gemini API, Gemini Enterprise Agent Platform, or a custom VM) and wants to move it to…

google/skills · 157 tokens

agent-platform-tuning

Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment to endpoints (use agent-platform-deploy), or managing serving endpoints (use agent-platform-endpoint-management).

google/skills · 64 tokens

agent-platform-deploy

Deploy open models or custom weights from Model Garden to Agent Platform endpoints, check the status of an in-progress deployment operation, or clean up resources by undeploying models and deleting endpoints. Use when asked to actively deploy a model, list the Model Garden CATALOG of available models, check if a…

google/skills · 193 tokens

cloud-logging-cross-project-configuration

Configure and troubleshoot Google Cloud cross-project centralized logging and read-time aggregation. Use when: - Setting up log routing from multiple projects/folders/organizations to a central log bucket. - Creating cross-project log sinks and configuring central log buckets. - Troubleshooting cross-project routing.…

google/skills · 70 tokens

gke-alert-configuration

Configures alerting policies in Terraform for Google Kubernetes Engine (GKE) clusters, workloads, and services using PromQL and Google Cloud Managed Service for Prometheus. Use when writing, analyzing, validating, or deploying Terraform alerting policies to monitor GKE service latency, traffic, error rates using…

google/skills · 120 tokens

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens