gcp-infrastructure
Google Cloud Platform infrastructure inspection. Use when investigating GCP Compute instances, GKE clusters, Cloud Functions, Cloud SQL, or project metadata.
Works with
--- name: gcp-infrastructure description: Google Cloud Platform infrastructure inspection. Use when investigating GCP Compute instances, GKE clusters, Cloud Functions, Cloud SQL, or project metadata. license: Apache-2.0 --- # GCP Infrastructure ## Authentication **IMPORTANT**: Credentials are injected automatically by a proxy layer. Do NOT check for `GCP_SERVICE_ACCOUNT_KEY` in environment variables - it won't be visible to you. Just run the scripts directly; authentication is handled transparently. Configuration environment variables you CAN check (non-secret): - `GCP_PROJECT_ID` - GCP project ID --- ## Available Scripts All scripts are in `.claude/skills/infrastructure-gcp/scripts/` ### list_compute_instances.py - List Compute Engine VMs ```bash python .claude/skills/infrastructure-gcp/scripts/list_compute_instances.py [--zone us-central1-a] ``` ### list_gke_clusters.py - List GKE Clusters ```bash python .claude/skills/infrastructure-gcp/scripts/list_gke_clusters.py ``` ### list_cloud_functions.py - List Cloud Functions ```bash python .claude/skills/infrastructure-gcp/scripts/list_cloud_functions.py ``` ### list_cloud_sql.py - List Cloud SQL Instances ```bash python .claude/skills/infrastructure-gcp/scripts/list_cloud_sql.py ``` ### get_project_metadata.py - Project Info ```bash python .claude/skills/infrastructure-gcp/scripts/get_project_metadata.py ``` --- ## Investigation Workflow ### GKE Cluster Issue ``` 1. list_gke_clusters.py 2. Use infrastructure-kubernetes skill for pod-level debugging ``` ### Compute Instance Issue ``` 1. list_compute_instances.py --zone <zone> 2. Check instance status and IPs ```
More DevOps & Infrastructure skills
azure-ai
microsoft/azure-skills
Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.
appinsights-instrumentation
microsoft/azure-skills
Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.
azure-storage
microsoft/azure-skills
Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Answers questions about storage access tiers (hot, cool, cold, archive), when to use each tier, and tier comparison. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics. Includes lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, storage tiers, hot cool cold archive, storage tier comparison, when to use storage tiers, lifecycle management, Azure Storage concepts. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging).

