openclaw / google-cloud
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/google-cloud && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2491" && unzip -o skill.zip -d .claude/skills/google-cloud && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/google-cloud/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Manage Google Cloud resources via gcloud CLI. Compute, storage, and cloud functions.
0 views
0 installs
Skill Content
---
name: google-cloud
description: Manage Google Cloud resources via gcloud CLI. Compute, storage, and cloud functions.
metadata: {"clawdbot":{"emoji":"☁️","requires":{"bins":["gcloud"]}}}
---
# Google Cloud Platform
Cloud infrastructure and services.
## Auth
```bash
gcloud auth login
gcloud config set project PROJECT_ID
```
## Compute Engine
```bash
gcloud compute instances list
gcloud compute instances create vm-name --zone=us-central1-a --machine-type=e2-micro
gcloud compute instances stop vm-name --zone=us-central1-a
```
## Cloud Functions
```bash
gcloud functions list
gcloud functions deploy myFunction --runtime nodejs18 --trigger-http --allow-unauthenticated
gcloud functions call myFunction --data '{"name": "test"}'
```
## Cloud Storage
```bash
gsutil ls gs://bucket-name/
gsutil cp file.txt gs://bucket-name/
gsutil cp gs://bucket-name/file.txt ./
```
## Cloud Run
```bash
gcloud run services list
gcloud run deploy service-name --image gcr.io/project/image --platform managed
```
## Links
- Console: https://console.cloud.google.com
- Docs: https://cloud.google.com/sdk/gcloud/reference