dot-claude/skills/infra-deploy/SKILL.md
Infrastructure as Code workflows with Terraform, Ansible, Docker, and Kubernetes. Use when provisioning, configuring, deploying, or managing infrastructure.
npx skillsauth add sutanunandigrami/claude-titan-setup infra-deployInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
terraform fmt -recursive — format all .tf filestflint — lint for errors and best practicesterraform validate — syntax validationterraform plan -out=plan.tfplan — preview changes (ALWAYS do this first)infracost breakdown --path=plan.tfplan — estimate cost impactterraform apply plan.tfplanNEVER run terraform apply -auto-approve or terraform destroy without explicit operator approval.
ansible-lint — lint playbooksansible-playbook --check -i inventory site.yml — dry runansible-playbook -i inventory site.yml — actual runhadolint Dockerfile — lint before buildingdocker build -t <name>:<tag> . — build imagetrivy image <name>:<tag> — scan for vulnerabilitiesdive <name>:<tag> — analyze layer efficiencydocker compose up -d — deploykubectl get pods -A — cluster overviewk9s — interactive managementstern <pod-prefix> — tail logs from multiple podshelm list -A — check installed chartsRun hcloud --help for available commands.
Common: hcloud server list, hcloud server create, hcloud firewall list
sops or age for secrets, never plaintexttools
Project workspace configuration — auto-detect commands, _workspace.json convention, .envrc templates
development
This skill helps Claude write secure web applications. Use this when working on any web application or when a user requests a scan or audit to ensure security best practices are followed.
tools
Configures Python projects with modern tooling (uv, ruff, ty). Use when creating projects, writing standalone scripts, or migrating from pip/Poetry/mypy/black.
tools
Control tmux sessions — create panes, run commands, read output, monitor processes