一键导入
docker-patterns
Use when editing Dockerfiles, Docker Compose files, container build contexts, .dockerignore files, or container security and caching patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when editing Dockerfiles, Docker Compose files, container build contexts, .dockerignore files, or container security and caching patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up or bootstrap a project with the claude-code-config tooling — setup-project.sh, install-tooling.sh, the layered hooks setup, and the new-repo runbook. Use when installing this config into a repo, running the setup scripts, vendoring the make-check tooling, or bootstrapping a new project.
Create a new "Later" backlog item (Learn / Research / Do / Read) from a configurable template.
Install or update the shared MkDocs Material style layer (Ink & Indigo on warm paper) in the current project.
Prepare technical analysis for backlog refinement meetings.
Capture a quick status update and append it to today's daily log.
Prepare end-of-week review notes summarizing the full week's work activity across all sources (Git, GitHub, Jira).
| name | docker-patterns |
| description | Use when editing Dockerfiles, Docker Compose files, container build contexts, .dockerignore files, or container security and caching patterns. |
FROM node:20 AS builderslim or alpine base images)package.json, requirements.txt) before source codeRUN commands with && to reduce layers.dockerignore to exclude unnecessary files from build context.git, node_modules, __pycache__, .env, *.log.gitignore patterns plus build artifactsUSER nonroot or create a dedicated userpython:3.12-slim not python:latestdocker scout or trivyCOPY instead of ADD unless you need tar extractionHEALTHCHECK in production Dockerfiles/healthz) that check actual dependenciesdepends_on with health check conditions.env files for environment configurationmem_limit, cpus) for productionprofiles to group services by environment (dev, test, prod)