CloudDrove Claude Skills
A curated collection of DevOps skills for Claude Code — the CLI tool by Anthropic. These skills extend Claude with deep domain knowledge for Kubernetes, Terraform, AWS, and other infrastructure tools.
What are Skills?
Skills are structured knowledge packs that Claude Code loads on demand. When you ask Claude a Kubernetes question, the k8s skill automatically activates — giving Claude access to troubleshooting workflows, manifest patterns, Helm guides, security references, and diagnostic scripts without you having to provide any context.
Available Plugins
| Plugin | Description | Status |
|---|
| k8s-skills | Kubernetes operations, troubleshooting, and platform engineering | :white_check_mark: Available |
| docker-skills | Docker — Dockerfile, Compose, registry, image optimization | :white_check_mark: Available |
| terraform-skills | Terraform modules, state management, and IaC patterns | :construction: Planned |
| aws-skills | AWS services, architecture, and operations | :construction: Planned |
Quick Start
Prerequisites
Installation
# 1. Add the CloudDrove marketplace (one-time)
/plugin marketplace add clouddrove/claude-skills
# 2. Install the plugins you need
/plugin install k8s-skills@clouddrove-claude-skills
Usage
Skills trigger automatically based on context. Just ask naturally:
> My pod is stuck in CrashLoopBackOff, how do I debug it?
> Write a production-ready Deployment with HPA and PDB
> Which apps are failing in production?
> Compare resource usage between staging and production
> Is everything healthy in the cluster?
Or use slash commands for direct access:
/k8s-skills:k8s-health # Cluster health check
/k8s-skills:k8s-health production # Namespace health check
/k8s-skills:k8s-debug my-pod production # Debug a specific pod
/k8s-skills:k8s-deploy rollback myapp production # Rollback a deployment
k8s-skills
The Kubernetes skill covers both day-to-day operations and platform engineering:
| Area | What's Included |
|---|
| Troubleshooting | Decision trees for CrashLoopBackOff, OOMKilled, ImagePullBackOff, Pending, networking, storage |
| Manifests | Production-ready YAML for Deployments, Services, Ingress, HPA, PDB, NetworkPolicy, and more |
| Helm | Chart management, values handling, Helmfile, chart authoring, testing |
| Security | RBAC patterns, Pod Security Standards, network policies, secrets management |
| Monitoring | Prometheus alerting rules, ServiceMonitor patterns, Grafana dashboards, USE/RED methods |
| GitOps | ArgoCD and Flux — Application CRDs, sync policies, app-of-apps, image automation, secrets |
| Commands | /k8s-health, /k8s-debug, /k8s-deploy — direct access slash commands |
| Scripts | diagnose.sh, cluster-health.sh, rbac-audit.sh, namespace-setup.sh |
| Examples | Complete Helm chart, multi-environment Helmfile (dev/staging/prod) |
Directory structure