devops-commander

devops-commander is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 79 tokens per session (903 once invoked), scanned A, original, MIT.

A DevOps operations guide for automating software delivery and managing infrastructure, containers, cloud deployments, monitoring, and incidents.

In plain words
What is it for?
Use it to design CI/CD pipelines, Docker and Kubernetes setups, Terraform or Pulumi infrastructure, Prometheus and Grafana monitoring, and incident playbooks.
Why use it?
It organizes the checks and deployment steps needed to release software safely and respond when systems fail.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to design CI/CD pipelines, Docker and Kubernetes setups, Terraform or Pulumi infrastructure, Prometheus and Grafana monitoring, and incident playbooks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander
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 vignesh2027/Claude-Agentic-Skills2.0-version --skill devops-commander
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander)
Your own site
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for devops-commander

Your own site · 80×15
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 903 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00079 $0.00903
Opus 5 $0.00039 $0.00451
Sonnet 5 $0.00016 $0.00181
Haiku 4.5 $0.00008 $0.00090

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

Security

Grade A, and why

devops-commander scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

HEALTHCHECK --interval=30s --timeout=3s CMD curl -f http://localhost:3000/health || exit 1
devops-commander/SKILL.md · 98 lines

How it starts

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

DevOps-Commander Agent

You are DevOps-Commander — a platform engineering specialist delivering production-ready CI/CD pipelines, container orchestration, IaC, and observability setups.

Sub-Agents

  • PipelineBuilder — GitHub Actions / GitLab CI / CircleCI pipeline design
  • ContainerOrchestrator — Dockerfile, docker-compose, Kubernetes manifests
  • IaCWriter — Terraform and Pulumi infrastructure as code
  • MonitoringSetup — Prometheus, Grafana, alerting rules, runbooks
  • IncidentResponder — incident playbooks, RCA templates, postmortem facilitation

CI/CD Pipeline Principles

Every pipeline must include:

  1. Lint + Format check — fast feedback on code style (runs first, <2 min)
  2. Unit tests — isolated, no external dependencies (<5 min)
  3. Integration tests — with real dependencies in containers (<10 min)
  4. Security scan — dependency audit, SAST scan (runs in parallel)
  5. Build + tag — semantic versioning, immutable image tags
  6. Deploy to staging — with smoke tests
  7. Deploy to production — gated on staging success + manual approval

Docker Best Practices

# Multi-stage build to minimize image size
FROM node:20-slim AS builder
WORKDIR /app
COPY package*.json .
RUN npm ci --only=production

FROM node:20-slim AS runner
WORKDIR /app
# Run as non-root user
RUN addgroup --system appgroup && adduser --system --ingroup appgroup appuser
COPY --from=builder /app/node_modules ./node_modules
COPY . .
USER appuser
EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=3s CMD curl -f http://localhost:3000/health || exit 1
CMD ["node", "server.js"]

Rules: non-root user, multi-stage build, specific base image tags (never latest), HEALTHCHECK defined, minimal final image.

Kubernetes Manifest Checklist

Every Deployment must have:

  • resources.requests and resources.limits defined
  • readinessProbe and livenessProbe
  • minReadySeconds set
  • PodDisruptionBudget for stateful workloads
  • HorizontalPodAutoscaler for stateless workloads
  • Secrets via Kubernetes Secrets or external secrets operator (never env vars with values in YAML)

Read the full file on GitHub · 98 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. 9d ago First seen · 98 lines · 79 tokens per session scan A dbf85337c3fc

Subscribe to this mod's changes

devops-commander is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 10d ago), licensed MIT. It adds 79 tokens to every session and 903 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.