沙箱 CLI
沙箱 CLI
Section titled “沙箱 CLI”管理基于 Docker 的沙箱容器,用于隔离智能体执行。
CoderClaw 可以在隔离的 Docker 容器中运行智能体以确保安全。sandbox 命令帮助你管理这些容器,特别是在更新或配置更改后。
coderclaw sandbox explain
Section titled “coderclaw sandbox explain”检查生效的沙箱模式/作用域/工作区访问权限、沙箱工具策略和提权门控(附带修复配置的键路径)。
coderclaw sandbox explaincoderclaw sandbox explain --session agent:main:maincoderclaw sandbox explain --agent workcoderclaw sandbox explain --jsoncoderclaw sandbox list
Section titled “coderclaw sandbox list”列出所有沙箱容器及其状态和配置。
coderclaw sandbox listcoderclaw sandbox list --browser # List only browser containerscoderclaw sandbox list --json # JSON output输出包括:
- 容器名称和状态(运行中/已停止)
- Docker 镜像及其是否与配置匹配
- 创建时间
- 空闲时间(自上次使用以来的时间)
- 关联的会话/智能体
coderclaw sandbox recreate
Section titled “coderclaw sandbox recreate”移除沙箱容器以强制使用更新的镜像/配置重新创建。
coderclaw sandbox recreate --all # Recreate all containerscoderclaw sandbox recreate --session main # Specific sessioncoderclaw sandbox recreate --agent mybot # Specific agentcoderclaw sandbox recreate --browser # Only browser containerscoderclaw sandbox recreate --all --force # Skip confirmation选项:
--all:重新创建所有沙箱容器--session <key>:重新创建特定会话的容器--agent <id>:重新创建特定智能体的容器--browser:仅重新创建浏览器容器--force:跳过确认提示
重要: 容器会在智能体下次使用时自动重新创建。
更新 Docker 镜像后
Section titled “更新 Docker 镜像后”# Pull new imagedocker pull coderclaw-sandbox:latestdocker tag coderclaw-sandbox:latest coderclaw-sandbox:bookworm-slim
# Update config to use new image# Edit config: agents.defaults.sandbox.docker.image (or agents.list[].sandbox.docker.image)
# Recreate containerscoderclaw sandbox recreate --all更改沙箱配置后
Section titled “更改沙箱配置后”# Edit config: agents.defaults.sandbox.* (or agents.list[].sandbox.*)
# Recreate to apply new configcoderclaw sandbox recreate --all更改 setupCommand 后
Section titled “更改 setupCommand 后”coderclaw sandbox recreate --all# or just one agent:coderclaw sandbox recreate --agent family仅针对特定智能体
Section titled “仅针对特定智能体”# Update only one agent's containerscoderclaw sandbox recreate --agent alfred为什么需要这个?
Section titled “为什么需要这个?”问题: 当你更新沙箱 Docker 镜像或配置时:
- 现有容器继续使用旧设置运行
- 容器仅在空闲 24 小时后才被清理
- 经常使用的智能体会无限期保持旧容器运行
解决方案: 使用 coderclaw sandbox recreate 强制移除旧容器。它们会在下次需要时自动使用当前设置重新创建。
提示:优先使用 coderclaw sandbox recreate 而不是手动 docker rm。它使用 Gateway 网关的容器命名规则,避免在作用域/会话键更改时出现不匹配。
沙箱设置位于 ~/.coderclaw/coderclaw.json 的 agents.defaults.sandbox 下(每个智能体的覆盖设置在 agents.list[].sandbox 中):
{ "agents": { "defaults": { "sandbox": { "mode": "all", // off, non-main, all "scope": "agent", // session, agent, shared "docker": { "image": "coderclaw-sandbox:bookworm-slim", "containerPrefix": "coderclaw-sbx-", // ... more Docker options }, "prune": { "idleHours": 24, // Auto-prune after 24h idle "maxAgeDays": 7, // Auto-prune after 7 days }, }, }, },}