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

@@ -6,7 +6,7 @@ read_when:
---
# Plugin agent tools
Moltbot plugins can register **agent tools** (JSONschema functions) that are exposed
OpenClaw plugins can register **agent tools** (JSONschema functions) that are exposed
to the LLM during agent runs. Tools can be **required** (always available) or
**optional** (optin).

View File

@@ -1,13 +1,13 @@
---
summary: "Plugin manifest + JSON schema requirements (strict config validation)"
read_when:
- You are building a Moltbot plugin
- You are building a OpenClaw plugin
- You need to ship a plugin config schema or debug plugin validation errors
---
# Plugin manifest (moltbot.plugin.json)
# Plugin manifest (openclaw.plugin.json)
Every plugin **must** ship a `moltbot.plugin.json` file in the **plugin root**.
Moltbot uses this manifest to validate configuration **without executing plugin
Every plugin **must** ship a `openclaw.plugin.json` file in the **plugin root**.
OpenClaw uses this manifest to validate configuration **without executing plugin
code**. Missing or invalid manifests are treated as plugin errors and block
config validation.

View File

@@ -1,13 +1,13 @@
---
summary: "Voice Call plugin: outbound + inbound calls via Twilio/Telnyx/Plivo (plugin install + config + CLI)"
read_when:
- You want to place an outbound voice call from Moltbot
- You want to place an outbound voice call from OpenClaw
- You are configuring or developing the voice-call plugin
---
# Voice Call (plugin)
Voice calls for Moltbot via a plugin. Supports outbound notifications and
Voice calls for OpenClaw via a plugin. Supports outbound notifications and
multi-turn conversations with inbound policies.
Current providers:
@@ -20,7 +20,7 @@ Quick mental model:
- Install plugin
- Restart Gateway
- Configure under `plugins.entries.voice-call.config`
- Use `moltbot voicecall ...` or the `voice_call` tool
- Use `openclaw voicecall ...` or the `voice_call` tool
## Where it runs (local vs remote)
@@ -33,7 +33,7 @@ If you use a remote Gateway, install/configure the plugin on the **machine runni
### Option A: install from npm (recommended)
```bash
moltbot plugins install @moltbot/voice-call
openclaw plugins install @openclaw/voice-call
```
Restart the Gateway afterwards.
@@ -41,7 +41,7 @@ Restart the Gateway afterwards.
### Option B: install from a local folder (dev, no copying)
```bash
moltbot plugins install ./extensions/voice-call
openclaw plugins install ./extensions/voice-call
cd ./extensions/voice-call && pnpm install
```
@@ -208,13 +208,13 @@ Auto-responses use the agent system. Tune with:
## CLI
```bash
moltbot voicecall call --to "+15555550123" --message "Hello from Moltbot"
moltbot voicecall continue --call-id <id> --message "Any questions?"
moltbot voicecall speak --call-id <id> --message "One moment"
moltbot voicecall end --call-id <id>
moltbot voicecall status --call-id <id>
moltbot voicecall tail
moltbot voicecall expose --mode funnel
openclaw voicecall call --to "+15555550123" --message "Hello from OpenClaw"
openclaw voicecall continue --call-id <id> --message "Any questions?"
openclaw voicecall speak --call-id <id> --message "One moment"
openclaw voicecall end --call-id <id>
openclaw voicecall status --call-id <id>
openclaw voicecall tail
openclaw voicecall expose --mode funnel
```
## Agent tool

View File

@@ -1,13 +1,13 @@
---
summary: "Zalo Personal plugin: QR login + messaging via zca-cli (plugin install + channel config + CLI + tool)"
read_when:
- You want Zalo Personal (unofficial) support in Moltbot
- You want Zalo Personal (unofficial) support in OpenClaw
- You are configuring or developing the zalouser plugin
---
# Zalo Personal (plugin)
Zalo Personal support for Moltbot via a plugin, using `zca-cli` to automate a normal Zalo user account.
Zalo Personal support for OpenClaw via a plugin, using `zca-cli` to automate a normal Zalo user account.
> **Warning:** Unofficial automation may lead to account suspension/ban. Use at your own risk.
@@ -24,7 +24,7 @@ If you use a remote Gateway, install/configure it on the **machine running the G
### Option A: install from npm
```bash
moltbot plugins install @moltbot/zalouser
openclaw plugins install @openclaw/zalouser
```
Restart the Gateway afterwards.
@@ -32,7 +32,7 @@ Restart the Gateway afterwards.
### Option B: install from a local folder (dev)
```bash
moltbot plugins install ./extensions/zalouser
openclaw plugins install ./extensions/zalouser
cd ./extensions/zalouser && pnpm install
```
@@ -62,11 +62,11 @@ Channel config lives under `channels.zalouser` (not `plugins.entries.*`):
## CLI
```bash
moltbot channels login --channel zalouser
moltbot channels logout --channel zalouser
moltbot channels status --probe
moltbot message send --channel zalouser --target <threadId> --message "Hello from Moltbot"
moltbot directory peers list --channel zalouser --query "name"
openclaw channels login --channel zalouser
openclaw channels logout --channel zalouser
openclaw channels status --probe
openclaw message send --channel zalouser --target <threadId> --message "Hello from OpenClaw"
openclaw directory peers list --channel zalouser --query "name"
```
## Agent tool