code-simplification
Use after implementing features, before claiming a phase is complete, when reviewing AI-generated code, or when code feels overly complex. Also use when you…
Use when working with Terraform (.tf, .tfvars), Ansible (playbooks, roles, inventory), Docker (Dockerfile, docker-compose.yml), Kubernetes (manifests, Helm charts), CloudFormation, or any infrastructure-as-code files. Also use when running terraform plan/apply, building Docker
$ npx -y skills add lgbarn/shipyard --skill infrastructure-validation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/infrastructure-validationContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when working with Terraform (.tf, .tfvars), Ansible (playbooks, roles, inventory), Docker (Dockerfile, docker-compose.yml), Kubernetes (manifests, Helm charts), CloudFormation, or any infrastructure-as-code files. Also use when running terraform plan/apply, building Docker
name: infrastructure-validation description: Use when working with Terraform (.tf, .tfvars), Ansible (playbooks, roles, inventory), Docker (Dockerfile, docker-compose.yml), Kubernetes (manifests, Helm charts), CloudFormation, or any infrastructure-as-code files. Also use when running terraform plan/apply, building Docker images, writing Helm templates, or when IaC changes touch security groups, IAM policies, or secrets. Provides validation workflows, tool chains, and common mistake prevention.
<!-- TOKEN BUDGET: 140 lines / ~420 tokens -->
<activation>
</activation>
IaC mistakes don't cause test failures -- they cause outages, breaches, and cost overruns. Validate before every change.
**Core principle:** Never apply without plan review. Like TDD requires tests before code, IaC requires validation before apply.
<instructions>
Run in order. Each step must pass before proceeding.
terraform fmt -check # 1. Format (auto-fix with fmt if needed) terraform validate # 2. Syntax validation terraform plan -out=tfplan # 3. Review every change -- NEVER skip tflint --recursive # 4. Lint (if installed) tfsec . OR checkov -d . # 5. Security scan (if installed)
**Drift detection:** `terraform plan -detailed-exitcode` -- exit code 2 means drift. Document what drifted and why before overwriting.
yamllint . # 1. YAML syntax ansible-lint # 2. Best practices ansible-playbook --syntax-check *.yml # 3. Playbook syntax ansible-playbook --check *.yml # 4. Dry run (where supported) molecule test # 5. Role tests (if configured)
hadolint Dockerfile # 1. Lint (if installed) docker build -t test-build . # 2. Build trivy image test-build # 3. Security scan (if installed) docker compose config # 4. Validate compose (if applicable)
kubectl --dry-run=client -f manifest.yml # 1. Client-side validation kubectl --dry-run=server -f manifest.yml # 2. Server-side validation (if cluster access) kubeval --strict manifest.yml # 3. Schema validation (if installed) kubeconform -strict manifest.yml # 4. Schema validation alternative kube-linter lint . # 5. Best practices (if installed) helm template . | kubeval --strict # 6. Helm chart validation (if applicable)
</instructions>
| Mistake | Fix | |---------|-----| | Local state file | Use remote backend (S3+DynamoDB, GCS) | | No state locking | Enable lock table | | Hardcoded secrets | Use variables + secret manager | | `*` in security groups | Restrict to specific CIDRs | | Unpinned provider version | Pin in `required_providers` | | Missing tags | Require via policy or module defaults |
| Mistake | Fix | |---------|-----| | Plaintext secrets | `ansible-vault encrypt` | | `shell` instead of modules | Use native modules (apt, copy, etc.) | | Everything as root | `become: false` by default, escalate only when needed |
| Mistake | Fix | |---------|-----| | `FROM ubuntu:latest` | Pin to digest: `FROM ubuntu:22.04@sha256:...` | | Running as root | Add `USER nonroot` | | `COPY . .` | Use `.dockerignore`, copy specific files | | Secrets in ENV/ARG | Use build secrets or runtime injection | | No health check | Add `HEALTHCHECK` instruction | | Single-stage build | Use multi-stage builds |
| Mistake | Fix | |---------|-----| | No resource limits | Set `resources.requests` and `resources.limits` | | Running as root | `securityContext.runAsNonRoot: true` | | `latest` image tag | Pin exact version or digest | | No liveness/readiness probes | Add probes matching app health endpoints | | Default namespace for workloads | Use dedicated namespaces with RBAC | | No network policies | Restrict pod-to-pod traffic with NetworkPolicy |
<rules>
</rules>
<examples>
**IaC-Critical: Overly permissive security group in modules/network/main.tf**
Resource: aws_security_group_rule.allow_all (line 34)
Problem: Ingress rule allows 0.0.0.0/0 on port 22 (SSH).
This exposes SSH to the entire internet.
Fix: Restrict to bastion host CIDR or VPN range:
cidr_blocks = [var.vpn_cidr]
Validation: `tfsec .` flagged this as HIGH severity (AWS018).**Security Issue: Network configuration may be too open.** Review the security groups for potential issues.
</examples>
**Referenced by:** `shipyard:builder` (detects IaC files, follows appropriate workflow), `shipyard:verifier` (IaC validation mode), `shipyard:auditor` (IaC security checks)
**Pairs with:** `shipyard:security-audit` (security lens for IaC), `shipyard:shipyard-verification` (IaC claims need validation evidence)
A Claude Code plugin for structured project execution. Plan work in phases, build with parallel agents and TDD, review with security audits and quality gates, and ship with confidence.
Repo: lgbarn/shipyard
Use after implementing features, before claiming a phase is complete, when reviewing AI-generated code, or when code feels overly complex. Also use when you…
Use when shipping features with public interfaces that lack docs, generating documentation, updating README files, writing API docs, creating architecture…
Use when starting feature work that needs a branch, creating worktrees for isolation, making atomic commits during development, or completing a development…
Import a handwritten spec document into Shipyard, replacing brainstorming. Use when a freeform spec, requirements, or design document exists.
Import a spec-kit feature spec into Shipyard, replacing brainstorming. Use when a spec-kit feature directory exists with spec.md.
Use when a phase or milestone is complete and you need to extract reusable knowledge, before shipping, or when reflecting on completed work. Also use when the…