infra-standards

infra-standards is a skill for Claude Code from PrabhdeepSingh/claude-plugins. It costs 106 tokens per session (2,804 once invoked), scanned A, original, MIT.

Rules for managing infrastructure, containers, deployment configuration, secrets, and CI/CD pipelines. Infrastructure is the code and configuration that runs and deploys an application; CI/CD automates checking and releasing it.

In plain words
What is it for?
Use it when editing Terraform or Bicep files, Dockerfiles, Compose files, CI workflows, deployment settings, or environment and secret configuration.
Why use it?
It reduces risks such as unreproducible environments, accidentally exposed secrets, destructive infrastructure changes, and pipelines that pass only because checks were weakened.

Skill for Claude Code

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

Part of the sonu plugin — 26 skills, 3 commands shipped together

Good fit Use it when editing Terraform or Bicep files, Dockerfiles, Compose files, CI workflows, deployment settings, or environment and secret configuration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/prabhdeepsingh/claude-plugins/infra-standards
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.

Any agent
npx skills add PrabhdeepSingh/claude-plugins --skill infra-standards
Clone the repo
git clone --depth 1 https://github.com/PrabhdeepSingh/claude-plugins

Made for: Claude Code.

Or install sonu, the plugin that ships this one along with the rest of its 26 skills, 3 commands.

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 infra-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/prabhdeepsingh/claude-plugins/infra-standards.svg)](https://agentmods.dev/skills/prabhdeepsingh/claude-plugins/infra-standards)
Your own site
<a href="https://agentmods.dev/skills/prabhdeepsingh/claude-plugins/infra-standards"><img src="https://agentmods.dev/badge/skills/prabhdeepsingh/claude-plugins/infra-standards.svg" alt="Measured on agentmods" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,804 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00106 $0.02804
Opus 5 $0.00053 $0.01402
Sonnet 5 $0.00021 $0.00561
Haiku 4.5 $0.00011 $0.00280

Measured 7d ago against content hash a220b44fb6b5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

infra-standards 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 7d 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.

sonu/skills/infra-standards/SKILL.md · 135 lines

How it starts

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

Infra standards — the outage-shaped mistakes are all preventable at review time

Infrastructure changes fail differently from code changes: there's no unit test that catches a deleted database, and the blast radius of one line can be the whole environment. These rules exist because every one of them maps to a class of incident — drift nobody can reproduce, a plan nobody read, a secret in an image layer, a pipeline greened by disabling its checks. The theme throughout: infrastructure is code — reviewed, planned, least-privileged, and boring.

How to apply this

When touching any infra surface, hold three questions: what is the blast radius of this change (what can it delete or replace), where do the secrets live (never in the artifact), and would this survive being run twice (idempotency). Run the self-check before shipping.


1. Everything is code — no clickops

Any change made by hand in a cloud console/portal is drift: invisible to review, unreproducible, and silently overwritten (or silently load-bearing) the next time the IaC applies. The rules:

  • Infrastructure changes go through the IaC files in the repo, PR-reviewed like any code.
  • A genuine emergency hand-fix is allowed — and codifying it is part of the same incident, not a follow-up ticket that dies in the backlog. Until it's in code, the fix doesn't exist.
  • If IaC and reality disagree, reality is the bug: reconcile toward the code (import the resource or fix the code), never by editing the console to match.

2. Read the plan before you apply — every time

terraform plan / az deployment ... what-if / CloudFormation change sets exist because IaC's most dangerous property is that a one-line diff can mean "destroy and recreate." Changing an immutable attribute (a resource name, an AZ, a SKU) doesn't edit the resource — it replaces it, and for a database that's data loss wearing a green checkmark.

  • Never apply a plan you didn't read. In the plan output, destroy and replace lines are the whole review — explain each one or stop.
  • In CI, the plan is posted for human review before apply on protected environments; auto-apply is for dev sandboxes only.
  • State is sacred (Terraform): remote backend with locking, never hand-edited, never committed to the repo. Use terraform state commands (or import/moved blocks) for surgery — a corrupted state file makes the plan lie to you.

Read the full file on GitHub · 135 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. 7d ago First seen · 135 lines · 106 tokens per session scan A a220b44fb6b5

Subscribe to this mod's changes

infra-standards is a skill published in the GitHub repository PrabhdeepSingh/claude-plugins (3 stars, last pushed yesterday), licensed MIT. It adds 106 tokens to every session and 2,804 once invoked, about $0.0005 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

operating-infra

Author, inspect, troubleshoot, and review infrastructure across IaC, Kubernetes, cloud resources, containers, CI/CD, and Linux hosts. Use when changing Terraform/OpenTofu, Kubernetes, Helm, Kustomize, Dockerfiles, GitHub Actions workflow/job/permissions semantics, AWS, GCP, Cloud Run, BigQuery, IAM, logs, instances…

alexei-led/cc-thingz · 119 tokens

openshift-app

Package applications for OpenShift deployment: container images (UBI, arbitrary UID, multi-stage builds), packaging formats (Helm, Kustomize, Operators, OLM v1), CI/CD (Tekton, ArgoCD, Shipwright, Conforma), security (SCC, PSA, supply chain, image signing, secrets), operations (Routes, probes, scaling, monitoring…

air-gapped/skills · 143 tokens

ccc-devops

For scheduled deployments and automated infra tasks, see: https://code.claude.com/docs/en/scheduled-tasks — ccc-devops skills (especially cicd-pipeline-generator and zero-downtime-deploy) can be wrapped as scheduled routines for nightly deployments, weekly security scans, or periodic drift detection.

KevinZai/commander · 38 tokens

ci-cd-pipeline

Use near the end of a project to generate CI and make the app deploy-ready. Produces a polyglot GitHub Actions workflow (lint, typecheck, test, build) and multi-stage Dockerfiles. The finish line is CI-green and container-ready, not an actual deploy.

martian56/claude-engineer · 64 tokens

devops-patterns

DevOps patterns for infrastructure, CI/CD, and deployment automation. Use when configuring Docker containers, CI/CD pipelines, cloud deployments, Kubernetes, and monitoring. Covers GitHub Actions, Docker, Vercel, Railway, AWS, Terraform, and observability.

shahtuyakov/claude-setup · 57 tokens

infrastructure-planning

Plan and document the required software, infrastructure, and logistics for a Paperclip company — domains, GitHub, Docker Hub, Kubernetes, Slack, Google Workspace, Stripe, shipping providers, and CI/CD pipelines. Use when setting up infrastructure for a new company or auditing what an existing company needs.

lukaskellerstein/claude-my-marketplace · 64 tokens