ds-deploy

ds-deploy is a skill for Claude Code, Codex from sungurerdim/dev-skills. It costs 36 tokens per session (5,200 once invoked), scanned A, original, MIT.

A deployment and infrastructure guide covering containers, deployment, monitoring, and incident response.

In plain words
What is it for?
Use it to audit or create Docker and deployment configuration, set up monitoring and alerts, and plan responses to operational incidents.
Why use it?
It helps catch common production gaps such as missing health checks, SSL, monitoring, or reliable completion evidence.

Skill for Claude CodeCodex

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/sungurerdim/dev-skills/ds-deploy
Any agent
npx skills add sungurerdim/dev-skills --skill ds-deploy
Clone the repo
git clone --depth 1 https://github.com/sungurerdim/dev-skills

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/sungurerdim/dev-skills/ds-deploy.svg)](https://agentmods.dev/skills/sungurerdim/dev-skills/ds-deploy)
Your own site
<a href="https://agentmods.dev/skills/sungurerdim/dev-skills/ds-deploy"><img src="https://agentmods.dev/badge/skills/sungurerdim/dev-skills/ds-deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,200 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 $0.00036 $0.05200
Opus 5 $0.00018 $0.02600
Sonnet 5 $0.00007 $0.01040
Haiku 4.5 $0.00004 $0.00520

Measured yesterday against content hash 1b932ca54614, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ds-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 yesterday.

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.

ds-deploy/SKILL.md · 220 lines

How it starts

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

/ds-deploy

First deploy often means bloated Docker images, no health checks, no SSL, and no monitoring. This skill audits and generates production-ready infrastructure configs.

Deployment & Infrastructure — Containerization, deployment, monitoring, and incident response.

Completion Evidence — applies to every phase: Report done/OK only with the machine-checkable evidence the gates name — the exact command run and its observed output (or file:line diff). Missing evidence → report INCOMPLETE plus what is missing. Self-assessment is never evidence. (This band repeats at file end by design — both copies are normative.)

Triggers

  • User runs /ds-deploy, asks to deploy, containerize, or set up infrastructure, asks about Docker, VPS, SSL, monitoring, or incident response, or asks "how do I deploy this" / "review my Dockerfile"

Triggers — INVOKE / DON'T INVOKE

INVOKE DON'T INVOKE
"deploy this to a VPS / container / k8s" "submit app to App Store / Play Store" (→ ds-launch)
"configure SSL, monitoring, backups, alerts" "audit CI pipeline" (→ ds-devops)
"review my Dockerfile / docker-compose" "fix code quality" (→ ds-review / ds-fix)
"incident response runbook for production" "design backend architecture" (→ ds-backend)

Contract

Dimensions: D3, D4, D7, A3 (ops), D2 (cost), D10 (diagnostics + runbooks) Framework alignment (advisory): Google SRE PRR (D3, D4, D7), AWS/Azure/Google Cloud Well-Architected Cost Optimization (D2).

  • Covers deployment, infrastructure hardening, monitoring, incident response.
  • Generates configuration files and checklists — does NOT execute deployment commands.
  • Minimal liability + maximum performance + minimum dependencies + maximum automation:
    • Generate configs for review — never auto-deploy to prod
    • Optimize Docker images, enable caching, configure health checks
    • Prefer minimal infra (Caddy over Nginx+certbot, SQLite over managed DB where suited)
    • Wire CI/CD integration, automated SSL, automated backups
  • Standalone. Uses blueprint profile or ds/audit/findings.md when available; own analysis when absent.
  • Full accounting enforced: every finding and planned check ends in an explicit disposition (fixed / skipped + reason / only you can do); summary totals balance.
  • Pre-existing / out-of-scope errors detected during work are NOT skipped — fixed inline or escalated with concrete blocker.
  • State-exempt: audit is regenerable; generated configs/fixes land in the working tree — git is the durable record.

Read the full file on GitHub · 220 lines

Files

What ships with it

5 files 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. yesterday Changed · -47 lines 1b932ca54614
  2. 4d ago First seen · 267 lines · 36 tokens per session scan A 43b8a298df0d

Subscribe to this mod's changes

ds-deploy is a skill published in the GitHub repository sungurerdim/dev-skills (1 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 5,200 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-31.

Related

Other skills, from other repositories

ring:hardening-dockerfiles

Hardening Dockerfiles to reach Docker Hub Health Score grade A: enforcing a non-root USER, minimal/distroless multi-stage base images, no fixable critical/high CVEs, no AGPL-3.0 deps, and SBOM+provenance attestations. Use when creating a new Dockerfile, auditing one for security, or preparing images for Docker Hub…

LerianStudio/ring · 106 tokens

ring:creating-helm-charts

Creating Helm charts to Lerian conventions via ring:helm: standardized chart structure, full env-var coverage from .env.example, security defaults (runAsNonRoot, readOnlyRootFilesystem), ClusterIP-only services, and health probes; validates helm lint and template render. Use when creating, modifying, or reviewing a…

LerianStudio/ring · 92 tokens

devops

You are the DevOps Specialist -- the single authority on version control, CI/CD pipelines, platform operations (GitHub, Azure DevOps, GitLab), infrastructure, deployment, backup, and cleanup. If it touches git, pipelines, or production infrastructure, it's yours.

samibs/skillfoundry · 6 tokens

staging-deploy

Build, push, migrate, and deploy to staging environment with health check verification. Use when deploying a completed phase to staging.

srnichols/plan-forge · 30 tokens

dockerfile-optimizer

Audits Dockerfiles for multi-stage build efficiency, layer caching, non-root security, and minimal base image footprint.

codebygarv/Ai-skills · 28 tokens

execution/infra-executor

Internal: Infrastructure Executor. Implements deployment, CI/CD, container, IaC, and environment configuration changes. Write evidence on completion.

dynos-fit/dynos-work · 32 tokens