#No output no response on telegram

1 messages ยท Page 1 of 1 (latest)

celest totemBOT
#

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

visual briarBOT
#

Hey there! ๐Ÿฆ Sorry to hear you're experiencing issues with Clawdbot!

Quick troubleshooting steps:

  1. Check if the gateway is running:

    clawdbot gateway status
    
  2. Check gateway logs for errors:

    clawdbot gateway logs
    
  3. Try restarting the gateway:

#
   clawdbot gateway restart

Common causes for no output + Telegram unresponsive:

  • Gateway crashed or hung
  • Model/API provider issue (check your model config)
  • Authentication/token expired

If you see errors in the logs, paste them here and I can help interpret them!

๐Ÿ“– Docs reference: https://docs.clawd.bot/gateway/troubleshooting

Let me know what clawdbot gateway status shows and we'll go from there! ๐Ÿฆ

blazing plover
#

error: too many arguments for 'gateway'. Expected 0 arguments but got 1.

visual briarBOT
blazing plover
#

2026.1.24-3

#

๐Ÿฆž Clawdbot 2026.1.24-3 (885167d) โ€” Works on Android. Crazy concept, we know.

Usage: clawdbot [options] [command]

Options:
-V, --version output the version number
--dev Dev profile: isolate state under ~/.clawdbot-dev, default gateway port 19001, and shift derived
ports (browser/canvas)
--profile <name> Use a named profile (isolates CLAWDBOT_STATE_DIR/CLAWDBOT_CONFIG_PATH under ~/.clawdbot-<name>)
--no-color Disable ANSI colors
-h, --help display help for command

Commands:
setup Initialize ~/.clawdbot/clawdbot.json and the agent workspace
onboard Interactive wizard to set up the gateway, workspace, and skills
configure Interactive prompt to set up credentials, devices, and agent defaults
config Config helpers (get/set/unset). Run without subcommand for the wizard.
doctor Health checks + quick fixes for the gateway and channels
dashboard Open the Control UI with your current token
reset Reset local config/state (keeps the CLI installed)
uninstall Uninstall the gateway service + local data (CLI remains)
message Send messages and channel actions
memory Memory search tools
agent Run an agent turn via the Gateway (use --local for embedded)
agents Manage isolated agents (workspaces + auth + routing)
acp Agent Control Protocol tools
gateway Gateway control
daemon Gateway service (legacy alias)
logs Gateway logs
system System events, heartbeat, and presence
models Model configuration
approvals Exec approvals
nodes Node commands
devices Device pairing + token management
node Node control
sandbox Sandbox tools
tui Terminal UI
cron Cron scheduler
dns DNS helpers
docs Docs helpers
hooks Hooks tooling
webhooks Webhook helpers
pairing Pairing helpers
plugins Plugin management
channels Channel management
directory Directory commands
security Security helpers
skills Skills management
update CLI update helpers
status Show channel health and recent session recipients
health Fetch health from the running gateway
sessions List stored conversation sessions
browser Manage clawd's dedicated browser (Chrome/Chromium)
help display help for command

Examples:
clawdbot channels login --verbose
Link personal WhatsApp Web and show QR + connection logs.
clawdbot message send --target +15555550123 --message "Hi" --json
Send via your web session and print JSON result.
clawdbot gateway --port 18789
Run the WebSocket Gateway locally.
clawdbot --dev gateway
Run a dev Gateway (isolated state/config) on ws://127.0.0.1:19001.
clawdbot gateway --force
Kill anything bound to the default gateway port, then start it.
clawdbot gateway ...
Gateway control via WebSocket.
clawdbot agent --to +15555550123 --message "Run summary" --deliver
Talk directly to the agent using the Gateway; optionally send the WhatsApp reply.
clawdbot message send --channel telegram --target @mychat --message "Hi"
Send via your Telegram bot.

visual briarBOT
# blazing plover 2026.1.24-3

Thanks! You're on a slightly older version, so the command syntax might be different.

