skills$openclaw/google-cloud
mrgoodb3.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

namegoogle-cloud
descriptionManage Google Cloud resources via gcloud CLI. Compute, storage, and cloud functions. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/google-cloud
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/google-cloud
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains google-cloud in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
277 B
SKILL.md
1.1 KB
SKILL.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 ./
gcloud run services list
gcloud run deploy service-name --image gcr.io/project/image --platform managed
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.