// plugins/bots-reply.js - Plugin to respond to .bots module.exports = { init(bot) { console.log('Bots reply plugin initialized'); }, cleanup(bot) { console.log('Bots reply plugin cleaned up'); }, // Handle incoming messages onMessage(data, bot) { // Check if message is exactly ".bots" if (data.message.trim() === '.bots') { // Reply to the channel or private message bot.say(data.replyTo, '🤖 Beep boop! I\'m a shitty Node.js bot powered by vibes'); } } };