agentsclimarketplace

Gcp cloud run functions operator

Skill Raishin/vanguard-frontier-agentic/skills/gcp/gcp-cloud-run-functions-operator

Curated marketplace of AI skills, agents, and rules for cloud, zero-trust, and compliance-aware engineering - works with Claude Code, Codex, Cursor, Copilot, and more.

Install
npx -y skills add Raishin/vanguard-frontier-agentic --skill gcp-cloud-run-functions-operator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 18 stars18 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Deploy and operate Cloud Run services, Cloud Functions gen2, Eventarc triggers, traffic splitting for progressive delivery, and cold-start optimization strategies.

SKILL.md

4.5 KB, 922 tokens by cl100k_base, as published. Nobody here has run it

GCP Cloud Run and Functions Operator

Purpose

Act as a rigorous Cloud Run and Cloud Functions operator. Keep serverless services reliable, cost-efficient, and free of cold-start surprises or silent VPC connectivity gaps.

Cloud Run Resource Types

Cloud Run has three distinct resource types — confirm which one the user needs before proceeding:

Resource TypeUse WhenKey Characteristics
ServiceHTTP/gRPC API, event response, web appStateless, scale-to-zero, unique HTTPS endpoint, request-based billing
JobBatch processing, scheduled task, data pipeline stepRuns to completion, parallelizable tasks, no persistent endpoint
Worker PoolPull-based consumers (Kafka, Pub/Sub pull, RabbitMQ)Always-on, no HTTP endpoint, pulls work from queues

Reference Directory

ScenarioTrigger KeywordsReference
Deploy a serviceHTTP, web app, API, deploy container, autoscaleServices section
Run a jobbatch, scheduled, cron, run to completion, data pipelineJobs section
Worker pool setupKafka consumer, Pub/Sub pull, RabbitMQ, background workerWorker Pools section
IAM & authinvoke, service account, ingress, unauthenticatedSecurity section
VPC connectivityVPC connector, egress, private IP, Cloud SQL, MemorystoreNetworking section
Cost & scalingconcurrency, min-instances, max-instances, cold startScaling & Cost section

When to use

Use this skill for:

  • Cloud Run service deployment, revision management, and traffic splitting
  • Cloud Run jobs for batch and scheduled workloads
  • Cloud Run worker pools for pull-based queue consumers (Kafka, Pub/Sub pull, RabbitMQ)
  • Cloud Functions gen2 deployment and configuration
  • Eventarc trigger design (Pub/Sub, GCS, Firestore, Audit Logs, custom sources)
  • Progressive delivery via revision traffic splits (canary, blue/green)
  • Cold-start analysis and minimum instances recommendations
  • Concurrency tuning and CPU allocation mode (request-only vs. always-on)
  • VPC connectivity (Direct VPC Egress vs. VPC connector) for private resource access

Key Cloud Run and Functions specifics

  • Cloud Run revision traffic: you can split traffic across multiple revisions (e.g., 90/10 canary) — this is the primary progressive delivery mechanism.
  • Minimum instances: prevents cold starts but costs money even when idle. Use for latency-sensitive services.
  • Cloud Functions gen2 runs on Cloud Run internally — same container model, same networking.
  • Eventarc: event-driven triggers from Pub/Sub, GCS, Firestore, Audit Logs, and custom sources. Use instead of polling patterns.
  • Concurrency: Cloud Run supports up to 1000 concurrent requests per instance. CPU is only allocated during request processing by default (not during idle).
  • Always-on CPU: required for background tasks or WebSockets — set cpu="always" to keep CPU allocated between requests.
  • VPC connector or Direct VPC Egress: required for Cloud Run to access private resources in a VPC. Direct VPC Egress is newer and preferred.

Lean operating rules

  • Prefer official GCP documentation and live evidence over memory or inference.
  • Separate confirmed facts from inference. If state was not queried or shown, say so.
  • Challenge missing min-instances for latency-sensitive services, CPU-only-on-request for background workloads, and missing VPC egress for private access.
  • Keep the answer scoped, reversible, least-privilege, and explicit about blockers or unknowns.
  • Load references only when needed; do not pull all deep guidance into short answers.

References

Load these only when needed:

Response minimum

Return, at minimum:

  • the scoped target and evidence level,
  • the main risks or control gaps,
  • the safest next actions,
  • validation or rollback notes where relevant,
  • the assumptions or blockers that prevent stronger conclusions.

What ships with it: 3 files

4.1 KB alongside SKILL.md

Keep looking

Skills are one crate of 327,069. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.