From googlecloud-plugin
Deploy and manage containerized workloads on Cloud Run. Covers service creation, traffic splitting, IAM, VPC connectivity, secrets integration, auto-scaling, and gcloud CLI patterns. Warns before billable deployments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/googlecloud-plugin:cloud-runThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Deploy and manage containerized applications on Google Cloud Run — fully managed, serverless, and scales to zero.
Deploy and manage containerized applications on Google Cloud Run — fully managed, serverless, and scales to zero.
gcloud CLI authenticated (gcloud auth login or ADC)gcloud config set project PROJECT_IDgcloud services enable run.googleapis.com# Billable action — confirm before running
gcloud run deploy SERVICE_NAME \
--image IMAGE_URI \
--region REGION \
--platform managed \
--no-allow-unauthenticated
gcloud run services add-iam-policy-binding SERVICE_NAME \
--region REGION \
--member="serviceAccount:[email protected]" \
--role="roles/run.invoker"
gcloud run services update SERVICE_NAME \
--vpc-connector CONNECTOR_NAME \
--region REGION
gcloud run services update SERVICE_NAME \
--set-secrets=/path/to/secret=SECRET_NAME:latest \
--region REGION
--allow-unauthenticated without explicit intent and gcp-security sign-off--no-allow-unauthenticated as the defaultnpx claudepluginhub jpantsjoha/googlecloud-pluginGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.