gcp-guide

gcp-guide is a skill for Claude Code, Codex from khalilbenaz/claude-skills-collection. It costs 65 tokens per session (2,018 once invoked), scanned A, original, MIT.

A guide to Google Cloud Platform, Google's cloud service for running applications, storing data, and managing infrastructure. It covers services such as Cloud Run, BigQuery, GKE, Cloud Functions, and Firestore.

In plain words
What is it for?
Use it to set up Google Cloud projects, configure IAM access, plan budgets and alerts, and choose or manage Google Cloud services.
Why use it?
It helps structure cloud projects safely across development, testing, and production environments. It also guides budgets, access permissions, and service accounts.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to set up Google Cloud projects, configure IAM access, plan budgets and alerts, and choose or manage Google Cloud services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khalilbenaz/claude-skills-collection/gcp-guide
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add khalilbenaz/claude-skills-collection --skill gcp-guide
Clone the repo
git clone --depth 1 https://github.com/khalilbenaz/claude-skills-collection

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gcp-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/gcp-guide/github.svg)](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/gcp-guide)
Your own site
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/gcp-guide"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/gcp-guide/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gcp-guide

Your own site · 80×15
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/gcp-guide"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/gcp-guide.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,018 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00065 $0.02018
Opus 5 $0.00032 $0.01009
Sonnet 5 $0.00013 $0.00404
Haiku 4.5 $0.00006 $0.00202

Measured 9d ago against content hash 87f7fb664232, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

gcp-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

cloud-skills/gcp-guide/SKILL.md · 221 lines

How it starts

The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GCP Guide

Workflow

1. Structurer la hiérarchie des ressources

Organization
└── Folder (prod / staging / dev)
    └── Project (une app ou un domaine)
        └── Resources (Cloud Run, BigQuery, etc.)
  • Crée un projet distinct par environnement ; jamais partager des projets entre prod et non-prod.
  • Attribue un budget + alerte à chaque projet dès la création.
gcloud projects create my-app-prod --folder=FOLDER_ID
gcloud billing projects link my-app-prod --billing-account=BILLING_ID
gcloud alpha billing budgets create \
  --billing-account=BILLING_ID \
  --display-name="my-app-prod budget" \
  --budget-amount=500USD \
  --threshold-rule=percent=0.8

2. IAM — moindre privilège dès le départ

  • Un service account par workload, jamais la clé par défaut Compute.
  • Préfère Workload Identity Federation (pas de clé JSON) pour les pipelines CI/CD.
  • Rôles custom > rôles primitifs (Owner/Editor/Viewer).
# Créer un SA dédié
gcloud iam service-accounts create sa-cloud-run-api \
  --display-name="API Cloud Run"

# Binding minimal
gcloud projects add-iam-policy-binding PROJECT_ID \
  --member="serviceAccount:sa-cloud-run-api@PROJECT_ID.iam.gserviceaccount.com" \
  --role="roles/run.invoker"

3. Choisir le bon service de calcul

Besoin Service recommandé
API HTTP / microservice conteneurisé, trafic variable Cloud Run
Workloads Kubernetes existants, GPU, état local GKE Autopilot
Traitement event-driven simple (<10 min) Cloud Functions 2nd gen
Batch HPC ou ML training Batch + GPU/TPU
VM legacy ou contrôle OS total Compute Engine
# Déployer sur Cloud Run depuis une image Artifact Registry
gcloud run deploy my-api \
  --image=europe-west1-docker.pkg.dev/PROJECT_ID/repo/my-api:latest \
  --region=europe-west1 \
  --platform=managed \
  --service-account=sa-cloud-run-api@PROJECT_ID.iam.gserviceaccount.com \
  --min-instances=0 \
  --max-instances=20 \
  --concurrency=80 \
  --no-allow-unauthenticated

Read the full file on GitHub · 221 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 221 lines · 65 tokens per session scan A 87f7fb664232

Subscribe to this mod's changes

gcp-guide is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 19d ago), licensed MIT. It adds 65 tokens to every session and 2,018 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.