mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-28 06:31:11 +00:00
docs(channels,nodes): add Related sections to pages missing them
This commit is contained in:
parent
ba55448163
commit
d71518b1eb
15 changed files with 91 additions and 0 deletions
|
|
@ -438,3 +438,9 @@ Planned features:
|
|||
- [Multi-Agent Configuration](/tools/multi-agent-sandbox-tools)
|
||||
- [Routing Configuration](/channels/channel-routing)
|
||||
- [Session Management](/concepts/session)
|
||||
|
||||
## Related
|
||||
|
||||
- [Groups](/channels/groups)
|
||||
- [Channel routing](/channels/channel-routing)
|
||||
- [Pairing](/channels/pairing)
|
||||
|
|
|
|||
|
|
@ -141,3 +141,9 @@ Inbound replies include:
|
|||
- Quoted context is appended to `Body` as a `[Replying to ...]` block.
|
||||
|
||||
This is consistent across channels.
|
||||
|
||||
## Related
|
||||
|
||||
- [Groups](/channels/groups)
|
||||
- [Broadcast groups](/channels/broadcast-groups)
|
||||
- [Pairing](/channels/pairing)
|
||||
|
|
|
|||
|
|
@ -82,3 +82,9 @@ Only the owner number (from `channels.whatsapp.allowFrom`, or the bot’s own E.
|
|||
- Echo suppression uses the combined batch string; if you send identical text twice without mentions, only the first will get a response.
|
||||
- Session store entries will appear as `agent:<agentId>:whatsapp:group:<jid>` in the session store (`~/.openclaw/agents/<agentId>/sessions/sessions.json` by default); a missing entry just means the group hasn’t triggered a run yet.
|
||||
- Typing indicators in groups follow `agents.defaults.typingMode` (default: `message` when unmentioned).
|
||||
|
||||
## Related
|
||||
|
||||
- [Groups](/channels/groups)
|
||||
- [Channel routing](/channels/channel-routing)
|
||||
- [Broadcast groups](/channels/broadcast-groups)
|
||||
|
|
|
|||
|
|
@ -413,3 +413,10 @@ See [WhatsApp](/channels/whatsapp#system-prompts) for the canonical WhatsApp sys
|
|||
## WhatsApp specifics
|
||||
|
||||
See [Group messages](/channels/group-messages) for WhatsApp-only behavior (history injection, mention handling details).
|
||||
|
||||
## Related
|
||||
|
||||
- [Group messages](/channels/group-messages)
|
||||
- [Broadcast groups](/channels/broadcast-groups)
|
||||
- [Channel routing](/channels/channel-routing)
|
||||
- [Pairing](/channels/pairing)
|
||||
|
|
|
|||
|
|
@ -63,3 +63,9 @@ The prompt renderer treats `LocationName`, `LocationAddress`, and `LocationCapti
|
|||
- **Telegram**: venues map to `LocationName/LocationAddress`; live locations use `live_period`.
|
||||
- **WhatsApp**: `locationMessage.comment` and `liveLocationMessage.caption` populate `LocationCaption`.
|
||||
- **Matrix**: `geo_uri` is parsed as a pin location; altitude is ignored and `LocationIsLive` is always false.
|
||||
|
||||
## Related
|
||||
|
||||
- [Location command (nodes)](/nodes/location-command)
|
||||
- [Camera capture](/nodes/camera)
|
||||
- [Media understanding](/nodes/media-understanding)
|
||||
|
|
|
|||
|
|
@ -104,3 +104,9 @@ Follow-up work will add:
|
|||
- provider/model matrix execution
|
||||
- richer scenario discovery
|
||||
- OpenClaw-native orchestration later
|
||||
|
||||
## Related
|
||||
|
||||
- [Pairing](/channels/pairing)
|
||||
- [Groups](/channels/groups)
|
||||
- [Channels overview](/channels)
|
||||
|
|
|
|||
|
|
@ -209,3 +209,9 @@ Approval prompts generated by the bot itself (for example, "allow this action?"
|
|||
- **Proactive messages not arriving:** QQ may intercept bot-initiated messages if
|
||||
the user hasn't interacted recently.
|
||||
- **Voice not transcribed:** ensure STT is configured and the provider is reachable.
|
||||
|
||||
## Related
|
||||
|
||||
- [Pairing](/channels/pairing)
|
||||
- [Groups](/channels/groups)
|
||||
- [Channel troubleshooting](/channels/troubleshooting)
|
||||
|
|
|
|||
|
|
@ -131,3 +131,9 @@ Full troubleshooting: [QQ Bot troubleshooting](/channels/qqbot#troubleshooting)
|
|||
| Cross-signing/bootstrap looks wrong | `openclaw matrix verify bootstrap` | Repair secret storage, cross-signing, and backup state in one pass. |
|
||||
|
||||
Full setup and config: [Matrix](/channels/matrix)
|
||||
|
||||
## Related
|
||||
|
||||
- [Pairing](/channels/pairing)
|
||||
- [Channel routing](/channels/channel-routing)
|
||||
- [Gateway troubleshooting](/gateway/troubleshooting)
|
||||
|
|
|
|||
|
|
@ -189,3 +189,9 @@ When `requireMention: true` is set for a group chat, OpenClaw now transcribes au
|
|||
- For `parakeet-mlx`, if you pass `--output-dir`, OpenClaw reads `<output-dir>/<media-basename>.txt` when `--output-format` is `txt` (or omitted); non-`txt` output formats fall back to stdout parsing.
|
||||
- Keep timeouts reasonable (`timeoutSeconds`, default 60s) to avoid blocking the reply queue.
|
||||
- Preflight transcription only processes the **first** audio attachment for mention detection. Additional audio is processed during the main media understanding phase.
|
||||
|
||||
## Related
|
||||
|
||||
- [Media understanding](/nodes/media-understanding)
|
||||
- [Talk mode](/nodes/talk)
|
||||
- [Voice wake](/nodes/voicewake)
|
||||
|
|
|
|||
|
|
@ -160,3 +160,9 @@ openclaw nodes screen record --node <id> --duration 10s --fps 15 # prints MEDI
|
|||
Notes:
|
||||
|
||||
- Requires macOS **Screen Recording** permission (TCC).
|
||||
|
||||
## Related
|
||||
|
||||
- [Image and media support](/nodes/images)
|
||||
- [Media understanding](/nodes/media-understanding)
|
||||
- [Location command](/nodes/location-command)
|
||||
|
|
|
|||
|
|
@ -71,3 +71,9 @@ The WhatsApp channel runs via **Baileys Web**. This document captures the curren
|
|||
- Cover send + reply flows for image/audio/document cases.
|
||||
- Validate recompression for images (size bound) and voice-note flag for audio.
|
||||
- Ensure multi-media replies fan out as sequential sends.
|
||||
|
||||
## Related
|
||||
|
||||
- [Camera capture](/nodes/camera)
|
||||
- [Media understanding](/nodes/media-understanding)
|
||||
- [Audio and voice notes](/nodes/audio)
|
||||
|
|
|
|||
|
|
@ -96,3 +96,9 @@ Errors (stable codes):
|
|||
- Off: “Location sharing is disabled.”
|
||||
- While Using: “Only when OpenClaw is open.”
|
||||
- Precise: “Use precise GPS location. Toggle off to share approximate location.”
|
||||
|
||||
## Related
|
||||
|
||||
- [Channel location parsing](/channels/location)
|
||||
- [Camera capture](/nodes/camera)
|
||||
- [Talk mode](/nodes/talk)
|
||||
|
|
|
|||
|
|
@ -88,3 +88,9 @@ Defaults:
|
|||
- `stability` for `eleven_v3` is validated to `0.0`, `0.5`, or `1.0`; other models accept `0..1`.
|
||||
- `latency_tier` is validated to `0..4` when set.
|
||||
- Android supports `pcm_16000`, `pcm_22050`, `pcm_24000`, and `pcm_44100` output formats for low-latency AudioTrack streaming.
|
||||
|
||||
## Related
|
||||
|
||||
- [Voice wake](/nodes/voicewake)
|
||||
- [Audio and voice notes](/nodes/audio)
|
||||
- [Media understanding](/nodes/media-understanding)
|
||||
|
|
|
|||
|
|
@ -119,3 +119,9 @@ Related:
|
|||
- [/nodes/location-command](/nodes/location-command)
|
||||
- [/tools/exec-approvals](/tools/exec-approvals)
|
||||
- [/gateway/pairing](/gateway/pairing)
|
||||
|
||||
## Related
|
||||
|
||||
- [Nodes overview](/nodes)
|
||||
- [Gateway troubleshooting](/gateway/troubleshooting)
|
||||
- [Channel troubleshooting](/channels/troubleshooting)
|
||||
|
|
|
|||
|
|
@ -64,3 +64,9 @@ Who receives it:
|
|||
|
||||
- Voice Wake is currently disabled in Android runtime/Settings.
|
||||
- Android voice uses manual mic capture in the Voice tab instead of wake-word triggers.
|
||||
|
||||
## Related
|
||||
|
||||
- [Talk mode](/nodes/talk)
|
||||
- [Audio and voice notes](/nodes/audio)
|
||||
- [Media understanding](/nodes/media-understanding)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue