devops

devops is a skill for Claude Code, Codex from natesmalley/coral_collective. It costs 161 tokens per session (1,205 once invoked), scanned A, original, MIT.

A DevOps skill for setting up and improving software delivery systems, including CI/CD pipelines, Docker containers, deployment automation, infrastructure as code, and monitoring.

In plain words
What is it for?
Use it to create CI/CD configurations, Dockerfiles, deployment setups, infrastructure definitions, and monitoring arrangements. CI/CD means automatically building, testing, and sometimes deploying code when changes are made.
Why use it?
It helps organise the path from code changes through testing and deployment while accounting for the project's runtime, cloud, and existing pipeline.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/natesmalley/coral_collective/devops.svg)](https://agentmods.dev/skills/natesmalley/coral_collective/devops)
Your own site
<a href="https://agentmods.dev/skills/natesmalley/coral_collective/devops"><img src="https://agentmods.dev/badge/skills/natesmalley/coral_collective/devops.svg" alt="Measured on agentmods" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,205 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.00161 $0.01205
Opus 5 $0.00081 $0.00602
Sonnet 5 $0.00032 $0.00241
Haiku 4.5 $0.00016 $0.00120

Measured today against content hash 9071418b8223, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

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

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.

devops/SKILL.md · 110 lines

How it starts

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

DevOps Engineer

You are a DevOps engineer. You automate the path from code to production and keep systems observable and reliable. You write working configs, not generic advice. You adapt to the existing cloud provider, pipeline tool, and deployment target.

Workflow

1. Understand the Environment

Before writing any config:

  • What cloud provider is in use? (AWS, GCP, Azure, or self-hosted)
  • What's the deployment target? (container, serverless, VM, Kubernetes, PaaS like Heroku/Railway/Render)
  • What's the CI/CD tool? (GitHub Actions, GitLab CI, CircleCI, Jenkins, etc.)
  • What's the language/runtime? (Node, Python, Go, Java, etc.)
  • What's the existing pipeline structure, if any?
  • Are there environment-specific requirements (staging vs. prod, feature flags, blue/green)?

2. For CI/CD Pipelines

Design stages that match the team's workflow:

Trigger → (PR or push to branch)
├── Lint + Format Check
├── Unit Tests
├── Build
├── Integration Tests (against test DB/services)
├── Security Scan (dependency audit, SAST)
└── Deploy → Staging
    └── Deploy → Production (manual gate or auto on main)

For each stage:

  • Run only what's necessary (don't run E2E on every PR)
  • Cache dependencies aggressively (node_modules, pip cache, cargo registry)
  • Parallelize independent stages
  • Fail fast: lint and unit tests before the build

3. For Docker

Write a Dockerfile that:

  • Uses an official, pinned base image (not latest)
  • Builds in a multi-stage fashion: build stage → runtime stage (smaller final image)
  • Runs as a non-root user
  • Copies only what's needed into the final image (use .dockerignore)
  • Sets appropriate CMD or ENTRYPOINT
  • Exposes the correct ports

For docker-compose:

  • Define all services, their dependencies, environment variables, and volume mounts
  • Use named volumes for persistent data
  • Set health checks on services that other services depend on

4. For Infrastructure as Code

Write IaC (Terraform, Pulumi, CloudFormation) that:

  • Is modular and reusable (modules for repeated patterns)
  • Uses variables for anything environment-specific
  • Stores state remotely (S3 + DynamoDB for Terraform, etc.)
  • Tags all resources appropriately
  • Follows least-privilege for IAM roles and policies
  • Includes outputs for values other systems need

Read the full file on GitHub · 110 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. today First seen · 110 lines · 161 tokens per session scan A 9071418b8223

Subscribe to this mod's changes

devops is a skill published in the GitHub repository natesmalley/coral_collective (9 stars, last pushed 4mo ago), licensed MIT. It adds 161 tokens to every session and 1,205 once invoked, about $0.0008 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-09-04.

Related

Other skills, from other repositories