Agent skill · DevOps & Cloud

docker-env-manager

Use this skill whenever the user wants to pull, run, build, compose, list, prune, manage, or otherwise handle Docker containers, images, volumes, networks, or Docker Compose projects, or when a NeuroClaw skill (e.g. wmh-segmentation, freesurfer-processor in container mode) requires a clean, isolated, GPU-enabled Docker environment (e.g. 'pull mars-wmh image', 'run container with GPU', 'docker compose up', 'prune unused images', 'build custom dockerfile', 'manage nvidia docker'). Triggers include: 'docker run', 'docker pull', 'docker compose', 'docker build', 'docker env', 'manage container', '

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill docker-env-manager --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Requires: - claw-shell - dependency-planner
Path: skills/neuroclaw/docker-env-manager/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Docker Environment Manager (Tool Layer) ## Overview Docker is the backbone for reproducible, containerized, GPU-accelerated environments in NeuroClaw — especially for deep-learning and neuroimaging skills (MARS-WMH nnU-Net, future nnU-Net models, containerized FreeSurfer, etc.) that require exact runtime isolation, NVIDIA GPU passthrough, and large pre-built images. This skill acts as the **interface-layer orchestrator** for all common Docker operations, preventing permission issues, GPU misconfiguration, port conflicts, and storage bloat while enforcing best practices (named containers, volume mounts, `--gpus all`, docker-compose for multi-service stacks, dry-run previews, and safe pruning). **Strict workflow (never skipped):** 1. Parse user intent from the request or context (pull / run / build / compose / prune / list / cleanup). 2. Detect current Docker setup (`docker --version`, `docker info`, NVIDIA Container Toolkit via `nvidia-smi` through `claw-shell`, available disk space, GPU status). 3. Propose a safe, best-practice plan: - Always prefer named containers/volumes over anonymous ones - Suggest `--gpus all` + volume mounts for NeuroClaw GPU skills - Recommend `docker-com

What's inside
Steps it walks through
  1. Overview
  2. Quick Reference (Common NeuroClaw Tasks)
  3. Installation
  4. NeuroClaw recommended wrapper script
  5. Harness-Aware Container Isolation & Security Standards
  6. Container Specification Format (Declarative Registry)
  7. Container Execution Protocol
  8. Data Privacy & Isolation Guardrails
  9. Container Reproducibility & Layer Verification
  10. Checkpoint & Resume with Container State
  11. Important Notes & Limitations
  12. When to Call This Skill
  13. Complementary / Related Skills
  14. Reference
Commands it runs
Place files in: skills/docker-env-manager/
Update SOUL.md and/or USER.md with trigger phrases
Verify image integrity
docker inspect ${image_hash} --format='{{.RepoDigests}}'
Check for vulnerabilities (if vulnerability scanner available)
trivy image --severity HIGH,CRITICAL ${image}
Verify GPU access
nvidia-smi -L  # List all GPUs
Pre-flight resource check
docker stats --no-stream ${existing_container_name} || true
More from awesome-bio-agent-skills
All skills →
About this skill
What does the docker-env-manager skill do?

Use this skill whenever the user wants to pull, run, build, compose, list, prune, manage, or otherwise handle Docker containers, images, volumes, networks, or Docker Compose projects, or when a NeuroClaw skill (e.g. wmh-segmentation, freesurfer-processor in container mode) requires a clean, isolated, GPU-enabled Docker environment (e.g. 'pull mars-wmh image', 'run container with GPU', 'docker compose up', 'prune unused images', 'build custom dockerfile', 'manage nvidia docker'). Triggers include: 'docker run', 'docker pull', 'docker compose', 'docker build', 'docker env', 'manage container', '

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill docker-env-manager --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going