#Everything installed no response from clawdbot control
1 messages ยท Page 1 of 1 (latest)
Based on the Discord docs, here's the troubleshooting guide for "no response from control channel":
Most common causes:
- Missing Message Content Intent - Must be enabled in Discord Developer Portal โ Bot โ Privileged Gateway Intents
requireMention: true- Bot only replies when mentioned (e.g.,@Krill hello)groupPolicydefaults toallowlist- Need to set"open"or add guild entry- Channel/user not in allowlist - Check
channels.discord.guildsconfig
Quick diagnostics to run:
clawdbot doctor
clawdbot channels status --probe
clawdbot logs --follow
Key questions:
- Is this a DM or guild channel?
- Did you mention the bot (@BotName)?
- Do you have
requireMention: truein config? - Check Discord Developer Portal โ Bot โ Message Content Intent is enabled
The docs say: "Bot connects but never replies in a guild channel: Missing Message Content Intent, bot lacks channel permissions, or config requires mentions."
Want me to help you check any of these? The logs will usually tell us exactly what's happening.
ok
Got it! To help diagnose, can you run a couple commands and share the output?
clawdbot doctor- This will catch most common issuesclawdbot channels status --probe- Specifically checks Discord connectivity
Or just tell me:
- Is the bot replying in DMs but not in the #Everything channel?
- Did you enable Message Content Intent in Discord Developer Portal?
The logs (clawdbot logs --follow) while you try to message it will also show exactly why it's not responding!
Clawdbot doctor
โ
โ Update โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ This install is not a git checkout. โ
โ Run clawdbot update to update via your package manager (npm/pnpm), โ
โ then rerun doctor. โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โ
โ Security โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ - No channel security warnings detected. โ
โ - Run: clawdbot security audit --deep โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โ
โ Skills status โโโโโโโโโโโโโฎ
โ โ
โ Eligible: 7 โ
โ Missing requirements: 42 โ
โ Blocked by allowlist: 0 โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โ
โ Plugins โโโโโโโฎ
โ โ
โ Loaded: 2 โ
โ Disabled: 24 โ
โ Errors: 0 โ
โ โ
โโโโโโโโโโโโโโโโโโฏ
โ
โ
Telegram: ok (@JavsMiceBot) (676ms)
Agents: main (default)
Heartbeat interval: 1h (main)
Session store (main): /Users/mich/.clawdbot/agents/main/sessions/sessions.json (1 entries)
- agent:main:main (6m ago)
Run "clawdbot doctor --fix" to apply changes.
โ
โ Doctor complet
The doctor shows Telegram is working but no Discord status - that's the issue!
Discord isn't connected. You probably didn't set it up in the wizard, or it's not enabled in your config.
Quick fix:
-
Check current channels:
clawdbot channels status -
Add Discord to your config (
~/.clawdbot/clawdbot.json):{ channels: { discord: {
enabled: true,
token: "YOUR_BOT_TOKEN_HERE"
}
}
}
- Restart the gateway:
clawdbot gateway restart
To get a Discord bot token:
- Go to https://discord.com/developers/applications
- Create an app โ Bot โ Copy the Bot Token
- Enable Message Content Intent in Bot settings
- Invite the bot to your server
Need help with the token setup? The Discord docs have a full walkthrough: https://docs.clawd.bot/channels/discord
im not trying to connecct discord. Just trying to chat and get a response anywhere
Can you share the actual config content? Run:
cat ~/.clawdbot/clawdbot.json
Or just paste the channels section - I need to see if Discord is defined and whether it has a token set.
mich@MacBook-Air ~ % cat ~/.clawdbot/clawdbot.json
{
"messages": {
"ackReactionScope": "group-mentions"
},
"agents": {
"defaults": {
"maxConcurrent": 4,
"subagents": {
"maxConcurrent": 8
},
"compaction": {
"mode": "safeguard"
},
"workspace": "/Users/mich/clawd"
}
},
"gateway": {
"mode": "local",
"auth": {
"mode": "token",
"token": "7E3AB323-5914-4772-95DC-49172F722B32"
},
"port": 18789,
"bind": "loopback",
"tailscale": {
"mode": "off",
"resetOnExit": false
},
"remote": {
"token": "7E3AB323-5914-4772-95DC-49172F722B32"
}
},
"auth": {
"profiles": {
"anthropic:default": {
"provider": "anthropic",
"mode": "token"
}
}
},
"plugins": {
"entries": {
"telegram": {
"enabled": true
}
}
},
"channels": {
"telegram": {
"enabled": true,
"botToken": "8315547120:AAGKcd07foDsLPKGfmzt2qeucgaV-n0jD6Q"
}
},
"skills": {
"install": {
"nodeManager": "npm"
}
},
"wizard": {
"lastRunAt": "2026-01-25T04:08:25.982Z",
"lastRunVersion": "2026.1.23-1",
"lastRunCommand": "onboard",
"lastRunMode": "local"
},
"meta": {
"lastTouchedVersion": "2026.1.23-1",
"lastTouchedAt": "2026-01-25T04:08:25.991Z"
}
}
Found it! Your config only has Telegram configured - no Discord section at all.
Add this to your ~/.clawdbot/clawdbot.json:
"channels": {
"telegram": {
"enabled": true,
"botToken": "8315547120:AAGKcd07foDsLPKGfmzt2qeucgaV-n0jD6Q"
},
"discord": {
"enabled": true,
"token": "YOUR_DISCORD_BOT_TOKEN"
}
}
i dont want discord
To get your Discord bot token:
- Go to https://discord.com/developers/applications
- Create an app โ Bot โ Reset Token โ Copy it
- Important: Enable Message Content Intent in Bot settings (Privileged Gateway Intents)
- Invite the bot to your server with these permissions: View Channels, Send Messages, Read Message History
Then run:
clawdbot gateway restart
That's the Clawdbot dashboard - looks good! But you still need to add Discord to your config file.
The dashboard doesn't create Discord bots - you need to:
- Go to Discord Developer Portal: https://discord.com/developers/applications
- Create an app โ Bot โ Copy Token
- Enable Message Content Intent (Bot โ Privileged Gateway Intents)
- Add to your config using the token you copied
Want me to walk you through the Discord Developer Portal steps? Or do you already have a bot token ready to paste?
Ah! You're in the Clawdbot support Discord asking for help - you don't want to set up Discord as a channel for your Clawdbot. Got it!
So what are you trying to do? Your original message was just "Help not sure what to do" - what is the actual problem you're experiencing?
- Something with Telegram (since that's what you have configured)?
- The dashboard not working?
- Something else entirely?
not getting reponse on dashboard
Got it - dashboard isn't responding to your messages. Let's diagnose:
Quick checks:
-
Is the gateway running?
clawdbot gateway status -
Are models configured?
clawdbot models status -
Check logs:
clawdbot logs --follow
(Then try sending a message and see what happens)
- Full status:
clawdbot status
Can you run these and share the output? The logs are usually the most telling - they show whether the gateway received your message and what it's doing with it.
๐ฆ Clawdbot 2026.1.23-1 (c8afa82)
Hot reload for config, cold sweat for deploys.
โ
โ
Service: LaunchAgent (loaded)
File logs: /tmp/clawdbot/clawdbot-2026-01-24.log
Command: /usr/local/bin/node /usr/local/lib/node_modules/clawdbot/dist/entry.js gateway --port 18789
Service file: ~/Library/LaunchAgents/com.clawdbot.gateway.plist
Service env: CLAWDBOT_GATEWAY_PORT=18789
Config (cli): ~/.clawdbot/clawdbot.json
Config (service): ~/.clawdbot/clawdbot.json
Gateway: bind=loopback (127.0.0.1), port=18789 (service args)
Probe target: ws://127.0.0.1:18789
Dashboard: http://127.0.0.1:18789/
Probe note: Loopback-only gateway; only local clients can connect.
Runtime: running (pid 9330)
RPC probe: ok
Listening: 127.0.0.1:18789
Troubles: run clawdbot status
Troubleshooting: https://docs
Gateway is running fine! RPC probe is OK.
Now check if models are set up:
clawdbot models status
And tell me:
- When you open
http://127.0.0.1:18789/- does the dashboard load at all? - Do you see any error in the browser console (F12)?
- When you type a message and hit send - what happens? Does it spin forever? Show an error?
Good news - the bot IS working! Looking at your logs:
- โ Gateway running fine (RPC probe: ok)
- โ Webchat connected successfully
- โ
Messages are being processed (see
embedded run startโrun completed) - โ
Model:
anthropic/claude-opus-4-5 - โ Runs taking ~100-200ms
The logs show messages are getting through. The issue is likely:
-
Browser cache/UI bug - Try:
- Hard refresh:
Cmd+Shift+R(Mac) orCtrl+Shift+R - Clear browser cache
- Open in incognito/private window
- Hard refresh:
-
Token mismatch (in logs but resolved):
unauthorized: gateway token mismatch (set gateway.remote.token to match gateway.auth.token)
The webchat connected fine anyway, but if you're using clawdbot CLI, you might need to sync tokens.
Try this:
clawdbot doctor --fix
clawdbot gateway restart
Then open the dashboard in a private browser window. Does it work now?
Disconnected from gateway.
disconnected (1008): unauthorized: gateway token missing (set gateway.remote.token to match gateway.auth.token)
The dashboard needs the token in the URL. Get a fresh tokenized link:
clawdbot dashboard
This will print a URL like:
http://127.0.0.1:18789/?token=7E3AB323-5914-4772-95DC-49172F722B32
Open that exact URL in your browser - it has the token embedded. The token in your config (gateway.auth.token) matches gateway.remote.token, but the dashboard UI needs it passed explicitly.
now theres just no reponse
Need more details to debug:
-
Does the dashboard page load at all? Can you see the chat interface?
-
When you type a message and hit send - what happens?
- Does it just sit there spinning?
- Does it show an error?
- Nothing happens at all?
-
Check browser console (F12 โ Console tab) - any red error messages?
-
Check logs again while you try to send:
clawdbot logs --follow(then send a message and see what appears)
The gateway seems fine - I need to know if the issue is:
- Dashboard UI not loading
- Messages not sending
- Messages sending but not receiving replies
- Network/browser issue
The bot IS working! Look at the logs:
06:18:47 embedded run start: runId=0d97ea66-61cf-4222-a621-34da0ea8d3eb
06:18:47 embedded run prompt start
06:18:47 embedded run agent end
06:18:47 embedded run done: durationMs=253 aborted=false
Messages are getting through and completing in ~250ms. The issue is the UI display.
What's happening:
- Your webchat connects fine (with token)
- Messages ARE being processed
- But you see "no response"
Try this:
- Close ALL browser tabs (including this one)
- Open ONE fresh private/incognito window
- Go to the tokenized URL:
http://127.0.0.1:18789/?token=7E3AB323-5914-4772-95DC-49172F722B32 - Type a message
The token_missing errors every 15 seconds suggest you have multiple tabs or the UI is trying to reconnect without the token. Only ONE tab should be open at a time.
Does the message appear in the chat after you send it?
my message does but no response
So your message shows up, but the bot's reply doesn't appear. The logs show the bot IS responding (runs complete successfully), but the response might not be making it back to the UI.
Let's test:
-
Try a different browser - Safari has known WebSocket issues sometimes. Try Chrome or Firefox.
-
Check browser console for errors:
- Open dashboard โ F12 โ Console tab
- Send a message
- Look for red errors (WebSocket issues, message errors, etc.)
-
While you test, check if the UI is receiving:
clawdbot logs --follow(You should see
embedded run donelike before)
If Chrome works but Safari doesn't, that's a browser/WebSocket issue on your Mac. Let me know what you find!
Both browsers have the same issue. This is unusual - server-side is working fine.
Let's narrow it down:
- Open browser DevTools console (F12) while on the dashboard
- Type a message and send
- Look for errors - anything red in the Console tab, especially WebSocket or message errors
Also try:
-
Completely fresh incognito window with all extensions disabled:
- Chrome: Ctrl+Shift+N (Cmd+Shift+N on Mac)
- Go to the exact token URL
- Test
-
Check if messages are in the session store:
cat ~/.clawdbot/agents/main/sessions/sessions.json
(Shows your chat history - see if bot replies are there)
The bot IS replying (logs confirm), but the UI isn't showing them. This could be a UI bug or the webchat connection isn't properly receiving messages.
What errors (if any) show up in the browser Console when you send a message?
That's session metadata, not the actual chat messages. Let me check the message history:
cat ~/.clawdbot/agents/main/sessions/56d96ea1-007a-47a0-8148-f4885974f071.jsonl
Or just check recent messages:
cat ~/.clawdbot/agents/main/sessions/*.jsonl | tail -50
This will show if bot replies are actually being saved to the session. If the bot's replies ARE in there, then the issue is purely a UI display problem (the messages aren't rendering in the browser).
Also, check the browser's Network tab (F12 โ Network) while on the dashboard:
- Look for WebSocket frames or API calls
- See if messages are being sent/received
- Check if there are any failed requests
The fact that bot replies are completing successfully (logs show embedded run done) but not showing in the UI suggests either:
- WebSocket isn't receiving messages (check Network tab)
- UI has a rendering bug (messages arrive but don't display)
- Session ID mismatch (UI requesting wrong session)
What does the Network tab show when you send a message? Any WebSocket activity?
telegram
Oh! Just use Telegram then - it's already set up and working!
Your Telegram bot @JavsMiceBot is configured and connected. Just open Telegram and message it there.
The dashboard WebSocket issue seems to be a local browser/network quirk, but since Telegram works, you don't need to fix the dashboard right now.
To use Telegram:
- Open Telegram
- Search for
@JavsMiceBot(or whatever you named it) - Start chatting!
If you want to fix the dashboard later, try:
- Restarting your Mac (clears any stuck WebSocket state)
- Or use the CLI instead:
clawdbot chat
look at screen shot for error
That's the dashboard error! The dashboard UI itself is throwing "access not configured" - this is why nothing works.
This happens when:
- The token isn't being passed correctly to the UI
- LocalStorage/sessionStorage has stale auth data
- Browser caching issues
Quick fix:
# Clear local storage for the dashboard
# In Safari:
# Develop โ Show JavaScript Console โ Storage โ Local Storage โ Delete all
# Or in Chrome:
# DevTools โ Application โ Local Storage โ Right-click โ Clear all
# Then run fresh:
clawdbot dashboard
Or try CLI chat instead (bypasses the UI entirely):
clawdbot chat
Since your Telegram is working perfectly, I'd recommend just using Telegram for now. The dashboard UI issue is a known edge case that's usually resolved by clearing browser state and getting a fresh tokenized URL.
Want me to help you troubleshoot the dashboard, or are you good using Telegram for now?