module.exports = { name: 'help', description: "shows the available commands", hidden: false, async execute(message, args) { let out = ''; globalThis.commands.forEach((cmd) => { if (cmd.hidden) return; out = `${out}${cmd.name} - ${cmd.description}\n` }); return await message.reply({ content: `available commands:\n${out}` }); } }