hs:devops

Deploy and manage infrastructure on Cloudflare, Docker, GCP, and Kubernetes.

Updated Jul 19, 2026
One-click install
npx skills add https://github.com/Dozyboy/VSF --skill hs-devops-dozyboy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: hs:devops
Source: https://github.com/Dozyboy/VSF/tree/main/Day2_VSF/Demo1/harness/plugins/hs/disabled-skills/devops
Command: npx skills add https://github.com/Dozyboy/VSF --skill hs-devops-dozyboy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Deploying and managing cloud infrastructure across multiple platforms requires deep knowledge of different CLIs, configuration formats, and best practices, which slows down shipping and increases misconfiguration risk. ## Core Features & Use Cases - Multi-Platform Deployment: Deploy serverless apps to Cloudflare Workers/Pages, containers to Docker and GCP Cloud Run/GKE, and workloads to Kubernetes with kubectl and Helm. - Reference Library: In-depth guides covering Cloudflare Workers, R2, D1, KV, Browser Rendering, Docker multi-stage builds, Docker Compose, gcloud CLI, and Kubernetes security, GitOps, and troubleshooting. - Automation Scripts: Includes cloudflare_deploy.py for automated Worker deployments with environment support and dry-run mode, plus docker_optimize.py for analyzing Dockerfiles for security and size issues. - Use Case: Containerize a Node.js app with an optimized multi-stage Dockerfile, deploy it to Cloud Run with gcloud, and manage the surrounding Kubernetes cluster with kubectl and Helm charts. ## Quick Start Ask the agent to deploy your application to Cloudflare Workers or build and run it as a Docker container on GCP Cloud Run.

Frequently Asked Questions about hs:devops

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a Cloudflare Worker with wrangler?▼

Run wrangler init to create a project, configure wrangler.toml with your bindings, then run wrangler deploy. The included cloudflare_deploy.py script automates this with environment selection and dry-run support.

How do I deploy a container to Google Cloud Run?▼

Build your image with docker build, push it to GCR, then run gcloud run deploy with the image path and region. The gcloud references cover authentication, service accounts, and CI/CD integration with GitHub Actions.

Cloudflare Workers vs Cloud Run for containerized apps?▼

Choose Cloudflare Workers for sub-50ms global latency on lightweight serverless functions. Choose Cloud Run or GKE for containerized workloads needing full Docker images, longer runtimes, or enterprise Kubernetes orchestration.

How do I optimize a Dockerfile for production?▼

Use multi-stage builds to exclude build tools, run as a non-root user, pin specific base image versions, and copy dependency files before source code for layer caching. The docker_optimize.py script analyzes Dockerfiles for these issues automatically.

Does this skill support Kubernetes troubleshooting?▼

Yes, the references include kubectl debugging workflows, Helm chart management, RBAC and secrets security guides, and GitOps workflows with Argo CD and Flux for cluster management and incident diagnosis.