Try these commands instead:

  1. Check status:

    clawdbot status
    
  2. Check running processes:

    ps aux | grep clawdbot
    
  3. Check logs (if gateway logs subcommand doesn't exist):

#
   journalctl -u clawdbot -n 50 --no-pager  # if installed as a service

Or look for logs in ~/.clawdbot/logs/

If clawdbot status shows it's NOT running, try starting it:

clawdbot

Can you run clawdbot status and let me know what it says? ๐Ÿฆ

blazing plover
visual briarBOT
# blazing plover

Thanks for the status output! I can see:

โœ… Gateway is running (pid 8829, state active)
โœ… Telegram shows OK (connected, token valid)
โš ๏ธ Main agent is bootstrapping (3m ago)

The issue is likely the agent session - it's been "bootstrapping" for 3 minutes which suggests it's hanging, likely waiting on a model response.

Let's debug:

  1. Check the agent logs:

    clawdbot logs --follow
    

    This will show what's happening with the agent and if it's stuck on a model call.

  2. If the agent is truly stuck, try restarting the gateway:

#
   clawdbot gateway restart
  1. Check your model configuration (API keys, rate limits):
    clawdbot configure show
    

Run clawdbot logs --follow and paste the output here - that should reveal whether the agent is waiting on Anthropic/OpenAI/whoever your model provider is. ๐Ÿฆ

blazing plover
#

shannonai@AIs-Mac-mini ~ % clawdbot configure show

error: too many arguments for 'configure'. Expected 0 arguments but got 1.

visual briarBOT
#
clawdbot logs

And paste what you see. That should show if the agent is stuck waiting on a model response, or if there's another error happening! ๐Ÿฆ

blazing plover
visual briarBOT
# blazing plover

Found the issue! Looking at your logs, I can see a stuck session loop:

The problem:

  • Agent session 8425cb5e-483a-4663-a6ee-6da0894a6e65 is repeatedly starting but never completing
  • You get Removed orphaned user message to prevent consecutive user turns - meaning you're sending messages while the previous one is still processing
  • The gateway keeps restarting due to config changes

The fix:

  1. Stop the gateway completely:

    clawdbot gateway stop
    
  2. Wait 10 seconds, then restart:

#
   clawdbot gateway start

This will clear the stuck session and get everything running smoothly again. The gateway was restarting too often which is causing sessions to get corrupted.

Let me know if it works! ๐Ÿฆ

blazing plover
#

๐Ÿฆž Clawdbot 2026.1.24-3 (885167d) โ€” End-to-end encrypted, Zuck-to-Zuck excluded.

Gateway service not loaded.
Start with: clawdbot gateway install
Start with: clawdbot gateway
Start with: launchctl bootstrap gui/$UID ~/Library/LaunchAgents/com.clawdbot.gateway.plist
shannonai@AIs-Mac-mini ~ %

visual briarBOT
#

Or manually with launchctl:

launchctl bootstrap gui/$UID ~/Library/LaunchAgents/com.clawdbot.gateway.plist

I recommend clawdbot (Option 1) first so you can watch the logs and make sure it starts cleanly. Then you can Ctrl+C and run it as a service if you prefer.

Let me know what happens! ๐Ÿฆ

blazing plover
#

shannonai@AIs-Mac-mini ~ % clawdbot

๐Ÿฆž Clawdbot 2026.1.24-3 (885167d) โ€” Siri's competent cousin.

Usage: clawdbot [options] [command]

Options:
-V, --version output the version number
--dev Dev profile: isolate state under ~/.clawdbot-dev, default gateway port 19001, and shift derived
ports (browser/canvas)
--profile <name> Use a named profile (isolates CLAWDBOT_STATE_DIR/CLAWDBOT_CONFIG_PATH under ~/.clawdbot-<name>)
--no-color Disable ANSI colors
-h, --help display help for command

Commands:
setup Initialize ~/.clawdbot/clawdbot.json and the agent workspace
onboard Interactive wizard to set up the gateway, workspace, and skills
configure Interactive prompt to set up credentials, devices, and agent defaults
config Config helpers (get/set/unset). Run without subcommand for the wizard.
doctor Health checks + quick fixes for the gateway and channels
dashboard Open the Control UI with your current token
reset Reset local config/state (keeps the CLI installed)
uninstall Uninstall the gateway service + local data (CLI remains)
message Send messages and channel actions
memory Memory search tools
agent Run an agent turn via the Gateway (use --local for embedded)
agents Manage isolated agents (workspaces + auth + routing)
acp Agent Control Protocol tools
gateway Gateway control
daemon Gateway service (legacy alias)
logs Gateway logs
system System events, heartbeat, and presence
models Model configuration
approvals Exec approvals
nodes Node commands
devices Device pairing + token management
node Node control
sandbox Sandbox tools
tui Terminal UI
cron Cron scheduler
dns DNS helpers
docs Docs helpers
hooks Hooks tooling
webhooks Webhook helpers
pairing Pairing helpers
plugins Plugin management
channels Channel management
directory Directory commands
security Security helpers
skills Skills management
update CLI update helpers
status Show channel health and recent session recipients
health Fetch health from the running gateway
sessions List stored conversation sessions
browser Manage clawd's dedicated browser (Chrome/Chromium)
help display help for command

Examples:
clawdbot channels login --verbose
Link personal WhatsApp Web and show QR + connection logs.
clawdbot message send --target +15555550123 --message "Hi" --json
Send via your web session and print JSON result.
clawdbot gateway --port 18789
Run the WebSocket Gateway locally.
clawdbot --dev gateway
Run a dev Gateway (isolated state/config) on ws://127.0.0.1:19001.
clawdbot gateway --force
Kill anything bound to the default gateway port, then start it.
clawdbot gateway ...
Gateway control via WebSocket.
clawdbot agent --to +15555550123 --message "Run summary" --deliver
Talk directly to the agent using the Gateway; optionally send the WhatsApp reply.
clawdbot message send --channel telegram --target @mychat --message "Hi"
Send via your Telegram bot.

Docs: docs.clawd.bot/cli

shannonai@AIs-Mac-mini ~ %