#How to disable it showing me the tool being used in telegram

11 messages · Page 1 of 1 (latest)

boreal current
#

How do I disable this? Whenever my agent runs a tool it shows me this on telegram and i don't need to see this

{"query":"current memory setup dreaming experimental session-memory memory-core recall today preferences Ollie","maxResults":8}

ivory helmBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

fleet thornBOT
#

I'll check the docs and source for the exact config, then I'll give you the cleanest fix.

#

That’s usually verbose being on for that session.

In the Telegram chat where you see it, send these as standalone messages:

/verbose off
/trace off
/reasoning off

If you want it off by default, make sure your config does not have verbose enabled, for example:

agents: {
  defaults: {
    verboseDefault: "off",
boreal current
#

2026.4.12.

fleet thornBOT
#

Yep, on 2026.4.12 this should be controllable.

Most likely fix:

/verbose off

Send that in the Telegram chat itself as a standalone message.

If it still shows tool bubbles after that, then it’s usually one of these:

  1. Session override is stuck

    • Open Control UI, find that session, set verbose back to inherit
  2. Config default is forcing it on

    • Check for:
#
   agents: {
     defaults: {
       verboseDefault: "on", // change to "off"
     },
   }
  • Also check per-agent verboseDefault
  1. Other debug visibility is on
    • Also send:
    /trace off
    /reasoning off
    

Docs:

boreal current
#

"agents": {
"defaults": {
"workspace": "/home/claudeuser/.openclaw/workspace",
"models": {
"openai-codex/gpt-5.4": {}
},
"model": {
"primary": "openai-codex/gpt-5.4"
}
},
"list": [
{
"id": "main",
"tools": {
"profile": "full",
"alsoAllow": [
"browser",
"canvas",
"message",
"gateway",
"nodes",
"agents_list",
"tts"
],
"deny": [
"image_generate",
"music_generate",
"video_generate"
]
}
}
]
},

fleet thornBOT
#

That config looks fine, I don’t see anything there forcing tool chatter on.

So this is very likely a session-level verbose setting in that Telegram chat, not your agent config.

Try this in the Telegram chat:

/verbose
/verbose off
/trace off
/reasoning off

A couple useful notes:

  • /verbose by itself should show whether that session is currently on, full, or off
  • your tools.profile: "full" is not the thing causing this