Docker and Kubernetes - containerization, orchestration, and production deployment.
Provides Docker and Kubernetes commands for building, running, and debugging containers. Use when you need to build images, deploy to clusters, or troubleshoot pod failures.
/plugin marketplace add pluginagentmarketplace/custom-plugin-devops/plugin install devops-automation-plugin@pluginagentmarketplace-devopsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
assets/container_config.yamlassets/dockerfile-templatereferences/CONTAINERS_GUIDE.mdreferences/K8S-CHEATSHEET.mdscripts/docker-cleanup.shscripts/docker_checker.pyMaster Docker and Kubernetes for production deployments.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| platform | string | No | both | docker/kubernetes |
| operation | string | Yes | - | Operation type |
# Docker
docker build -t app:v1 .
docker run -d -p 8080:80 --name app app:v1
docker logs -f container
docker exec -it container sh
docker system prune -af
# Docker Compose
docker compose up -d
docker compose logs -f
docker compose down -v
# Kubernetes
kubectl get pods -A
kubectl describe pod pod-name
kubectl logs -f pod-name
kubectl exec -it pod-name -- sh
kubectl apply -f manifest.yaml
kubectl rollout status deployment/app
kubectl rollout undo deployment/app
# Debugging
kubectl get events --sort-by='.lastTimestamp'
kubectl top pods
kubectl run debug --rm -it --image=busybox -- sh
# Helm
helm install release chart
helm upgrade release chart
helm rollback release 1
| Symptom | Root Cause | Solution |
|---|---|---|
| ImagePullBackOff | Image not found | Verify name, check creds |
| CrashLoopBackOff | Container crashing | Check logs, verify CMD |
| Pending | Cannot schedule | Check resources, selectors |
| OOMKilled | Out of memory | Increase limits |
kubectl get pods -o widekubectl describe podkubectl logs pod --previouskubectl top podskubectl logs pod --previouskubectl describe poddocker run -it image shThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.