devops

Deploy and manage infrastructure on Cloudflare, Docker, Google Cloud, and Kubernetes.

Updated Jun 10, 2026
One-click install
npx skills add https://github.com/eylulsenakumral/auto-company-clean --skill devops-eylulsenakumral
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: devops
Source: https://github.com/eylulsenakumral/auto-company-clean/tree/main/.claude/skills/devops
Command: npx skills add https://github.com/eylulsenakumral/auto-company-clean --skill devops-eylulsenakumral

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve? Managing deployments across multiple cloud 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, 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, 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 Dockerfile security and size analysis. - Use Case: Containerize a Node.js app with an optimized multi-stage Dockerfile, deploy it to Cloud Run via gcloud, and manage the surrounding Kubernetes cluster with Helm charts. ## Quick Start Ask the assistant to deploy your Cloudflare Worker to production or analyze your Dockerfile for optimization and security issues.

Frequently Asked Questions about 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 scaffold 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 preview support.

How do I choose between Cloudflare Workers, Cloud Run, and Kubernetes?▼

Choose Cloudflare Workers for sub-50ms global latency, Cloud Run for containerized workloads without cluster management, and GKE/Kubernetes for enterprise orchestration needs. The skill provides a decision matrix mapping requirements to platforms.

How can I reduce my Docker image size?▼

Use multi-stage builds to exclude build tools from the final image, pick Alpine base variants, and clean package caches in the same RUN layer. The docker_optimize.py script analyzes Dockerfiles and reports size and security issues automatically.

Does Cloudflare R2 work with existing S3 tooling?▼

Yes, R2 is S3-compatible and works with the AWS CLI, boto3, and the AWS SDK for JavaScript by pointing the endpoint to your account's r2.cloudflarestorage.com URL. It offers zero egress fees, making it attractive for large file storage.

What credentials are needed to use this skill?▼

You need a Cloudflare API token and account ID for Workers/R2/D1, a GCP service account key or gcloud authentication for Google Cloud, and optionally Docker registry credentials. The .env.example file documents all required environment variables.