with one click
terraform-plan
Run terraform init + plan for an environment and show summary
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run terraform init + plan for an environment and show summary
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap)
Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks
View and troubleshoot service logs and pod status
Review Terraform code for security, best practices, and conventions
Roll back a failed deployment to the previous revision
Run Checkov security scan on Terraform modules
| name | terraform-plan |
| description | Run terraform init + plan for an environment and show summary |
| disable-model-invocation | true |
| argument-hint | [env] |
Run Terraform init and plan for the specified environment.
env — Target environment: dev or prod (default: dev)Determine the environment directory:
dev → terraform/environments/dev/prod → terraform/environments/prod/Run terraform init in the environment directory:
cd terraform/environments/{env} && terraform init
Run terraform plan and save the plan:
cd terraform/environments/{env} && terraform plan -out plan.out
Show a summary of the plan output:
If the plan shows destroys, warn the user explicitly:
WARNING: This plan will DESTROY {N} resource(s). Review carefully before applying.
-out plan.out so the exact plan can be applied later