一键导入
container-operations
Use when working with Docker — building images, writing Dockerfiles, debugging container issues
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when working with Docker — building images, writing Dockerfiles, debugging container issues
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use before any DevOps build, change, or new feature — refine requirements through dialogue before touching infrastructure or code
Use to execute a written implementation plan via subagents with review checkpoints
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Use when working with Kubernetes or Helm — authoring, reviewing, hardening, or debugging manifests, Deployments, Services, Ingress, RBAC, NetworkPolicy, or cluster operations
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
| name | container-operations |
| description | Use when working with Docker — building images, writing Dockerfiles, debugging container issues |
tooling/containers/dockerfiles/. Scaffold Dockerfiles.kubectl output. Provide inline guidance.docker build -t myapp:1.0.0 .
docker build --no-cache -t myapp:1.0.0 . # force fresh build
Best practices:
latest in production.dockerignore to exclude node_modules, .git, .envdocker logs <container> # view logs
docker logs <container> --follow # tail logs
docker exec -it <container> sh # shell into running container
docker inspect <container> # full config and state
docker stats # live resource usage
kubernetes skillKubernetes manifests, Helm charts, RBAC, NetworkPolicy, security hardening, and cluster debugging now live in the dedicated kubernetes skill. Invoke it for any K8s or Helm work.
tooling/containers/dockerfiles/ — base Dockerfiles by runtime