Telegram (after install)
Add BotFather tokens and register the webhook after installing a catalog Telegram agent.
Listings with the Telegram chip ship a channel file that reads bot credentials from the environment. You create the bot and register Eve’s webhook on your deployment.
Official setup: Telegram channel · eve.dev/integrations
What the listing ships
import { telegramChannel } from "eve/channels/telegram";
export default telegramChannel();Credentials come from env (see the listing SETUP.md / .env.example):
TELEGRAM_BOT_TOKENTELEGRAM_WEBHOOK_SECRET_TOKEN
Adapt after install
- Message @BotFather, create a bot, put the token in
.env. - Set
TELEGRAM_WEBHOOK_SECRET_TOKENto a random secret. - Deploy (or expose a public URL), then register the webhook at Eve’s Telegram route:
curl -X POST "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/setWebhook" \
-H "Content-Type: application/json" \
-d '{"url":"https://<your-deployment>/eve/v1/telegram",
"secret_token":"'"$TELEGRAM_WEBHOOK_SECRET_TOKEN"'",
"allowed_updates":["message","callback_query"]}'- DM the bot to verify. For group
@mentions, passbotUsernamein the channel file as described in Eve’s docs.
Handler customization and delivery details: Telegram on Eve.
Agents using Telegram
Chief of Staff (WhatsApp)
A pocket chief of staff: captures tasks from quick messages, tracks commitments, and remembers what matters across weeks.
Telegram Assistant Starter
Message a Telegram bot and it replies per your instructions. The blank canvas — edit instructions.md and nothing else.
Uptime Watch Starter
Checks one URL every 5 minutes and Telegram-alerts you only when it goes down or recovers.
Receipt Scanner Starter
Photo a receipt in Telegram and get merchant, total, category, and line items back. Demos attachments.