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.
npx agentmods add skills/jpantsjoha/googlecloud-plugin/terraform-gcpnpx skills add jpantsjoha/googlecloud-plugin --skill terraform-gcpgit clone --depth 1 https://github.com/jpantsjoha/googlecloud-pluginWrote 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.
[](https://agentmods.dev/skills/jpantsjoha/googlecloud-plugin/terraform-gcp)<a href="https://agentmods.dev/skills/jpantsjoha/googlecloud-plugin/terraform-gcp"><img src="https://agentmods.dev/badge/skills/jpantsjoha/googlecloud-plugin/terraform-gcp.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00090 | $0.00752 |
| Opus 5 | $0.00045 | $0.00376 |
| Sonnet 5 | $0.00018 | $0.00150 |
| Haiku 4.5 | $0.00009 | $0.00075 |
Grade A, and why
terraform-gcp 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Terraform — GCP
Infrastructure as Code for Google Cloud using the official Terraform provider and Cloud Foundation Toolkit (CFT).
Safety Rule — Plan Before Apply
# Always plan first
terraform plan -out=tfplan
# Review the plan — look for unexpected destroys
# Only apply after confirming no unexpected changes
terraform apply tfplan
Provider Setup
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 6.0"
}
}
backend "gcs" {
bucket = "PROJECT_ID-tfstate"
prefix = "env/prod"
}
}
provider "google" {
project = var.project_id
region = var.region
}
CFT Module Usage (recommended over writing from scratch)
# Example: GKE cluster via CFT module
module "gke" {
source = "terraform-google-modules/kubernetes-engine/google//modules/autopilot-cluster"
version = "~> 33.0"
project_id = var.project_id
name = "my-cluster"
region = var.region
network = module.vpc.network_name
subnetwork = module.vpc.subnets_names[0]
}
State Management
- State in GCS bucket (not local, not git)
- One state file per environment (
env/dev,env/staging,env/prod) - Bucket versioning enabled for state rollback
- State lock via GCS object versioning (built in to google backend)
Module Structure (project convention)
infra/
├── modules/ # Reusable modules
│ └── service/
│ ├── main.tf
│ ├── variables.tf
│ └── outputs.tf
├── environments/
│ ├── dev/
│ │ ├── main.tf # Calls modules
│ │ └── terraform.tfvars
│ └── prod/
│ ├── main.tf
│ └── terraform.tfvars
└── backend.tf
References
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 97 lines · 90 tokens per session scan A b0622c69e128
terraform-gcp is a skill published in the GitHub repository jpantsjoha/googlecloud-plugin (4 stars, last pushed 29d ago), licensed MIT. It adds 90 tokens to every session and 752 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.
Other skills, from other repositories
ak-cloud-deploy
Deploy an Agent Kernel project to AWS, Azure, or GCP using Terraform modules, or to any Kubernetes cluster (on-prem, baremetal, EKS) using the official Helm chart. Supports serverless and containerized modes for all three clouds. AWS supports execution modes (restsync, restasync, async, stream), queue-based scalable…
vercel-deploy
Deploy an approved and tested committed web project to a Vercel preview and verify provider identity, commit, status and actual URL. Use for publishing a website preview; production needs separate approval, and feature building or browser QA belong to other skills.
cross-repo-testing
This skill should be used when the user asks to "test a cross-repo feature", "deploy a feature branch to staging", "test SDK against OH Cloud", "e2e test a cloud workspace feature", "test provider tokens", "test secrets inheritance", or when changes span the SDK and OpenHands server repos and need end-to-end…
qzcli
Manage GPU compute jobs on the Qizhi (启智) platform using qzcli — a kubectl-style CLI tool. Use when user says "qzcli", "启智平台", "submit job", "stop job", "查计算组", "avail", "list jobs", "batch submit", or needs to manage distributed training jobs on a Qizhi instance.
serving-llms-vllm
Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.
architecture-diagram
Dark-themed SVG architecture/cloud/infra diagrams as HTML.