messages.*for prefixes, queueing, inbound debounce, and group behavior.agents.defaults.*for block streaming, chunking, and silent-reply defaults.- Channel overrides (
channels.telegram.*,channels.whatsapp.*, etc.) for per-channel caps and streaming toggles.
Inbound dedupe
Channels can redeliver the same message after a reconnect. OpenClaw keeps an in-memory cache keyed by agent scope, channel route (channel + peer + account + thread), and message id, so a redelivered message does not trigger a second agent run. The cache entry expires after 20 minutes or once 5000 entries are tracked, whichever comes first.Inbound debouncing
Rapid consecutive text messages from the same sender can be batched into one agent turn viamessages.inbound. Debouncing is scoped per channel + conversation and uses the most recent message for reply threading/IDs.
- Debounce applies to text-only messages; media/attachments flush immediately.
- Control commands (stop/abort/status, etc.) bypass debouncing so they dispatch immediately.
- Disabled by default:
messages.inbound.debounceMshas no built-in default, so debouncing only activates once you set it (globally or per channel). - iMessage’s
coalesceSameSenderDmsopt-in is the one exception: it holds all same-sender DM text (commands included) long enough for Apple’s command+URL split-send to arrive as one turn. Group chats always dispatch instantly regardless of this setting.
Sessions and devices
Sessions are owned by the gateway, not by clients.- Direct chats collapse into the agent’s main session key.
- Groups/channels get their own session keys.
- The session store and transcripts live on the gateway host.
Prompt bodies and history context
Channel plugins populate several text fields on the inbound context, from most to least preferred:| Field | Purpose |
|---|---|
BodyForAgent | Model-facing text for the current turn. Falls back to CommandBody / RawBody / Body when unset. |
BodyForCommands | Clean text used for directive/command parsing. Falls back to CommandBody / RawBody / Body when unset. |
CommandBody | Legacy intermediate body; prefer BodyForCommands. |
RawBody | Deprecated alias for CommandBody. |
Body | Legacy prompt body; may include channel envelopes and history wrappers. |
[Chat messages since your last reply - for context][Current message - respond to this]
BodyForCommands (or the legacy CommandBody / RawBody) to the original message text and keep Body as the combined prompt.
History buffers are pending-only: they include group messages that did not trigger a run (for example, mention-gated messages) and exclude messages already in the session transcript. Structured history, reply, forwarded, and channel metadata render as untrusted user-role context blocks during prompt assembly.
Configure history size with messages.groupChat.historyLimit (global default) or per-channel overrides such as channels.slack.historyLimit and channels.telegram.accounts.<id>.historyLimit (set 0 to disable).
Tool result metadata
Tool resultcontent is the model-visible result; details is runtime metadata for UI rendering, diagnostics, media delivery, and plugins.
toolResult.detailsis stripped before provider replay and before compaction input.- Persisted session transcripts keep only bounded
details; oversized metadata is replaced with a compact summary markedpersistedDetailsTruncated: true. - Plugins and tools should put text the model must read in
content, not only indetails.
Queueing and followups
When a run is already active, inbound messages steer into it by default.messages.queue controls the mode:
| Mode | Behavior |
|---|---|
steer (default) | Inject the new prompt into the active run. |
followup | Run the message after the active run finishes. |
collect | Batch compatible messages into one later turn. |
interrupt | Abort the active run, then start the newest prompt. |
messages.queue.debounceMs is 500ms (applies to steer, followup, and collect batching alike), messages.queue.cap is 20 queued messages, and messages.queue.drop is summarize (old and new are also available). Configure per-channel overrides via messages.queue.byChannel and messages.queue.debounceMsByChannel.
Details: Command queue and Steering queue.
Channel run ownership
Channel plugins may preserve ordering, debounce input, and apply transport backpressure before a message enters the session queue. They should not impose a separate timeout around the agent turn itself. Once a message is routed to a session, the session, tool, and runtime lifecycle govern long-running work so all channels report and recover from slow turns consistently.Streaming, chunking, and batching
Block streaming sends partial replies as the model produces text blocks; chunking respects channel text limits and avoids splitting fenced code.agents.defaults.blockStreamingDefault(on|off, defaultoff)agents.defaults.blockStreamingBreak(text_end|message_end)agents.defaults.blockStreamingChunk(minChars|maxChars|breakPreference)agents.defaults.blockStreamingCoalesce(idle-based batching)agents.defaults.humanDelay(human-like pause between block replies)- Channel overrides:
*.blockStreamingand*.blockStreamingCoalesce(block streaming is off unless*.blockStreamingis explicitly set totrue, on every channel including Telegram).
Reasoning visibility and tokens
/reasoning on|off|streamcontrols visibility.- Reasoning content still counts toward token usage when the model produces it.
- Telegram supports streaming reasoning into a transient draft bubble that is deleted after final delivery; use
/reasoning onfor persistent reasoning output.
Prefixes, threading, and replies
- Outbound prefix cascade:
messages.responsePrefix,channels.<channel>.responsePrefix,channels.<channel>.accounts.<id>.responsePrefix. WhatsApp also haschannels.whatsapp.messagePrefixfor an inbound prefix. - Reply threading via
replyToModeand per-channel defaults.
Silent replies
The silent tokenNO_REPLY (case-insensitive, so no_reply also matches) means “do not deliver a user-visible reply.” When a turn also has pending tool media, such as generated TTS audio, OpenClaw strips the silent text but still delivers the media attachment.
Silence policy resolves by conversation type:
- Direct conversations never receive
NO_REPLYprompt guidance. If a direct run accidentally returns a bare silent token, OpenClaw suppresses it instead of rewriting or delivering it. - Groups/channels allow silence by default. In
message_toolvisible-reply mode, silence means the model does not callmessage(action=send). - Internal orchestration allows silence by default.
agents.defaults.silentReply; surfaces.<id>.silentReply can override group/internal policy per surface.
OpenClaw also uses silent replies for generic internal runner failures in non-direct chats, so groups/channels do not see gateway error boilerplate. Classified failures with user-facing recovery copy, such as missing auth, rate-limit, or overload notices, can still be delivered. Direct chats show compact failure copy by default; raw runner details show only when /verbose full is enabled.
Bare silent replies are dropped on all surfaces, so parent sessions stay quiet instead of rewriting sentinel text into fallback chatter.
Related
- Message lifecycle refactor - target durable send and receive design
- Streaming - real-time message delivery
- Retry - message delivery retry behavior
- Queue - message processing queue
- Channels - messaging platform integrations