devops-platform

devops-platform is a skill for Claude Code from Kin9Zeus/senior-engineer-skills. It costs 148 tokens per session (2,203 once invoked), scanned A, original, MIT.

A guide to running software from code changes through testing and deployment. It covers CI/CD, automated build-and-release pipelines, infrastructure as code, containers, cloud operations, and recovery planning.

In plain words
What is it for?
Use it to design pipelines, Docker setups, Terraform or Kubernetes configurations, deployment and rollback strategies, secrets handling, backups, scaling, disaster recovery, and cloud-cost controls.
Why use it?
It reduces differences between development and production and makes releases repeatable, recoverable, and easier to diagnose when something breaks.

Skill for Claude Code

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

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 HEALTHCHECK --interval=30s --timeout=3s CMD node dist/healthcheck.js.

Part of the senior-engineer-skills plugin — 15 skills, 7 commands, 4 agents shipped together

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Kin9Zeus/senior-engineer-skills
Claude Code
/plugin install senior-engineer-skills

Made for: Claude Code.

Or install senior-engineer-skills, the plugin that ships this one along with the rest of its 15 skills, 7 commands, 4 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/kin9zeus/senior-engineer-skills/devops-platform.svg)](https://agentmods.dev/skills/kin9zeus/senior-engineer-skills/devops-platform)
Your own site
<a href="https://agentmods.dev/skills/kin9zeus/senior-engineer-skills/devops-platform"><img src="https://agentmods.dev/badge/skills/kin9zeus/senior-engineer-skills/devops-platform.svg" alt="Measured on agentmods" height="20"></a>
Per session 148 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,203 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.00148 $0.02203
Opus 5 $0.00074 $0.01102
Sonnet 5 $0.00030 $0.00441
Haiku 4.5 $0.00015 $0.00220

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

Security

Grade A, and why

devops-platform 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.

skills/devops-platform/SKILL.md · 225 lines

How it starts

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

DevOps and Platform Engineering

Two questions decide whether a platform is professional:

How long from commit to production? How long from "this is broken" to it not being broken?

Everything below serves those two numbers. A pipeline that produces neither speed nor reversibility is ceremony.


Reproducibility — the precondition

If the environment cannot be rebuilt from the repository, everything else is built on sand.

  • Runtime version pinned in a file the toolchain reads, and in the manifest.
  • Lockfile committed; CI installs frozen (npm ci, --frozen-lockfile, poetry install --sync, bundle --deployment).
  • Container base images pinned by digest, not by a moving tag.
  • Infrastructure in code, in the repository, applied by the pipeline.
  • No snowflake servers. Anything configured by hand once is a single point of failure with no recovery procedure. The test: could you delete the production environment and rebuild it from the repo?
  • Local development one command away — Docker Compose, devcontainer, or a documented single script.

The pipeline

On every pull request, blocking merge:

install (frozen)  →  lint  →  typecheck  →  unit  →  integration  →  build  →  dependency audit  →  secret scan

On merge to the default branch:

build once, tag by commit SHA  →  deploy to staging  →  smoke tests  →  ready for production

Rules that matter more than the tool:

  • Build the artefact once. Promote the same artefact through environments. Rebuilding per environment means you deployed something you never tested.
  • CI must block merge. Establish this before there is pressure to bypass it; it is never established afterwards.
  • Keep it under ~10 minutes. Beyond that, people stop waiting and start merging around it. Cache dependencies, parallelise, split slow suites.
  • A flaky pipeline is a broken pipeline. A suite people re-run until green provides no information.
  • Pin actions to a commit SHA, not a tag. Tags are mutable.
  • Fork PRs must not access secrets.
  • Branch protection: no direct pushes, review required, checks required.

Read the full file on GitHub · 225 lines

Files

What ships with it

2 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. 6d ago First seen · 225 lines · 148 tokens per session scan A 3ed892664aaa

Subscribe to this mod's changes

devops-platform is a skill published in the GitHub repository Kin9Zeus/senior-engineer-skills (3 stars, last pushed 12d ago), licensed MIT. It adds 148 tokens to every session and 2,203 once invoked, about $0.0007 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

devops-engineer

Creates Dockerfiles, configures CI/CD pipelines, writes Kubernetes manifests, and generates Terraform/Pulumi infrastructure templates. Handles deployment automation, GitOps configuration, incident response runbooks, and internal developer platform tooling. Use when setting up CI/CD pipelines, containerizing…

Jeffallan/claude-skills · 107 tokens

deploy

Elixir/Phoenix deployment patterns — Dockerfile, fly.toml, runtime.exs, mix release, rel/ overlays. Use when configuring Fly.io, Docker, CI/CD, health checks, or production migrations.

oliver-kriska/claude-elixir-phoenix · 46 tokens

devops-specialist

DevOps 与运维专家。精通 CI/CD、容器化、编排、基础设施即代码、监控告警和自动化部署。用于构建高效、可靠的软件交付流水线和运维系统。.

huangwb8/skills · 55 tokens

platform-skills

Use when troubleshooting, implementing, reviewing, or auditing platform infrastructure as a system — where Kubernetes, GitOps, CI/CD, and security concerns intersect. Provides structured diagnosis with blast radius, validation steps, and rollback plan for: Kubernetes, Flux CD, Argo CD, Terraform, GitHub Actions…

nitinjain999/platform-skills · 137 tokens

base-cn-registry-mirror-strategy

国内镜像源与代理分层策略(Docker / Debian / Alpine / Node / Python / Maven / Gradle / Go),用于 Dockerfile 与 CI 的可维护加速。.

seed-forge/harness-ai-kit · 47 tokens

devops

Deployment and infrastructure operations. Use when writing or debugging a Dockerfile, docker build/run, docker compose; running terraform plan/apply/destroy or editing .tf files and modules; using kubectl, debugging pods (CrashLoopBackOff, ImagePullBackOff, OOMKilled), applying manifests, or writing Helm charts…

vanducng/skills · 167 tokens