This will automatically delete bot mention messages after 5 seconds.
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const sleep = async ms => new Promise(r => setTimeout(r, ms));
await sleep(5000) // 5 seconds
await lib.discord.channels['@0.2.0'].messages.destroy({
channel_id: context.params.event.channel_id,
message_id: context.params.event.id,
});