continuous-delivery

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

A guide to continuous delivery, where each merged code change stays ready to release and moves through automated checks and environments.

In plain words
What is it for?
Use it to design deploy-on-merge pipelines, environment approval gates, and practices that keep the main branch releasable.
Why use it?
It removes the long, risky gap between merging code and deploying it.

Skill for Claude Code

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

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

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/arjunprabhulal/devops-skills/continuous-delivery
Any agent
npx skills add arjunprabhulal/devops-skills --skill continuous-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 continuous-delivery

README.md
[![agentmods](https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/continuous-delivery.svg)](https://agentmods.dev/skills/arjunprabhulal/devops-skills/continuous-delivery)
Your own site
<a href="https://agentmods.dev/skills/arjunprabhulal/devops-skills/continuous-delivery"><img src="https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/continuous-delivery.svg" alt="Measured on agentmods" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,276 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.1 $0.00104 $0.01276
Opus 5 $0.00052 $0.00638
Sonnet 5 $0.00021 $0.00255
Haiku 4.5 $0.00010 $0.00128

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

Security

Grade A, and why

continuous-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 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.

skills/ci-cd/continuous-delivery/SKILL.md · 105 lines

How it starts

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

Continuous Delivery

Continuous delivery means every merged change is, by default, in a shippable state — a human decision (or, in continuous deployment, no decision at all) is the only thing standing between a commit and production. The discipline this demands is upstream of the deploy pipeline itself: if main isn't always releasable, "delivery" is a lie and someone will eventually hit "deploy" on a broken build.

Most teams' real bottleneck isn't the deploy mechanics, it's the courage to trust that main is always good enough to ship.

Every commit on the default branch should be deployable at any moment — if it isn't, that's a defect in the pipeline, not a reason to slow down releases.

1. Make "always releasable" a property of main, not a hope

This means trunk-based development or short-lived branches, feature flags for incomplete work instead of long-lived feature branches (see feature-flags), and a CI signal from ci-pipelines that's trusted enough that green means go. If merging to main regularly breaks things, the fix is smaller PRs and better CI coverage, not a slower delivery cadence — slowing down delivery treats the symptom and lets the branch rot further between merges.

  • Small, frequent merges beat big, infrequent ones — smaller diffs are easier to verify and easier to revert.
  • Incomplete features ship dark behind a flag rather than living on a branch for weeks.
  • A red main is a stop-the-line event, fixed or reverted before other work continues.

Done when: any commit on main can be deployed to production without someone first checking "is this actually safe."

2. Automate promotion through environments, gate deliberately

The path from build to production usually passes through named environments (dev, staging, prod) or through automated checks that substitute for them. Each gate should exist because it catches something CI structurally cannot — real infrastructure, real data volumes, a human sign-off for regulatory reasons — not as ceremony inherited from a pre-automation era. An untested manual approval step that always gets rubber-stamped is worse than no gate: it adds latency and gives false confidence that a human is actually checking.

Read the full file on GitHub · 105 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 · 105 lines · 104 tokens per session scan A 9e8cbee0ead7

Subscribe to this mod's changes

continuous-delivery is a skill published in the GitHub repository arjunprabhulal/devops-skills (3 stars, last pushed 11d ago), licensed MIT. It adds 104 tokens to every session and 1,276 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-08-31.

Related

Other skills, from other repositories

google-cloud-slo-alert-configuration

Configures PromQL-based Service Level Objective (SLO) alerting policies for Google Cloud resources registered in App Hub or individually specified. Generates Terraform output. Use when the user asks to configure an SLO or Service Level Objective. Don't use for standard alerting policies.

google/skills · 62 tokens

cloud-build-basics

Teaches the fundamentals of Google Cloud Build (GCB). Covers core concepts, API enablement, console navigation to the Build History page, and the end-to-end workflow for creating and manually running a basic build trigger. Do not use for managing private pools or complex pipeline architectures.

google/skills · 61 tokens

ci-cd-and-automation

Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.

addyosmani/agent-skills · 45 tokens

google-mobile-ads-android-migrate-to-next-gen

Migrates Android applications from the old, legacy Google Mobile Ads (GMA) SDK (com.google.android.gms:play-services-ads) to the new GMA Next-Gen SDK (com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk). Provides comprehensive mapping tables for imports, classes, and method signatures to help determine…

google/skills · 105 tokens

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