gcloud
SolidGoogle 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
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
DevOps & Infrastructure Listed
gcloud
Google Cloud Platform CLI - manage GCP resources including Compute Engine, Cloud Run, GKE, Cloud Functions, Storage, BigQuery, and more.
353 Updated today
aiskillstore AI & Automation Listed
gcloud
Google Cloud CLI 操作
1 Updated today
ryukyagamilight DevOps & Infrastructure Solid
using-cloud-cli
Cloud CLI patterns for GCP and AWS. Use when running bq queries, gcloud commands, aws commands, or making decisions about cloud services. Covers BigQuery cost optimization and operational best practices. NOT for Terraform or Kubernetes architectural decisions (see managing-infra).
33 Updated 1 weeks ago
alexei-led