skills/vigilante-issue-implementation-on-terraform/SKILL.md
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Terraform repository with fmt, validate, and secret-safe infrastructure guidance.
npx skillsauth add aliengiraffe/vigilante vigilante-issue-implementation-on-terraformInstall 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 on all touched Terraform directories before committing. Do not hand-format Terraform code — let the standard formatter handle layout.terraform validate in each root module directory that contains changed files. Ensure provider and backend blocks are present or that validation is run with -no-color for clean output. If validation requires initialized providers, run terraform init -backend=false first to install providers without configuring remote state.terraform plan or terraform apply unless the repository defines a safe local workflow for it (e.g., a Makefile target, CI script, or documented local plan process). Assume cloud credentials are not available in the agent environment.tflint is configured (.tflint.hcl), run tflint on touched modules. When tfsec or trivy is configured, run the appropriate scanner. Do not introduce a different linter unless the issue specifically requires it. If no project linter is configured, terraform validate is sufficient.snake_case for resource names, variable names, output names, and local values.main.tf, variables.tf, outputs.tf, providers.tf).variables.tf for input variable declarations and outputs.tf for output declarations.required_providers blocks and use pessimistic version constraints (e.g., ~> 5.0).ref=main for git-sourced modules in production configurations..tf files or terraform.tfvars committed to the repository.sensitive = true.terraform.tfstate, *.tfstate.backup) as sensitive — they must never be committed. Verify .gitignore covers state files.prevent_destroy lifecycle rules on critical resources when appropriate.variables.tf, outputs.tf, and a README.md if the module is intended for reuse.validation blocks on variables where constraints are meaningful.terraform fmt, terraform validate, tflint, tfsec) to .tf files and Terraform directories only. Do not run Terraform tools against non-Terraform code.vigilante-issue-implementation workflow for issue comments, validation, push, and PR creation.vigilante commit for all commit-producing operations. Do not use git commit or GitHub CLI commit flows directly.git config with a coding-agent identity.Co-authored by: trailers or any other agent attribution for Codex, Claude, Gemini, or similar coding-agent identities.AGENTS.md, README.md, CI config) remain authoritative when they are more specific than the generic Terraform guidance in this skill.documentation
Help a human author write an implementation-ready GitHub issue that Vigilante can execute reliably.
tools
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Rust repository with Cargo, Clippy, fmt, and security guidance.
development
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Ruby repository with Bundler, test, lint, and security guidance.
testing
Prepare local service dependencies for an implementation worktree by preferring repository-native startup flows before falling back to compatible local mechanisms.