From 5c3f3130331662b4f8340be14cf970a195f80be9 Mon Sep 17 00:00:00 2001 From: tanmay11k Date: Sun, 22 Feb 2026 00:50:50 -0500 Subject: [PATCH] Initial commit: Discord-Claude Gateway with event-driven agent runtime --- src/discord-bot.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/discord-bot.ts b/src/discord-bot.ts index 627bc9f..9158806 100644 --- a/src/discord-bot.ts +++ b/src/discord-bot.ts @@ -47,6 +47,9 @@ export class DiscordBot { console.log(`Connected to ${this.client.guilds.cache.size} guild(s)`); this.setupMessageHandler(); this.setupInteractionHandler(); + + // Debug: confirm we're listening for messages + console.log(`[DEBUG] Message intent enabled, listening for messageCreate events`); resolve(); });