Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

gcloudgcloud 命令行

Agent Skill

gcloud 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

4

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gcloud(gcloud 命令行)
来源仓库:https://github.com/marcfargas/skills
仓库路径:skills/gcloud
安装命令:
npx skills add https://github.com/marcfargas/skills --skill gcloud
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/marcfargas/skills --skill gcloud

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 信息。

  • 适合整理代码变更、协作事项和仓库状态。
  • 可辅助理解项目结构和开发流程。gcloud 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 使用前应确认是否有 GitHub API 访问权限。
  • 适用于 Codex、Claude、Cursor 等宿主平台。

SKILL.md

gcloud — Google Cloud Platform CLI

Command-line interface for managing Google Cloud resources. Covers gcloud, gcloud storage (replaces gsutil), and bq (BigQuery).

Platform Notes (Windows + Git Bash)

  • Install: scoop install gcloud (preferred) or GoogleCloudSDKInstaller.exe
  • If installed via scoop, gcloud components install may not work — use scoop to manage
  • Config: %APPDATA%/gcloud/ (PowerShell) or ~/.config/gcloud/ (Git Bash)
  • Service account keys: store in $TEMP or project .secrets/, never commit
  • Python: gcloud requires Python; scoop install handles this automatically

⚠️ Path Translation Gotcha

Git Bash auto-translates /-prefixed args, breaking some gcloud commands:

# FIX — disable MSYS path conversion:
export MSYS_NO_PATHCONV=1

# Or per-command:
MSYS_NO_PATHCONV=1 gcloud projects add-iam-policy-binding my-project ...
⚠️ Cost: Commands that create resources (instances, clusters, databases) incur GCP charges. Always confirm project and region before creating.

Agent Safety Model

Operations classified by risk. Follow this model for all gcloud commands.

LevelGateExamples
READProceed autonomouslylist, describe, get, logs read, config list, gcloud storage ls
WRITEConfirm with user; note cost if billablecreate, deploy, update, enable, gcloud storage cp (upload)
DESTRUCTIVEAlways confirm; show what's affecteddelete, rm, gsutil rm -r, bq rm -r, rsync -d, IAM removal
EXPENSIVEConfirm + state approximate costGKE clusters ($70+/mo), SQL instances ($8-400/mo), VMs (~$5-2k/mo)
SECURITYConfirm + explain impact--allow-unauthenticated, firewall rules, IAM owner/editor grants
FORBIDDENRefuse; escalate to humangcloud iam service-accounts keys create, gcloud projects delete, passwords in CLI args

Rules:

  • Never combine --quiet with destructive operations — it suppresses the only safety gate
  • Never put passwords/secrets as command-line arguments — visible in process list & shell history
  • Always use --format=json for machine-parseable output (agents can't reliably parse tables)
  • When in doubt, treat as DESTRUCTIVE

Command Structure

gcloud [RELEASE_LEVEL] COMPONENT ENTITY OPERATION [ARGS] [FLAGS]

Key global flags: --project, --format, --filter, --limit, --quiet, --verbosity, --async

Service Reference

ServiceFileKey Commands
Auth & Configauth.mdLogin, ADC, impersonation, config profiles
IAM & Projectsiam.mdProjects, APIs, service accounts, Secret Manager
Compute & Networkingcompute.mdVMs, SSH, firewall, VPC, DNS, static IPs
Serverlessserverless.mdCloud Run, Functions, App Engine, Scheduler, Tasks
Storage & Artifactsstorage.mdgcloud storage, Artifact Registry
Datadata.mdCloud SQL, BigQuery (bq), Pub/Sub
Automation & CI/CDautomation.mdScripting, output formats, filtering, GitHub Actions, operations

Read the per-service file for full command reference.

Pre-Flight Checks

Before working with any GCP service:

# 1. Correct project?
gcloud config get-value project

# 2. Default region set?
gcloud config get-value compute/region

# 3. Required API enabled? (most APIs are disabled by default)
gcloud services list --filter="name:run.googleapis.com" --format="value(name)" | grep -q run || \
  gcloud services enable run.googleapis.com

# 4. Billing enabled?
gcloud billing projects describe $(gcloud config get-value project) --format="value(billingEnabled)"

If you hit PERMISSION_DENIED:... API has not been enabled, enable the API mentioned in the error and retry.

Troubleshooting

ProblemDiagnosisFix
Auth failuregcloud auth listgcloud auth login or check key file
Permission deniedCheck IAM (see iam.md)Grant correct role
API not enabledError message says which APIgcloud services enable API_NAME
Quota exceededgcloud compute project-info describeRequest increase in Console
Wrong projectgcloud config get-value projectgcloud config set project X
Wrong regiongcloud config get-value compute/regionSet correct region; related resources must match
Config confusiongcloud config configurations listCheck active config, override with --project
Slow commandsLarge result setUse --filter, --limit, --format=value
# Debug mode
gcloud compute instances list --verbosity=debug

# Full environment info
gcloud info

Quick Reference

TaskCommand
Logingcloud auth login
Set projectgcloud config set project PROJECT_ID
Current projectgcloud config get-value project
Enable APIgcloud services enable API.googleapis.com
List anythinggcloud COMPONENT list --format=json
Describe anythinggcloud COMPONENT describe NAME --format=json
JSON output--format=json
Single value--format="value(field)"
Filter--filter="field=value"
Quiet ⚠️--quiet — suppresses ALL prompts including delete confirmations
Helpgcloud COMPONENT --help

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.72%
按下载量换算53

Claude

32.48%
按下载量换算46

Cursor

19.97%
按下载量换算29

Gemini CLI

8.6%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills