process.env.BOT_TOKEN = 'токен';const { Bot } = require('grammy');const bot = new Bot(process.env.BOT_TOKEN)bot.command('start', (ctx) => ctx.reply('текст'));bot.command('skilllist', (ctx) => ctx.reply('текст'));bot.command('thedogeatsapencil', (ctx) => {ctx.replyWithPhoto('ссылка', { caption: текст' }); });bot.on(':text', (ctx) => ctx.reply('Вы написали - ' + ctx.message.text ));bot.on(':sticker', (ctx) => ctx.reply('текст'));bot.start();console.log('текст');