engineering-devops-automator

engineering-devops-automator is a skill for Claude Code, Codex from PeterHdd/agent-skills. It costs 80 tokens per session (2,831 once invoked), scanned A, original, MIT.

A guide for automating infrastructure and software delivery, including Terraform, Docker, deployment systems, monitoring, logs, secrets, and disaster recovery. Infrastructure is the systems that run an application; CI/CD is the automated process for testing and releasing code.

In plain words
What is it for?
Provisioning infrastructure, building CI/CD pipelines, preparing containerised deployments, setting up monitoring and alerts, managing secrets, aggregating logs, and planning blue-green, canary, or disaster-recovery procedures.
Why use it?
It helps teams inspect an existing delivery setup, test infrastructure changes, plan safer releases, and preserve a way to roll back when something goes wrong.

Skill for Claude CodeCodex

Part of the agent-skills plugin — 9 skills shipped together

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/peterhdd/agent-skills/engineering-devops-automator
Any agent
npx skills add PeterHdd/agent-skills --skill engineering-devops-automator
Clone the repo
git clone --depth 1 https://github.com/PeterHdd/agent-skills

Made for: Claude Code, Codex.

Or install agent-skills, the plugin that ships this one along with the rest of its 9 skills.

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 engineering-devops-automator

README.md
[![agentmods](https://agentmods.dev/badge/skills/peterhdd/agent-skills/engineering-devops-automator.svg)](https://agentmods.dev/skills/peterhdd/agent-skills/engineering-devops-automator)
Your own site
<a href="https://agentmods.dev/skills/peterhdd/agent-skills/engineering-devops-automator"><img src="https://agentmods.dev/badge/skills/peterhdd/agent-skills/engineering-devops-automator.svg" alt="Measured on agentmods" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,831 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.00080 $0.02831
Opus 5 $0.00040 $0.01416
Sonnet 5 $0.00016 $0.00566
Haiku 4.5 $0.00008 $0.00283

Measured 4d ago against content hash 2cd9cb25bcff, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

engineering-devops-automator 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 4d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/analyze_deployment_risk.py, scripts/check_services.sh, scripts/validate_dockerfile.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/engineering-devops-automator/SKILL.md · 154 lines

How it starts

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

DevOps & Infrastructure Guide

Overview

This guide covers infrastructure automation, CI/CD pipeline development, deployment strategies, monitoring, and cloud operations. Use it when provisioning infrastructure, building pipelines, setting up observability, managing secrets, or planning disaster recovery.

First 10 Minutes

  • Inventory the delivery surface before proposing changes: CI config, infrastructure directories, runtime manifests, Dockerfiles, and observability config.
  • Run the existing validation commands before editing anything. If the repo has no validation path for infra changes, add one as part of the task.
  • Use scripts/analyze_deployment_risk.py on the repo root to summarize CI, Docker, Terraform, and Kubernetes signals before proposing rollout changes.
  • Identify the rollback path for the current deploy system. If you cannot explain how to revert the change in under 5 minutes, the rollout plan is incomplete.

Refuse or Escalate

  • Refuse "just push it" requests when there is no rollback path, no health signal, or no way to test the change outside production.
  • Escalate before changing production state if the plan includes database replacement, Terraform destroys, state moves, certificate rotation, or security group broadening without a compensating control.
  • Escalate when the repo mixes multiple deployment systems and ownership boundaries are unclear. Untangling that is a separate task.
  • Do not recommend Kubernetes by default. If the workload is a single service with simple networking and predictable scale, stay with the simpler runtime.

Infrastructure Decision Rules

Provisioning

  • Use Terraform with remote state (S3 + DynamoDB lock) so every resource is version-controlled and safe from concurrent modifications.
  • Use Terraform workspaces or directory-per-environment layout with shared modules to catch drift between staging and production.
  • Use the same Terraform modules as production with variable overrides -- never create infrastructure via cloud console.

Read the full file on GitHub · 154 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. 4d ago First seen · 154 lines · 80 tokens per session scan A 2cd9cb25bcff

Subscribe to this mod's changes

engineering-devops-automator is a skill published in the GitHub repository PeterHdd/agent-skills (11 stars, last pushed 5mo ago), licensed MIT. It adds 80 tokens to every session and 2,831 once invoked, about $0.0004 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

openshell-cli

Guide agents through using the OpenShell CLI (openshell) for sandbox management, gateway registration, provider configuration and refresh, policy iteration, settings, service exposure, BYOC workflows, and inference routing. Covers basic through advanced multi-step workflows. Trigger keywords - openshell, sandbox…

NVIDIA/OpenShell · 127 tokens

langbot-deploy

Deploy and configure a LangBot instance — Docker / Docker Compose, Kubernetes, the config.yaml model, the Box sandbox runtime, the plugin runtime, and the global API key. Use when installing, deploying, upgrading, or configuring LangBot in production or self-hosted environments. Triggers on "deploy langbot", "langbot…

langbot-app/LangBot · 104 tokens

compute-env-setup

Set up a reproducible Feynman compute environment for research jobs. Use when a task needs Python/R packages, GPU libraries, containers, Modal, SSH, caches, or managed model runtime setup.

companion-inc/feynman · 45 tokens

securing-kubernetes-on-cloud

This skill covers hardening managed Kubernetes clusters on EKS, AKS, and GKE by implementing Pod Security Standards, network policies, workload identity, RBAC scoping, image admission controls, and runtime security monitoring. It addresses cloud-specific security features including IRSA for EKS, Workload Identity for…

xalgorix/xalgorix · 80 tokens

securing-azure-with-microsoft-defender

This skill instructs security practitioners on deploying Microsoft Defender for Cloud as a cloud-native application protection platform for Azure, multi-cloud, and hybrid environments. It covers enabling Defender plans for servers, containers, storage, and databases, configuring security recommendations, managing…

xalgorix/xalgorix · 75 tokens

dokploy-deploy

This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".

fcakyon/claude-codex-settings · 63 tokens