TopRank Skills

Home / Claw Skills / Autres / gcloud
Official OpenClaw rules 15%

gcloud

Manage Google Cloud Platform resources using the official gcloud CLI, discovering command syntax dynamically with `gcloud <group> --help` before execution.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 gcloud 技能。 若已安装,则直接安装 gcloud 技能。

Overview

Skill Key
felipe0liveira/gcloud-cli
Author
felipe0liveira
Source Repo
openclaw/skills
Version
-
Source Path
skills/felipe0liveira/gcloud-cli
Latest Commit SHA
9c25bff69d64cfba2280876b178cb58f06b0a72d

Extracted Content

SKILL.md excerpt

# Google Cloud CLI

gcloud - manage Google Cloud resources and developer workflows

This skill is built on top of the official [`gcloud` CLI](https://cloud.google.com/sdk/gcloud). It supports the full CLI surface while avoiding hardcoded syntax by always consulting `--help` output at runtime.

Related docs:
- Installation and setup: [installation.md](installation.md)
- Group reference: [groups.md](groups.md)
- Usage examples: [examples.md](examples.md)
- Troubleshooting: [troubleshooting.md](troubleshooting.md)

## Requirements

This skill requires `gcloud` CLI.

For setup instructions, see [installation.md](installation.md).

## Scope

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.

## Credentials and Environment

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:
1. Run `gcloud config list --format='text(core.account,core.project)'` and show the active account and project.
2. If the active account is not a dedicated service account, stop and ask the user to switch identities.
3. Confirm the target project and environment with the user before proceeding.

Credential safety rules:
- Use least-privilege service accounts.
- Do not use personal accounts or broad admin identities for automation.
- Be explicit when `--impersonate-service-account` is in use.
- Prefer sandbox projects for validation before production changes.

## Workflow

Before executing any `gcloud` command, follow this sequence:

1. Check active context:
   ```bash
   gcloud config list --format='text(core.account,core.project)'
   ```
2. Identify the right command group from [groups.md](groups.md).
3. Discover syntax using help commands:
   ```bash
   gcloud <GROUP> --help
   gcloud <GROUP> <SUBGROUP> --help
   ```
4. Build the exact com...

Related Claw Skills