using-telegram-bot

Installation
SKILL.md

Telegram (Telegraf) Skill — Node.js

Short guide to build Telegram bots with telegraf (Node.js).

Overview

Minimal polling bot

// bot.js
const { Telegraf, Markup } = require('telegraf');
const bot = new Telegraf(process.env.BOT_TOKEN);

bot.start(ctx => ctx.reply('Welcome! I can help with commands.'));
Installs
20
GitHub Stars
126
First Seen
Mar 1, 2026
using-telegram-bot — besoeasy/open-skills