A Telegram group bot built with TypeScript, Bun, Effect, and Telly.
SuperSeriousBot has grown with its groups for years. It combines AI, media, search, reminders, social tools, and group history in one bot.
- AI: native rich replies, semantic search, image and video generation, custom songs, summaries, and transcription
- Native Telegram UI: rich tables, lists, details, charts, dates, links, and command dashboards
- Group memory: semantic
/search, citations, member personas, and group lore - Media:
/set,/get,/dl, automatic reel downloads, memes, and quotes - Social:
/summon,/habit,/highlight, reactions, mentions, andsedcorrections - Utilities: reminders, scheduled AI tasks, football alerts, weather, books, games, and translation
- Operations: durable Telly inboxes and jobs, polling or webhooks, command quotas, and failure records
Run /help to see the commands enabled by the configured API keys.
/tl uses Google Translate's batch web endpoint through google-translate-api-x, without an API key. Use /tl Bonjour for English, /tl fr - Good morning for a specific language, or reply to a message with /tl [language]. Provider outages and rate limits are reported separately from unknown languages.
Requirements:
- Bun 1.4
ffmpegyt-dlp
git clone https://github.com/obviyus/SuperSeriousBot
cd SuperSeriousBot
cp .env.example .env
bun install --frozen-lockfile
bun run devRequired environment values:
TELEGRAM_TOKEN: token from @BotFatherQUOTE_CHANNEL_ID: private channel used to archive quotesTURSO_DATABASE_URL: LibSQL or Turso database URLTURSO_AUTH_TOKEN: database token
Optional integrations:
OPENROUTER_API_KEY: AI, image, video, transcription, summaries, search, and cronOPENROUTER_BASE_URL: optional OpenRouter-compatible endpoint for local testingBASED_BASE_URL,BASED_MODEL: local OpenAI-compatible chat endpoint (include/v1) and served model ID for/basedKIE_API_KEY: song generationCOBALT_URL: media downloadsNANO_GPT_API_KEY: URL and YouTube extractionGOODREADS_API_KEY,WOLFRAM_APP_ID,WEATHERAPI_API_KEY, andWAQI_API_KEY
/based [query] streams a text answer from the configured local model. Reply to a
text message to include it as context. It has its own chat/user whitelist and a
40-request daily limit, like /ask. Enable it for a group through /settings.
It needs no OpenRouter key and does not use /model ask or /thinking settings.
Use /ask for supported images. /based rejects media. Requests stop after two minutes; responses
are capped at 1,024 tokens. There is no cloud fallback when the local server is off.
Use a private Tailscale HTTPS route to the server's loopback listener, as with Cobalt. Allow only the bot host to reach that route. Keep the endpoint and model ID in the app environment; do not expose the unauthenticated model API publicly.
Operations:
ADMINS: space-separated Telegram user IDsUPDATER:pollingorwebhookWEBHOOK_URL: public base URL in webhook modePORT: webhook server port, default8443LOGGING_CHANNEL_ID: optional Telegram failure logTELLY_STATE_DIRECTORY: local inbox and job database directory, default./dbTELEGRAM_API_ROOT: custom Bot API root for local Test Server harnesses
Evaluate search with a private JSON file containing [{ "chatId": -100123, "question": "Who is the biggest tech nerd here?" }]:
bun run search:evaluate /path/to/private-questions.jsonThis reads chat data and calls the configured AI service without sending Telegram messages or writing search events. Each answer gets a fresh review against its complete context. Results are printed as JSON lines. Keep question files and reports private.
cp .env.example ssgbot.env
docker compose up --buildThe image installs ffmpeg and yt-dlp. The db volume stores Telly's durable inbox and scheduled jobs.
bun run checkThe test suite drives the real Telly handler against its hermetic Bot API fake. It also checks compatibility with the schema produced by all 33 Python migrations.
The local Test Server harness uses leased QA credentials from the Telly skill:
bun run test:e2e
TELEGRAM_E2E_GROUP=1 bun run test:e2e
TELEGRAM_E2E_STATIC_RICH=1 TELEGRAM_E2E_GROUP=1 bun run test:e2e
TELEGRAM_E2E_WEBHOOK=1 bun run test:e2eOperator commands:
bun run operator usage --days 30 --status failed
bun run operator search-index --chat-id -1001234567890
bun run operator search-memory --chat-id -1001234567890Before deploying the incremental search indexer to an existing database, run
bun run operator migrate-query-schema with that database's environment.
The migration adds the generation column to existing search progress and replaces
the source-change triggers in one transaction. It preserves existing rows and the
previous indexer's append notifications, and is safe to run again. Run it separately
before replacing the running bot; startup does not upgrade existing progress.
Indexing saves progress separately for each chat and embedding configuration. Unchanged chats do no indexing work. New messages extend the unfinished windows and speaker groups. Older imports, source edits or deletes, and author changes request the existing full-history pass. Existing embedding ranges retain their current reuse behavior. Each pass claims a generation and captures a fixed message boundary. Later appends remain pending without invalidating that prefix. Backfills, edits, deletes, author changes, and newer workers invalidate the claim. A failed or superseded pass cannot advance progress.
- Telly owns Telegram transport, updates, routing, persistence, and jobs.
- Vercel AI SDK owns text, structured output, streaming, embeddings, images, and video.
- Effect owns typed effects, services, interruption, concurrency, and shutdown.
- Bun owns packages, tests, development, and the production runtime.
- Turso stores bot and search data.
