惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
S
SegmentFault 最新的问题
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
雷峰网
雷峰网
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat: default queueing to steer · openclaw/openclaw@4a6e10e
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -1,7 +1,8 @@

11

---

2-

summary: "Command queue design that serializes inbound auto-reply runs"

2+

summary: "Auto-reply queue modes, defaults, and per-session overrides"

33

read_when:

44

- Changing auto-reply execution or concurrency

5+

- Explaining /queue modes or message steering behavior

56

title: "Command queue"

67

---

78

@@ -20,34 +21,42 @@ We serialize inbound auto-reply runs (all channels) through a tiny in-process qu

2021

- When verbose logging is enabled, queued runs emit a short notice if they waited more than ~2s before starting.

2122

- Typing indicators still fire immediately on enqueue (when supported by the channel) so user experience is unchanged while we wait our turn.

222323-

## Queue modes (per channel)

24+

## Defaults

25+26+

When unset, all inbound channel surfaces use:

27+28+

- `mode: "steer"`

29+

- `debounceMs: 500`

30+

- `cap: 20`

31+

- `drop: "summarize"`

32+33+

`steer` is the default because it keeps the active model turn responsive without

34+

starting a second session run. If the current run cannot accept steering,

35+

OpenClaw falls back to a followup queue entry.

36+37+

## Queue modes

24382539

Inbound messages can steer the current run, wait for a followup turn, or do both:

264027-

- `steer`: inject immediately into the current run (cancels pending tool calls after the next tool boundary). If not streaming, falls back to followup.

28-

- `followup`: enqueue for the next agent turn after the current run ends.

29-

- `collect`: coalesce all queued messages into a **single** followup turn (default). If messages target different channels/threads, they drain individually to preserve routing.

30-

- `steer-backlog` (aka `steer+backlog`): steer now **and** preserve the message for a followup turn.

41+

- `steer`: queue a steering message into the active Pi run. Pi delivers it **after the current assistant turn finishes executing its tool calls**, before the next LLM call. If the run is not actively streaming or steering is unavailable, OpenClaw falls back to a followup queue entry.

42+

- `followup`: enqueue each message for a later agent turn after the current run ends.

43+

- `collect`: coalesce queued messages into a **single** followup turn after the quiet window. If messages target different channels/threads, they drain individually to preserve routing.

44+

- `steer-backlog` (aka `steer+backlog`): steer now **and** preserve the same message for a followup turn.

3145

- `interrupt` (legacy): abort the active run for that session, then run the newest message.

3246

- `queue` (legacy alias): same as `steer`.

33473448

Steer-backlog means you can get a followup response after the steered run, so

3549

streaming surfaces can look like duplicates. Prefer `collect`/`steer` if you want

3650

one response per inbound message.

37-

Send `/queue collect` as a standalone command (per-session) or set `messages.queue.byChannel.discord: "collect"`.

38-39-

Defaults (when unset in config):

40-41-

- All surfaces → `collect`

42514352

Configure globally or per channel via `messages.queue`:

44534554

```json5

4655

{

4756

messages: {

4857

queue: {

49-

mode: "collect",

50-

debounceMs: 1000,

58+

mode: "steer",

59+

debounceMs: 500,

5160

cap: 20,

5261

drop: "summarize",

5362

byChannel: { discord: "collect" },

@@ -60,17 +69,33 @@ Configure globally or per channel via `messages.queue`:

60696170

Options apply to `followup`, `collect`, and `steer-backlog` (and to `steer` when it falls back to followup):

627163-

- `debounceMs`: wait for quiet before starting a followup turn (prevents “continue, continue”).

64-

- `cap`: max queued messages per session.

65-

- `drop`: overflow policy (`old`, `new`, `summarize`).

72+

- `debounceMs`: quiet window before draining queued followups. Bare numbers are milliseconds; units `ms`, `s`, `m`, `h`, and `d` are accepted by `/queue` options.

73+

- `cap`: max queued messages per session. Values below `1` are ignored.

74+

- `drop: "summarize"`: default. Drop the oldest queued entries as needed, keep compact summaries, and inject them as a synthetic followup prompt.

75+

- `drop: "old"`: drop the oldest queued entries as needed, without preserving summaries.

76+

- `drop: "new"`: reject the newest message when the queue is already full.

77+78+

Defaults: `debounceMs: 500`, `cap: 20`, `drop: summarize`.

79+80+

## Precedence

81+82+

For mode selection, OpenClaw resolves:

83+84+

1. Inline or stored per-session `/queue` override.

85+

2. `messages.queue.byChannel.<channel>`.

86+

3. `messages.queue.mode`.

87+

4. Default `steer`.

668867-

Summarize keeps a short bullet list of dropped messages and injects it as a synthetic followup prompt.

68-

Defaults: `debounceMs: 1000`, `cap: 20`, `drop: summarize`.

89+

For options, inline or stored `/queue` options win over config. Then

90+

channel-specific debounce (`messages.queue.debounceMsByChannel`), plugin

91+

debounce defaults, global `messages.queue` options, and built-in defaults are

92+

applied. `cap` and `drop` are global/session options, not per-channel config

93+

keys.

69947095

## Per-session overrides

71967297

- Send `/queue <mode>` as a standalone command to store the mode for the current session.

73-

- Options can be combined: `/queue collect debounce:2s cap:25 drop:summarize`

98+

- Options can be combined: `/queue collect debounce:0.5s cap:25 drop:summarize`

7499

- `/queue default` or `/queue reset` clears the session override.

7510076101

## Scope and guarantees