This handles the three main Cloud Run primitives: services for HTTP endpoints, jobs for scheduled or one-off tasks, and worker pools for always-on background processing like Kafka consumers. The documentation is thorough on deployment options, covering container images from Artifact Registry or Docker Hub, source-to-container builds with buildpacks, and even a preview feature for deploying source without Cloud Build. One critical callout: your code must listen on 0.0.0.0 and use the injected PORT variable or it'll crash on boot, a common gotcha that trips people up. The permissions section is detailed enough to actually be useful, which is rare for infrastructure skills.
npx skills add https://github.com/google/skills --skill cloud-run-basics