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

View File

@@ -17,7 +17,7 @@ Broadcast Groups enable multiple agents to process and respond to the same messa
Current scope: **WhatsApp only** (web channel).
Broadcast groups are evaluated after channel allowlists and group activation rules. In WhatsApp groups, this means broadcasts happen when Moltbot would normally reply (for example: on mention, depending on your group settings).
Broadcast groups are evaluated after channel allowlists and group activation rules. In WhatsApp groups, this means broadcasts happen when OpenClaw would normally reply (for example: on mention, depending on your group settings).
## Use Cases
@@ -76,7 +76,7 @@ Add a top-level `broadcast` section (next to `bindings`). Keys are WhatsApp peer
}
```
**Result:** When Moltbot would reply in this chat, it will run all three agents.
**Result:** When OpenClaw would reply in this chat, it will run all three agents.
### Processing Strategy
@@ -179,7 +179,7 @@ In group `120363403215116621@g.us` with agents `["alfred", "baerbel"]`:
```
Session: agent:alfred:whatsapp:group:120363403215116621@g.us
History: [user message, alfred's previous responses]
Workspace: /Users/pascal/clawd-alfred/
Workspace: /Users/pascal/openclaw-alfred/
Tools: read, write, exec
```
@@ -187,7 +187,7 @@ Tools: read, write, exec
```
Session: agent:baerbel:whatsapp:group:120363403215116621@g.us
History: [user message, baerbel's previous responses]
Workspace: /Users/pascal/clawd-baerbel/
Workspace: /Users/pascal/openclaw-baerbel/
Tools: read only
```
@@ -296,7 +296,7 @@ Broadcast groups work alongside existing routing:
**Debug:**
```bash
tail -f ~/.clawdbot/logs/gateway.log | grep broadcast
tail -f ~/.openclaw/logs/gateway.log | grep broadcast
```
### Only One Agent Responding
@@ -368,7 +368,7 @@ tail -f ~/.clawdbot/logs/gateway.log | grep broadcast
### Config Schema
```typescript
interface MoltbotConfig {
interface OpenClawConfig {
broadcast?: {
strategy?: "parallel" | "sequential";
[peerId: string]: string[];