#Usage of agents.default.verboseDefault in openclaw.json
1 messages Ā· Page 1 of 1 (latest)
you can try saying your lobster to turn on verbose mode for gateway and i hope it will do it ..
š¦
Like running with --verbose ?
just say verbose
Yeah, thatās frustrating š I checked the current docs/source: the supported key is still agents.defaults.verboseDefault (plural defaults), and the value should be a string:
agents: {
defaults: {
verboseDefault: "on" // or "full"
}
}
Two gotchas that can make it look broken after an upgrade:
- Existing sessions can override the default. If that session has
verboseLevel: off, it wins oververboseDefault. In the same thread/chat, try:
/verbose
/verbose on
or clear the sessionās verbose setting to inherit in the Control UI / start a fresh session.
- If
/verbose onsays itās enabled but tool/sub-agent bubbles still donāt appear, thatās likely a regression in the current Discord progress/verbose delivery path, not your config. In that case please file it with a small repro +openclaw status --all: https://github.com/openclaw/openclaw/issues
Relevant docs: https://docs.openclaw.ai/gateway/config-agents and https://docs.openclaw.ai/tools/thinking
Someone else has this issue too...
Anyone who uses discord here on 5.7.. does your verbose or streaming work??
It was working on 4.23 then never since then
Even with streaming, which I had a bit at a point
That extra data point makes me more suspicious this is a Discord delivery regression, not just your verboseDefault config.
I checked current docs/source: Discord streaming should still default to channels.discord.streaming.mode: "progress", and verbose tool bubbles should still emit when the session resolves verbose on/full. If multiple people lost both after ~4.23 ā 5.7, thatās probably worth filing.
Quick sanity checks before the issue:
/verbose
/verbose on
And in config, make it explicit once:
agents: { defaults: { verboseDefault: "on" } },
channels: { discord: { streaming: { mode: "progress" } } }
Then restart gateway. If /verbose reports on but Discord still only sends the final answer, please open a GitHub issue with:
- version:
openclaw --version openclaw status --all- whether this is Discord DM, channel, forum thread, or normal thread
- a tiny repro prompt that uses a tool/sub-agent
Issue tracker: https://github.com/openclaw/openclaw/issues
Docs I verified: https://docs.openclaw.ai/channels/discord#streaming and https://docs.openclaw.ai/tools/thinking
Yep I already have them in the config, and I guess this issue is related, but now mentionning the streaming tho
https://github.com/openclaw/openclaw/issues/78365
Yep, that issue is the right place. Iād add a comment there saying it also affects Discord streaming/progress updates, not just standalone verbose bubbles.
I checked current source and the issueās root cause matches whatās in-tree: Discord outbound delivery is still passing verbose: false in several adapter paths. Separately, Discordās streaming docs say channels.discord.streaming.mode: "progress" should keep one editable status draft with tool progress, so if that draft also isnāt appearing, itās likely the same regression area or a very adjacent one.
Useful wording for the issue:
This also appears to affect Discord streaming/progress mode in 2026.5.7.
With channels.discord.streaming.mode="progress" and agents.defaults.verboseDefault="on"/"full", Discord only sends the final response; no editable progress/status draft and no tool/sub-agent progress appears. This worked around 2026.4.23.
Surface: Discord thread/channel/forum thread: <which one>
That keeps it tied to #78365 instead of scattering the bug across duplicates. š¦
I think the issue is too advanced in its development (already a PR : https://github.com/openclaw/openclaw/pull/80042 fixing the issue) so I might have to open another for the streaming part
Yeah, I think youāre reading that right.
I peeked at PR #80042 and itās specifically about restoring Discord verbose/tool-progress delivery, including some queued follow-up paths. If your remaining repro is āchannels.discord.streaming.mode = "progress" no longer creates/updates the streaming status draft at allā, thatās a distinct enough symptom to open a new issue.
Iād still cross-link them both ways:
Possibly related to #78365 / PR #80042, but this is about Discord streaming/progress mode itself rather than verbose bubbles.
And include a minimal matrix like:
Version: 2026.5.7
Worked in: 2026.4.23
Config:
channels.discord.streaming.mode = "progress"
agents.defaults.verboseDefault = "on" or "full"
Expected: editable Discord progress/status message during run
Actual: only final answer is sent
Surface: Discord <channel/thread/forum thread/DM>
Thatāll make it easier for maintainers to decide whether itās covered by #80042 or needs a separate fix.
Sweet I opened the issue here for thoses who wants to follow it
https://github.com/openclaw/openclaw/issues/81043
Nice, thank you ā thatās the right move. For anyone tracking it: https://github.com/openclaw/openclaw/issues/81043
That should keep the streaming-specific regression separate from the verbose bubble PR, while still making the relationship clear.