# Progressive Delivery

> Release changes safely using progressive delivery techniques (canaries, progressive rollouts, feature flags, A/B testing). Use when deploying risky changes or when you want fast feedback with limited blast radius.

- Skill: `itsual/progressive-delivery` (Agent Skill)
- Install (CLI): `npx skillmds@latest add itsual/progressive-delivery`
- Raw SKILL.md: https://api.skillmd.com/api/skills/itsual/progressive-delivery/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: itsual (https://skillmd.com/u/itsual)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/itsual/progressive-delivery

---


# Progressive Delivery

## Overview

Progressive delivery reduces the risk of releases by gradually exposing changes and observing their impact before full rollout.

## When to Use

- High-risk or high-impact changes
- Continuous delivery environments
- Experiments and controlled rollouts

## Techniques

- Feature flags / toggles
- Canary releases
- Percentage / ring-based rollouts
- A/B testing and experimentation platforms
- Automated analysis of metrics during rollout (and automatic rollback when possible)

## Principles

- Decouple deployment from release
- Make rollback (or disable) fast and low-drama
- Observe the right metrics during progressive exposure
- Clean up flags and temporary rollout configuration afterward

## Verification

- Blast radius of a bad change is limited by default
- Rollout health is observable
- Rollback/disable path is known and tested

