From devops-data
Provides GCP infrastructure patterns and best practices for Compute Engine, Cloud Functions, Cloud Storage, BigQuery, GKE. Includes Terraform examples, security tips, SQL patterns, and cost optimization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devops-data:gcp-cloudThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides GCP architecture patterns and best practices.
This skill provides GCP architecture patterns and best practices.
| Service | Use Case |
|---|---|
| Compute Engine | Virtual machines |
| Cloud Functions | Serverless functions |
| Cloud Run | Containers serverless |
| Cloud Storage | Object storage |
| Cloud SQL | Managed databases |
| BigQuery | Data warehouse |
| GKE | Kubernetes |
# GKE cluster
resource "google_container_cluster" "primary" {
name = "my-cluster"
location = "us-central1"
remove_default_node_pool = true
initial_node_count = 1
workload_identity_config {
workload_pool = "${var.project_id}.svc.id.goog"
}
}
-- Partitioned table for cost optimization
CREATE TABLE mydataset.events
PARTITION BY DATE(event_time)
CLUSTER BY user_id
AS SELECT * FROM staging.events;
npx claudepluginhub jpoutrin/product-forge --plugin devops-dataProvides production GCP patterns for Cloud Run with Terraform, Workload Identity Federation (no SA keys), private Cloud SQL and Memorystore Redis, BigQuery analytics, Cloud Armor WAF, Secret Manager, VPC Service Controls, IAM least privilege. Use for architecture design, Terraform IaC, IAM reviews.
Provides deep expertise on production GCP workloads: IAM/Workload Identity, VPC networking, GKE/Cloud Run, Cloud SQL/Spanner/Bigtable/BigQuery, Pub/Sub, security/observability with Cloud Armor/KMS/Logging/Monitoring, and cost optimization.
Provides GCP architecture expertise for organization/project structure, VPC networking, data/analytics, Kubernetes/serverless, AI/ML platforms, security, and cost optimization. Use when designing or evaluating GCP systems.