From claude-container
This skill should be used when the user asks to "run claude in docker", "container", "컨테이너", "docker claude", "sandbox", "샌드박스", "격리 실행", "claude container", "devcontainer", or wants to run Claude Code inside a Docker container for safe isolated execution.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-container:claude-containerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A manager for safely running Claude Code inside Docker containers.
A manager for safely running Claude Code inside Docker containers.
Handles .devcontainer generation, image building, and container management all through a single script (claude.py).
Script path: ${pluginDir}/scripts/claude.py
Execute the appropriate command via the Bash tool based on the user's request.
# Start a Claude container in the current project
python3 ${pluginDir}/scripts/claude.py run .
# Run with a specific project path
python3 ${pluginDir}/scripts/claude.py run ~/my-project
# Open a zsh shell (without starting Claude)
python3 ${pluginDir}/scripts/claude.py run -s
# List running containers
python3 ${pluginDir}/scripts/claude.py list
# Attach a shell to a container
python3 ${pluginDir}/scripts/claude.py shell [name]
# Stop a container
python3 ${pluginDir}/scripts/claude.py stop [name]
# Stop all containers
python3 ${pluginDir}/scripts/claude.py stopall
# Remove a container + volume
python3 ${pluginDir}/scripts/claude.py rm <name>
# Full cleanup (containers + volumes + images)
python3 ${pluginDir}/scripts/claude.py clean
# Build image only
python3 ${pluginDir}/scripts/claude.py build
# Push to registry (requires CLAUDE_IMAGE env var)
python3 ${pluginDir}/scripts/claude.py push
# Pull from registry
python3 ${pluginDir}/scripts/claude.py pull
{folder-name}-{path-hash-5-chars} format (e.g., imoogi-a3f1c)ANTHROPIC_API_KEY: Claude API key (can be used instead of OAuth)CLAUDE_IMAGE: Custom image name (registry path for team sharing)docker --version)--dangerously-skip-permissions mode (safe due to container isolation)npx claudepluginhub karohani/claude-code-imoogi --plugin claude-containerSets up and launches a Docker devcontainer running Claude Code with --dangerously-skip-permissions for autonomous sandboxed coding without prompts. Triggers on 'yolo' or 'autonomous mode'.
Packages Claude Code as an OCI image via mise and deploys it as a kubernetes-sigs/agent-sandbox SandboxTemplate workload, with session persistence and egress allowlisting.
Expert in using Claude Code CLI for advanced configuration, hooks, MCPs, CLAUDE.md, workflows, sub-agents, and permissions to maximize productivity.