CLI commands
沙箱命令列介面
管理用於隔離式代理程式執行的沙箱執行環境:Docker 容器、SSH 目標或 OpenShell 後端。
命令
openclaw sandbox list
列出沙箱執行環境及其狀態、後端、設定相符情形、存續時間、閒置時間,以及相關聯的工作階段/代理程式。
openclaw sandbox listopenclaw sandbox list --browser # browser containers onlyopenclaw sandbox list --jsonopenclaw sandbox recreate
移除沙箱執行環境,以強制使用目前設定重新建立。下次使用代理程式時,系統會自動重新建立執行環境。
openclaw sandbox recreate --allopenclaw sandbox recreate --agent mybot # includes agent:mybot:* sub-sessionsopenclaw sandbox recreate --session "agent:main:main"openclaw sandbox recreate --browser --all # only browser containersopenclaw sandbox recreate --all --force # skip confirmation選項:
--all:重新建立所有沙箱容器--session <key>:重新建立具有此確切範圍鍵的執行環境(如sandbox list所示);不展開簡短名稱--agent <id>:重新建立單一代理程式的執行環境(符合agent:<id>和agent:<id>:*)--browser:僅影響瀏覽器容器--force:略過確認提示
--all、--session 或 --agent 必須且只能傳入其中一個。
對於 ssh 和 OpenShell remote,重新建立比使用 Docker 時更為重要:初始植入後,遠端工作區即為標準來源;recreate 會刪除所選範圍的標準遠端工作區,而下一次執行會從目前的本機工作區重新植入。
openclaw sandbox explain
檢查實際生效的沙箱模式/範圍/工作區存取權、沙箱工具原則,以及提升權限工具的閘門(並附上修正用的設定鍵路徑)。
報告會保留 workspaceRoot 作為已設定的沙箱根目錄,並分別顯示實際生效的主機工作區、後端執行環境工作目錄及 Docker 掛載表。對於 workspaceAccess: "rw",實際生效的主機工作區是代理程式工作區,而不是 workspaceRoot 下方的目錄。
openclaw sandbox explainopenclaw sandbox explain --session agent:main:mainopenclaw sandbox explain --agent workopenclaw sandbox explain --json與 recreate --session 不同,此命令接受簡短工作階段名稱(例如 main),並會依據解析出的代理程式展開名稱。
為何需要重新建立
更新沙箱設定不會影響執行中的容器:現有執行環境會保留舊設定,而閒置執行環境只有在 prune.idleHours 後才會被清除(預設為 24h)。經常使用的代理程式可能讓過時的執行環境無限期存續。openclaw sandbox recreate 會移除舊執行環境,使其在下次使用時依目前設定重新建置。
常見觸發原因
| 變更 | 命令 |
|---|---|
Docker 映像更新(agents.defaults.sandbox.docker.image) |
openclaw sandbox recreate --all |
沙箱設定(agents.defaults.sandbox.*) |
openclaw sandbox recreate --all |
SSH 目標/驗證(agents.defaults.sandbox.ssh.{target,workspaceRoot,identityFile,certificateFile,knownHostsFile,identityData,certificateData,knownHostsData}) |
openclaw sandbox recreate --all |
OpenShell 來源/原則/模式(plugins.entries.openshell.config.{from,mode,policy}) |
openclaw sandbox recreate --all |
setupCommand |
openclaw sandbox recreate --all(或針對單一代理程式使用 --agent <id>) |
登錄資料移轉
沙箱執行環境的中繼資料儲存在共用的 SQLite 狀態資料庫中。較舊的安裝版本可能含有一般讀取作業不再重寫的舊版登錄檔案:
~/.openclaw/sandbox/containers.json~/.openclaw/sandbox/browsers.json~/.openclaw/sandbox/containers/或~/.openclaw/sandbox/browsers/下每個容器/瀏覽器各有一個 JSON 分片
執行 openclaw doctor --fix,將有效的舊版項目移轉至 SQLite。無效的舊版檔案會被隔離,避免損毀的舊登錄資料隱藏目前的執行環境項目。
設定
沙箱設定位於 ~/.openclaw/openclaw.json 的 agents.defaults.sandbox 下(每個代理程式的覆寫設定放在 agents.entries.*.sandbox 中):
{ "agents": { "defaults": { "sandbox": { "mode": "all", // off, non-main, all "backend": "docker", // docker, ssh, openshell (plugin-provided) "scope": "agent", // session, agent, shared "docker": { "image": "openclaw-sandbox:bookworm-slim", "containerPrefix": "openclaw-sbx-", // ... more Docker options }, "prune": { "idleHours": 24, // auto-prune after 24h idle "maxAgeDays": 7, // auto-prune after 7 days }, }, }, },}