telegram-bot-builder

Installation
SKILL.md

Telegram Bot Builder

Build production-grade Telegram bots. This skill covers the full lifecycle: architecture selection, framework choice, database integration, deployment, monetization, and security.

Minimal Hello World

Python (aiogram 3.x):

import asyncio
from aiogram import Bot, Dispatcher, Router, F
from aiogram.types import Message

router = Router()

@router.message(F.text == "/start")
async def start(message: Message) -> None:
    await message.answer("Hello! I'm alive.")
Installs
3
GitHub Stars
5
First Seen
May 13, 2026
telegram-bot-builder — qwwiwi/agentos-skills