3.7k★by mrgoodb
google-cloud – OpenClaw Skill
google-cloud is an OpenClaw Skills integration for coding workflows. Manage Google Cloud resources via gcloud CLI. Compute, storage, and cloud functions.
3.7k stars949 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | google-cloud |
| description | Manage Google Cloud resources via gcloud CLI. Compute, storage, and cloud functions. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/google-cloud |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/google-cloud |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
277 BSKILL.md
1.1 KBSKILL.md
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
gcloud auth login
gcloud config set project PROJECT_ID
Compute Engine
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
gcloud functions list
gcloud functions deploy myFunction --runtime nodejs18 --trigger-http --allow-unauthenticated
gcloud functions call myFunction --data '{"name": "test"}'
Cloud Storage
gsutil ls gs://bucket-name/
gsutil cp file.txt gs://bucket-name/
gsutil cp gs://bucket-name/file.txt ./
Cloud Run
gcloud run services list
gcloud run deploy service-name --image gcr.io/project/image --platform managed
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install google-cloud?
Run openclaw add @mrgoodb/google-cloud in your terminal. This installs google-cloud into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/google-cloud. Review commits and README documentation before installing.
