diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index 2d7f010e0..e14f066ca 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -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" } diff --git a/docs/channels/nextcloud-talk.md b/docs/channels/nextcloud-talk.md index fc6c5e5a2..44332172d 100644 --- a/docs/channels/nextcloud-talk.md +++ b/docs/channels/nextcloud-talk.md @@ -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 "" + ``` + + Equivalent explicit fields: + + ```bash + openclaw channels add --channel nextcloud-talk \ + --base-url https://cloud.example.com \ + --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: diff --git a/docs/channels/whatsapp.md b/docs/channels/whatsapp.md index a49c0f012..22034b1be 100644 --- a/docs/channels/whatsapp.md +++ b/docs/channels/whatsapp.md @@ -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 ```