在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用new-image
星标7
分支3
更新时间2026年6月23日 21:21
Create a new Docker image for a bioinformatics tool
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create a new Docker image for a bioinformatics tool
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Identify and remediate CVEs in WILDS Docker images
Draft a pull request description using the project's PR template
Update an existing WILDS Docker image to a new version
| name | new-image |
| description | Create a new Docker image for a bioinformatics tool |
| argument-hint | <tool-name> |
| allowed-tools | Bash, Read, Glob, Grep, WebSearch, WebFetch |
Scaffold and build a new WILDS Docker image for an open-source bioinformatics tool.
Before writing any files, research the tool to understand:
ubuntu:24.04, condaforge/miniforge3, bioconductor/bioconductor_docker, python:3.x-slim, etc.)template/Dockerfile_template first as the formatting referenceDockerfile_latest following ALL Dockerfile requirements from AGENTS.md:
SHELL ["/bin/bash", "-o", "pipefail", "-c"]apt-cache policyRUN command verifying the install (e.g., tool --version)rm -rf /var/lib/apt/lists/*, mamba clean -afy, remove tarballs, etc.)Dockerfile_X.Y.Z for the specific version (may be identical to latest)template/README.md first as the formatting referenceRun make lint IMAGE=<toolname> to check for hadolint issues. Fix any warnings or errors before proceeding.
Run make build_amd64 IMAGE=<toolname> to verify the image builds successfully. Diagnose and fix any failures, then re-run until it passes.
After all steps pass, report: