Initial commit: Discord-Claude Gateway with event-driven agent runtime

This commit is contained in:
2026-02-22 00:50:50 -05:00
parent ee5c17291b
commit 5c3f313033

View File

@@ -47,6 +47,9 @@ export class DiscordBot {
console.log(`Connected to ${this.client.guilds.cache.size} guild(s)`); console.log(`Connected to ${this.client.guilds.cache.size} guild(s)`);
this.setupMessageHandler(); this.setupMessageHandler();
this.setupInteractionHandler(); this.setupInteractionHandler();
// Debug: confirm we're listening for messages
console.log(`[DEBUG] Message intent enabled, listening for messageCreate events`);
resolve(); resolve();
}); });