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.")