openclaw - 💡(How to fix) Fix Bug: Card dispatcher silently drops group chat replies (replies=0) [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#78475Fetched 2026-05-07 03:36:31
View on GitHub
Comments
1
Participants
2
Timeline
1
Reactions
2
Author
Timeline (top)
commented ×1

Fix Action

Fix / Workaround

When the main bot receives a @mention in a Feishu group chat, the model generates a reply but the card dispatcher silently drops it. The dispatch log shows replies=0 despite the model producing valid output.

  • Model produces a valid reply (confirmed via trajectory: assistantTexts: ["hi 长岭~ 有什么事?😄"])
  • Card dispatcher resolves reply mode: effectiveReplyMode=static, chatType=group
  • Typing indicator is added and removed
  • But dispatch complete (replies=0) — no reply delivered
  • No deliverMessage, sendTextLark, or creating message logs for the group

Main bot (FAILS):

20:35:37 feishu[main]: reply mode resolved (effectiveReplyMode=static, replyMode=static, chatType=group)
20:35:37 feishu[main]: dispatching to agent (session=agent:main:feishu:group:oc_461beae810470e6f23fc50e000acdbeb)
20:35:41 feishu[main]: added typing indicator reaction
20:35:44 model completed, assistantTexts=["hi 长岭~ 有什么事?😄"]
20:35:44 feishu[main]: dispatch complete (replies=0, elapsed=7147ms)
20:35:45 feishu[main]: removed typing indicator reaction

Code Example

20:35:37 feishu[main]: reply mode resolved (effectiveReplyMode=static, replyMode=static, chatType=group)
20:35:37 feishu[main]: dispatching to agent (session=agent:main:feishu:group:oc_461beae810470e6f23fc50e000acdbeb)
20:35:41 feishu[main]: added typing indicator reaction
20:35:44 model completed, assistantTexts=["hi 长岭~ 有什么事?😄"]
20:35:44 feishu[main]: dispatch complete (replies=0, elapsed=7147ms)
20:35:45 feishu[main]: removed typing indicator reaction

---

20:44:14 feishu[elon]: footer config resolved
20:44:34 feishu[elon]: deliverMessage: type=text, target=oc_461beae810470e6f23fc50e000acdbeb
20:44:34 feishu[elon]: sendTextLark: target=oc_461beae810470e6f23fc50e000acdbeb
20:44:34 feishu[elon]: creating message to oc_461beae810470e6f23fc50e000acdbeb (msg_type=post)
RAW_BUFFERClick to expand / collapse

Bug Description

When the main bot receives a @mention in a Feishu group chat, the model generates a reply but the card dispatcher silently drops it. The dispatch log shows replies=0 despite the model producing valid output.

Steps to Reproduce

  1. Configure multiple Feishu bot accounts (main, elon, etc.) in openclaw.json
  2. Add all bots to the same Feishu group
  3. @mention the main bot in the group
  4. Observe that the main bot does not reply, while other bots (e.g., elon) reply normally

Expected Behavior

The main bot should deliver its reply to the group chat, same as other bot accounts.

Actual Behavior

  • Model produces a valid reply (confirmed via trajectory: assistantTexts: ["hi 长岭~ 有什么事?😄"])
  • Card dispatcher resolves reply mode: effectiveReplyMode=static, chatType=group
  • Typing indicator is added and removed
  • But dispatch complete (replies=0) — no reply delivered
  • No deliverMessage, sendTextLark, or creating message logs for the group

Evidence from Logs

Main bot (FAILS):

20:35:37 feishu[main]: reply mode resolved (effectiveReplyMode=static, replyMode=static, chatType=group)
20:35:37 feishu[main]: dispatching to agent (session=agent:main:feishu:group:oc_461beae810470e6f23fc50e000acdbeb)
20:35:41 feishu[main]: added typing indicator reaction
20:35:44 model completed, assistantTexts=["hi 长岭~ 有什么事?😄"]
20:35:44 feishu[main]: dispatch complete (replies=0, elapsed=7147ms)
20:35:45 feishu[main]: removed typing indicator reaction

Elon bot (WORKS) on the SAME group:

20:44:14 feishu[elon]: footer config resolved
20:44:34 feishu[elon]: deliverMessage: type=text, target=oc_461beae810470e6f23fc50e000acdbeb
20:44:34 feishu[elon]: sendTextLark: target=oc_461beae810470e6f23fc50e000acdbeb
20:44:34 feishu[elon]: creating message to oc_461beae810470e6f23fc50e000acdbeb (msg_type=post)

Key Difference

  • Elon uses deliverMessage (text delivery) → works
  • Main uses card dispatcher but never calls deliverMessage for group chats → fails silently

Additional Context

  • Main bot CAN deliver to DM-like chats (oc_4616c656ed5c3531e07d8db79c26567e) successfully
  • Main bot has NEVER delivered a message to the actual group (oc_461beae810470e6f23fc50e000acdbeb) today
  • All bot accounts have the same config structure (groupPolicy: open)
  • Feishu permissions are fully configured for all bots

Environment

  • OpenClaw version: latest (installed via hermes)
  • Node: v22.22.2
  • Platform: macOS Darwin 24.6.0 (arm64)
  • Feishu connection mode: websocket

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix Bug: Card dispatcher silently drops group chat replies (replies=0) [1 comments, 2 participants]