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.
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill devops-commandergit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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.
[](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/devops-commander)<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.
<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>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.
| Model | Per session | Once 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 |
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 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:
- Lint + Format check — fast feedback on code style (runs first, <2 min)
- Unit tests — isolated, no external dependencies (<5 min)
- Integration tests — with real dependencies in containers (<10 min)
- Security scan — dependency audit, SAST scan (runs in parallel)
- Build + tag — semantic versioning, immutable image tags
- Deploy to staging — with smoke tests
- 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.requestsandresources.limitsdefinedreadinessProbeandlivenessProbeminReadySecondsset- PodDisruptionBudget for stateful workloads
- HorizontalPodAutoscaler for stateless workloads
- Secrets via Kubernetes Secrets or external secrets operator (never env vars with values in YAML)
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.
- 9d ago First seen · 98 lines · 79 tokens per session scan A dbf85337c3fc
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.
Other skills, from other repositories
ci-cd-builder
Create CI/CD pipelines — GitHub Actions, GitLab CI, Jenkins, and CircleCI with test, build, and deploy stages.
compose-creator
Create docker-compose configurations — service definitions, networks, volumes, health checks, and environment management.
docker-composer
Write Dockerfiles and docker-compose files — multi-stage builds, health checks, volumes, networks, and production configurations.
github-actions
Build GitHub Actions workflows — CI, CD, automated releases, dependency updates, and custom composite actions.
gitlab-ci
Create GitLab CI/CD pipelines — stages, jobs, caching, artifacts, environments, and Auto DevOps customization.
helm-chart-builder
Create Helm charts — templates, values, helpers, hooks, tests, and OCI chart publishing.