openclaw - 💡(How to fix) Fix Discord GroupChat replies invisible after 2026.5.3 — visibleReplies default changed [3 comments, 3 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#77746Fetched 2026-05-06 06:22:00
View on GitHub
Comments
3
Participants
3
Timeline
4
Reactions
2
Timeline (top)
commented ×3closed ×1

Root Cause

In OpenClaw 2026.5.3, the default value for messages.groupChat.visibleReplies changed from "automatic" to "message_tool". This means normal assistant replies in group chats now stay private by default, and only explicit message(action="send") tool calls produce visible output.

Fix Action

Solution

Set messages.groupChat.visibleReplies back to "automatic":

# Method 1: Config patch
openclaw config patch --raw '{"messages":{"groupChat":{"visibleReplies":"automatic"}}}'

# Method 2: Config file
# Add to openclaw.json:
{
  "messages": {
    "groupChat": {
      "visibleReplies": "automatic"
    }
  }
}

Important: After applying the config patch, a gateway restart is required for the change to take effect:

openclaw gateway restart

Code Example

# Method 1: Config patch
openclaw config patch --raw '{"messages":{"groupChat":{"visibleReplies":"automatic"}}}'

# Method 2: Config file
# Add to openclaw.json:
{
  "messages": {
    "groupChat": {
      "visibleReplies": "automatic"
    }
  }
}

---

openclaw gateway restart
RAW_BUFFERClick to expand / collapse

Bug Report: Discord GroupChat replies invisible after update to 2026.5.3

Environment

  • OpenClaw Version: 2026.5.3-1 (2eae30e)
  • Channel: Discord Guild Channels (Server/Group chats)
  • OS: macOS (Darwin 25.3.0 arm64)

Problem Description

After updating to OpenClaw 2026.5.3, automatic assistant replies in Discord guild/group channels are no longer visible. The bot shows the "typing" indicator (three dots), generates a complete response (confirmed in session logs), but the message never appears in the channel.

Steps to Reproduce

  1. Update OpenClaw to 2026.5.3
  2. Send a message in any Discord guild channel where the agent is bound
  3. Observe: Bot starts typing (typing indicator visible)
  4. Observe: Typing stops, but no message appears
  5. Check session logs: Response was generated successfully

Affected Channels

  • All Discord guild channels with agent bindings
  • Examples: #health-fitness, #video-analysis, #cost-tracking, etc.

Not Affected

  • Discord DMs
  • Telegram DMs and groups
  • iMessage

Root Cause

In OpenClaw 2026.5.3, the default value for messages.groupChat.visibleReplies changed from "automatic" to "message_tool". This means normal assistant replies in group chats now stay private by default, and only explicit message(action="send") tool calls produce visible output.

Solution

Set messages.groupChat.visibleReplies back to "automatic":

# Method 1: Config patch
openclaw config patch --raw '{"messages":{"groupChat":{"visibleReplies":"automatic"}}}'

# Method 2: Config file
# Add to openclaw.json:
{
  "messages": {
    "groupChat": {
      "visibleReplies": "automatic"
    }
  }
}

Important: After applying the config patch, a gateway restart is required for the change to take effect:

openclaw gateway restart

Documentation Reference

From the Discord channel docs:

"By default, normal assistant final replies stay private by default. Visible Discord output must be sent explicitly with the message tool, so the agent can lurk by default and only post when it decides a channel reply is useful."

"To restore legacy automatic final replies for group/channel rooms, set messages.groupChat.visibleReplies: "automatic"."

Suggested Fix

Consider one of the following to prevent user confusion:

  1. Migration notice: Show a warning during upgrade if visibleReplies is not explicitly set
  2. Better defaults: Keep "automatic" as default for existing configs (only apply "message_tool" for new installations)
  3. Discord-specific note: Since Discord is the primary affected channel, consider Discord-specific documentation or a config migration helper

Verification

After applying the fix and restarting the gateway:

  • Send a message in any Discord guild channel
  • Assistant reply appears automatically ✅

extent analysis

TL;DR

Set messages.groupChat.visibleReplies to "automatic" to restore visible assistant replies in Discord group chats.

Guidance

  • Verify the current value of messages.groupChat.visibleReplies in your OpenClaw configuration to confirm it's set to "message_tool".
  • Apply the suggested configuration patch using openclaw config patch or update the openclaw.json file directly.
  • Restart the gateway with openclaw gateway restart to apply the changes.
  • Test the fix by sending a message in a Discord guild channel and checking if the assistant reply appears.

Example

To apply the fix via config patch:

openclaw config patch --raw '{"messages":{"groupChat":{"visibleReplies":"automatic"}}}'

Then restart the gateway:

openclaw gateway restart

Notes

This fix assumes you are using OpenClaw version 2026.5.3 or later, where the default value of messages.groupChat.visibleReplies changed to "message_tool".

Recommendation

Apply the workaround by setting messages.groupChat.visibleReplies to "automatic" to restore the previous behavior of visible assistant replies in Discord group chats.

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 Discord GroupChat replies invisible after 2026.5.3 — visibleReplies default changed [3 comments, 3 participants]