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 agentmods add skills/natesmalley/coral_collective/devopsnpx skills add natesmalley/coral_collective --skill devopsgit clone --depth 1 https://github.com/natesmalley/coral_collectiveWrote 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/natesmalley/coral_collective/devops)<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>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.00161 | $0.01205 |
| Opus 5 | $0.00081 | $0.00602 |
| Sonnet 5 | $0.00032 | $0.00241 |
| Haiku 4.5 | $0.00016 | $0.00120 |
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.
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
CMDorENTRYPOINT - 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
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.
- today First seen · 110 lines · 161 tokens per session scan A 9071418b8223
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.
Other skills, from other repositories
deployment-patterns
Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.
scanning-containers-with-trivy-in-cicd
This skill covers integrating Aqua Security's Trivy scanner into CI/CD pipelines for comprehensive container image vulnerability detection. It addresses scanning Docker images for OS package and application dependency CVEs, detecting misconfigurations in Dockerfiles, scanning filesystem and git repositories, and…
konflux-build
Create a manual Konflux build from a PR with configurable image expiry (default 30 days).
performing-container-security-scanning-with-trivy
Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.
devops
DevOps - Docker, CI/CD, cloud infra, monitoring.
devops-deployment
Use when setting up CI/CD pipelines, containerizing applications, deploying to Kubernetes, or writing infrastructure as code. DevOps & Deployment covers GitHub Actions, Docker, Helm, and Terraform patterns.