EN ZH

☁️ GCP Helper

Use when managing GCP resources like GCE, GCS, or GKE via gcloud CLI.

Overview

Assists in the management of Google Cloud Platform (GCP) resources by providing standardized commands and best practices. This skill helps LLM agents navigate complex cloud environments safely.

When to Use

Core Pattern

Always verify the current active project before making any changes to avoid accidental modifications to production environments.

# Verify project
gcloud config get-value project

Quick Reference

Service Common Command
GCE gcloud compute instances list
GCS gsutil ls
GKE gcloud container clusters list

Implementation

  1. Check active project: gcloud config get-value project.
  2. List resources for the specific service: gcloud [service] list.
  3. Perform the desired action with confirmed parameters.

Common Mistakes

← Back to Skills