#Claw cannot create new Discord threads or forum channel posts
1 messages ยท Page 1 of 1 (latest)
Iโm checking the Discord-side behavior now, because this is often either a missing feature flag or a Discord permission mismatch.
A few likely causes here.
- If this is ACP/subagent thread creation, make sure thread binding is actually enabled:
{
session: {
threadBindings: { enabled: true },
},
channels: {
discord: {
threadBindings: {
enabled: true,
spawnAcpSessions: true, // for /acp spawn ... --thread ...
spawnSubagentSessions: true, // for sessions_spawn({ thread: true })
},
},
},
}
- If this is a Discord forum/media channel, the parent only accepts thread posts, not normal messages.
Use one of these:
openclaw message send --channel discord --target channel:<forumId> \
--message "Topic title
Body of the post"
or
openclaw message thread create --channel discord --target channel:<forumId> \
--thread-name "Topic title" --message "Body of the post"
- Check the botโs Discord channel permissions in that target channel/forum:
- View Channels
- Send Messages
- Read Message History
- Create Public Threads
- Send Messages in Threads
- Make sure you did not disable the thread action gate:
channels.discord.actions.threads: true
Can you paste these next?
openclaw --version
openclaw channels status --probe
openclaw message permissions --channel discord --target channel:<channelId>
openclaw logs --follow
and the exact error text from the failed create/post attempt.
Relevant docs:
- https://docs.openclaw.ai/help/faq
- https://docs.openclaw.ai/channels/discord
- https://docs.openclaw.ai/gateway/configuration-reference
If you paste the error + that channels.discord config block, I can narrow it down pretty fast.