deploy

deploy is a skill for Claude Code, Codex from tahirraufkeeyu/software-development-agent-stack--sdas. It costs 48 tokens per session (2,895 once invoked), scanned A, original, MIT.

A controlled process for releasing a new service version to staging or production on Kubernetes. It supports rolling, canary and blue-green deployments, which gradually or separately move traffic to the new version.

In plain words
What is it for?
Building and publishing a container, deploying it with environment-specific Helm settings, monitoring pod readiness and traffic, and rolling back when the configured SLO is breached.
Why use it?
It adds tests, health checks, approvals and automatic rollback around releases. Service-level objectives, or SLOs, are limits such as acceptable error rate and response time used to decide whether a rollout is healthy.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is ./scripts/smoke.sh "https://staging.${SERVICE}.example.com".

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/tahirraufkeeyu/software-development-agent-stack--sdas/deploy.svg)](https://agentmods.dev/skills/tahirraufkeeyu/software-development-agent-stack--sdas/deploy)
Your own site
<a href="https://agentmods.dev/skills/tahirraufkeeyu/software-development-agent-stack--sdas/deploy"><img src="https://agentmods.dev/badge/skills/tahirraufkeeyu/software-development-agent-stack--sdas/deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,895 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.00048 $0.02895
Opus 5 $0.00024 $0.01448
Sonnet 5 $0.00010 $0.00579
Haiku 4.5 $0.00005 $0.00290

Measured 6d ago against content hash 4e4fb6854c4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

deploy 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 6d 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.

departments/devops/skills/deploy/SKILL.md · 273 lines

How it starts

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

When to use

  • Promoting a release candidate to staging or production.
  • Cutting over a blue/green stack after a schema migration.
  • Running a canary at 5/25/50/100 percent with automated rollback.
  • Any deploy that crosses an environment boundary guarded by approvals or SLOs.

Do not use for local kubectl apply against a dev cluster or for one-off hotfixes that bypass CI. For those, use kubectl rollout directly and document why.

Inputs

  • service — Kubernetes Deployment/StatefulSet name (e.g. checkout-api).
  • namespace — target namespace (e.g. prod-us-east-1).
  • image — fully qualified image reference (ghcr.io/acme/checkout-api:sha-abc1234).
  • strategycanary | blue-green | rolling.
  • chart_path — path to the Helm chart used for this service.
  • values_file — environment-specific values (e.g. values-prod.yaml).
  • slo — an object: { error_rate_max: 0.01, p95_latency_ms: 400, window_minutes: 5 }.
  • canary_steps — list of percentages, e.g. [5, 25, 50, 100] (canary only).
  • approvers — GitHub environment approvers list for prod.

Outputs

  • Rollout status summary (revision before/after, pods ready, traffic split).
  • Prometheus/Datadog query results that the gate evaluated.
  • Git SHA deployed, image digest, and Helm release revision.
  • If rolled back: the triggering SLO metric, timestamp, and helm rollback output.
  • A Markdown deploy note suitable for posting to #deploys.

Tool dependencies

  • kubectl >= 1.28, context already set to target cluster.
  • helm >= 3.12.
  • docker or buildx for the image build step.
  • cosign if the registry policy requires signed images.
  • jq, yq for parsing outputs.
  • Access to Prometheus (or Datadog/CloudWatch) for SLO queries.
  • GitHub CLI (gh) when the deploy is gated by a protected environment.
  • Optional: Argo Rollouts (kubectl argo rollouts) if the project uses it.

Project scripts you supply

The procedure below shells out to two project-side scripts. They're not shipped by this skill — drop them in your repo at ./scripts/ (or adjust the paths). Section 7 below documents the exact query contract check-slo.sh must satisfy; smoke.sh is a thin wrapper around your service's existing health/smoke endpoint.

Read the full file on GitHub · 273 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. 6d ago First seen · 273 lines · 48 tokens per session scan A 4e4fb6854c4e

Subscribe to this mod's changes

deploy is a skill published in the GitHub repository tahirraufkeeyu/software-development-agent-stack--sdas (18 stars, last pushed 4mo ago), licensed MIT. It adds 48 tokens to every session and 2,895 once invoked, about $0.0002 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

scanning-containers-with-trivy-in-cicd

This skill covers integrating Aqua Security's Trivy scanner into CI/CD pipelines for comprehensive container image vulnerability detection. It addresses scanning Docker images for OS package and application dependency CVEs, detecting misconfigurations in Dockerfiles, scanning filesystem and git repositories, and…

xalgorix/xalgorix · 74 tokens

konflux-build

Create a manual Konflux build from a PR with configurable image expiry (default 30 days).

openshift/hypershift · 23 tokens

performing-container-security-scanning-with-trivy

Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.

xalgorix/xalgorix · 48 tokens

devops

DevOps - Docker, CI/CD, cloud infra, monitoring.

sipyourdrink-ltd/bernstein · 16 tokens

devops-infrastructure

Guides Docker, CI/CD pipelines, deployment strategies, infrastructure as code, and observability setup. Use when writing Dockerfiles, configuring GitHub Actions, planning deployments, setting up monitoring, or when asked about containers, pipelines, Terraform, or production infrastructure.

CloudAI-X/claude-workflow-v2 · 57 tokens

CI/CD Pipeline Advanced

Expert-level CI/CD pipeline skill for test automation. Covers GitHub Actions, Jenkins, GitLab CI, Azure DevOps, parallel execution, matrix strategies, caching, artifact management, and deployment gates.

PramodDutta/qaskills · 45 tokens