gcloud

Solid

Google Cloud Platform CLI - manage GCP resources. Use when working with Compute Engine, Cloud Run, GKE, Cloud Functions, Storage, BigQuery, or other GCP services.

DevOps & Infrastructure 389 stars 40 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 86/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

<!-- TOC: Quick Start | THE EXACT PROMPT | Services | Output Formatting | AGENTS.md Blurb | When to Use | References --> # GCloud CLI > **Core Capability:** Manage Google Cloud Platform resources and services from the command line. ## Quick Start ```bash # Install curl https://sdk.cloud.google.com | bash exec -l $SHELL # Verify gcloud version # Check auth gcloud auth list # Set project gcloud config set project PROJECT_ID # Show current config gcloud config list ``` --- ## THE EXACT PROMPT — Auth & Config ``` # Login interactively gcloud auth login # Service account auth gcloud auth activate-service-account --key-file=key.json # Application default credentials gcloud auth application-default login # Set project gcloud config set project PROJECT_ID # Set region/zone gcloud config set compute/region us-central1 gcloud config set compute/zone us-central1-a # Named configurations gcloud config configurations create my-config gcloud config configurations activate my-config ``` --- ## THE EXACT PROMPT — Compute Engine ``` # List VMs gcloud compute instances list # Create VM gcloud compute instances create my-vm \ --zone=us-central1-a \ --machine-type=e2-medium \ --image-family=debian-12 \ --image-project=debian-cloud # SSH to VM gcloud compute ssh my-vm --zone=us-central1-a # Stop/start gcloud compute instances stop my-vm --zone=us-central1-a gcloud compute instances start my-vm --zone=us-central1-a ``` --- ## THE EXACT PROMPT — Cloud Run ``` # List...

Details

Author
boshu2
Repository
boshu2/agentops
Created
7 months ago
Last Updated
today
Language
Go
License
NOASSERTION

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category