chore(sync): mirror docs from openclaw/openclaw@b588b5a230

This commit is contained in:
openclaw-docs-sync[bot] 2026-04-24 06:23:01 +00:00
parent 4909d7cb21
commit ce0429a4cc
3 changed files with 34 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "openclaw/openclaw",
"sha": "bcea5e75ebc7485d51655f43acdea9e5d368080f",
"syncedAt": "2026-04-24T06:11:53.083Z"
"sha": "b588b5a2300794745900977d8bf5059898eb092c",
"syncedAt": "2026-04-24T06:21:36.040Z"
}

View File

@ -44,6 +44,31 @@ Details: [Plugins](/tools/plugin)
4. Configure OpenClaw:
- Config: `channels.nextcloud-talk.baseUrl` + `channels.nextcloud-talk.botSecret`
- Or env: `NEXTCLOUD_TALK_BOT_SECRET` (default account only)
CLI setup:
```bash
openclaw channels add --channel nextcloud-talk \
--url https://cloud.example.com \
--token "<shared-secret>"
```
Equivalent explicit fields:
```bash
openclaw channels add --channel nextcloud-talk \
--base-url https://cloud.example.com \
--secret "<shared-secret>"
```
File-backed secret:
```bash
openclaw channels add --channel nextcloud-talk \
--base-url https://cloud.example.com \
--secret-file /path/to/nextcloud-talk-secret
```
5. Restart the gateway (or finish setup).
Minimal config:

View File

@ -64,6 +64,13 @@ openclaw channels login --channel whatsapp
```bash
openclaw channels login --channel whatsapp --account work
```
To attach an existing/custom WhatsApp Web auth directory before login:
```bash
openclaw channels add --channel whatsapp --account work --auth-dir /path/to/wa-auth
openclaw channels login --channel whatsapp --account work
```
</Step>