Install
openclaw skills install gcloud-cliManage Google Cloud Platform resources using the official gcloud CLI, discovering command syntax dynamically with `gcloud <group> --help` before execution.
openclaw skills install gcloud-cligcloud - manage Google Cloud resources and developer workflows
This skill is built on top of the official gcloud CLI. It supports the full CLI surface while avoiding hardcoded syntax by always consulting --help output at runtime.
Related docs:
This skill requires gcloud CLI.
For setup instructions, see installation.md.
Use this skill only for Google Cloud resource management via gcloud commands. Do not use unrelated endpoints, tools, or local file operations outside the requested task.
This skill uses the active Google Cloud CLI authentication context (gcloud auth) and configuration (gcloud config). It inherits the permissions of the active identity.
Before any operation:
gcloud config list --format='text(core.account,core.project)' and show the active account and project.Credential safety rules:
--impersonate-service-account is in use.Before executing any gcloud command, follow this sequence:
gcloud config list --format='text(core.account,core.project)'
gcloud <GROUP> --help
gcloud <GROUP> <SUBGROUP> --help
All operations require explicit user confirmation before execution, including read operations.
This includes:
set, unset, reset)For every operation, the agent must:
--help first.--format=json when output will be parsed programmatically.--quiet only after explicit user approval.You can perform any operation available through gcloud, as long as it is within user-requested scope and approved before execution.
Examples and scenarios are documented in examples.md.
See troubleshooting.md for authentication, IAM, API enablement, and syntax troubleshooting steps.