refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions
+15 -15
View File
@@ -24,14 +24,14 @@ when the container is created.
Auth is per-agent: each agent reads from its own `agentDir` auth store at:
```
~/.clawdbot/agents/<agentId>/agent/auth-profiles.json
~/.openclaw/agents/<agentId>/agent/auth-profiles.json
```
Credentials are **not** shared between agents. Never reuse `agentDir` across agents.
If you want to share creds, copy `auth-profiles.json` into the other agent's `agentDir`.
For how sandboxing behaves at runtime, see [Sandboxing](/gateway/sandboxing).
For debugging “why is this blocked?”, see [Sandbox vs Tool Policy vs Elevated](/gateway/sandbox-vs-tool-policy-vs-elevated) and `moltbot sandbox explain`.
For debugging “why is this blocked?”, see [Sandbox vs Tool Policy vs Elevated](/gateway/sandbox-vs-tool-policy-vs-elevated) and `openclaw sandbox explain`.
---
@@ -47,13 +47,13 @@ For debugging “why is this blocked?”, see [Sandbox vs Tool Policy vs Elevate
"id": "main",
"default": true,
"name": "Personal Assistant",
"workspace": "~/clawd",
"workspace": "~/.openclaw/workspace",
"sandbox": { "mode": "off" }
},
{
"id": "family",
"name": "Family Bot",
"workspace": "~/clawd-family",
"workspace": "~/.openclaw/workspace-family",
"sandbox": {
"mode": "all",
"scope": "agent"
@@ -95,12 +95,12 @@ For debugging “why is this blocked?”, see [Sandbox vs Tool Policy vs Elevate
"list": [
{
"id": "personal",
"workspace": "~/clawd-personal",
"workspace": "~/.openclaw/workspace-personal",
"sandbox": { "mode": "off" }
},
{
"id": "work",
"workspace": "~/clawd-work",
"workspace": "~/.openclaw/workspace-work",
"sandbox": {
"mode": "all",
"scope": "shared",
@@ -154,14 +154,14 @@ For debugging “why is this blocked?”, see [Sandbox vs Tool Policy vs Elevate
"list": [
{
"id": "main",
"workspace": "~/clawd",
"workspace": "~/.openclaw/workspace",
"sandbox": {
"mode": "off" // Override: main never sandboxed
}
},
{
"id": "public",
"workspace": "~/clawd-public",
"workspace": "~/.openclaw/workspace-public",
"sandbox": {
"mode": "all", // Override: public always sandboxed
"scope": "agent"
@@ -225,7 +225,7 @@ Tool policies (global, agent, sandbox) support `group:*` entries that expand to
- `group:automation`: `cron`, `gateway`
- `group:messaging`: `message`
- `group:nodes`: `nodes`
- `group:moltbot`: all built-in Moltbot tools (excludes provider plugins)
- `group:openclaw`: all built-in OpenClaw tools (excludes provider plugins)
### Elevated Mode
`tools.elevated` is the global baseline (sender-based allowlist). `agents.list[].tools.elevated` can further restrict elevated for specific agents (both must allow).
@@ -245,7 +245,7 @@ Mitigation patterns:
{
"agents": {
"defaults": {
"workspace": "~/clawd",
"workspace": "~/.openclaw/workspace",
"sandbox": {
"mode": "non-main"
}
@@ -270,7 +270,7 @@ Mitigation patterns:
{
"id": "main",
"default": true,
"workspace": "~/clawd",
"workspace": "~/.openclaw/workspace",
"sandbox": { "mode": "off" }
}
]
@@ -278,7 +278,7 @@ Mitigation patterns:
}
```
Legacy `agent.*` configs are migrated by `moltbot doctor`; prefer `agents.defaults` + `agents.list` going forward.
Legacy `agent.*` configs are migrated by `openclaw doctor`; prefer `agents.defaults` + `agents.list` going forward.
---
@@ -331,12 +331,12 @@ After configuring multi-agent sandbox and tools:
1. **Check agent resolution:**
```exec
moltbot agents list --bindings
openclaw agents list --bindings
```
2. **Verify sandbox containers:**
```exec
docker ps --filter "label=moltbot.sandbox=1"
docker ps --filter "name=openclaw-sbx-"
```
3. **Test tool restrictions:**
@@ -345,7 +345,7 @@ After configuring multi-agent sandbox and tools:
4. **Monitor logs:**
```exec
tail -f "${CLAWDBOT_STATE_DIR:-$HOME/.clawdbot}/logs/gateway.log" | grep -E "routing|sandbox|tools"
tail -f "${OPENCLAW_STATE_DIR:-$HOME/.openclaw}/logs/gateway.log" | grep -E "routing|sandbox|tools"
```
---