
Talk to Memo from Telegram: connect a bot token once, message your bot from any device, and Memo replies through the same memory, intent, and mood pipeline as desktop chat. New in v3.9.0.
Unlike the WhatsApp bridge, this uses Telegram's official Bot API — a small, purpose-built long-polling client (internal/telegram), no bot framework dependency, no phone-number login.
/newbot123456:ABC-DEF...The token is encrypted at rest with the same machine key providers.json uses.
A bot token is reachable by anyone who finds it, so Memo locks it down from the first message:
This is built in from day one, not bolted on later.
Once you're the owner, messaging the bot is messaging Memo:
Identity.UILanguage setting as the rest of the app| Command | Effect |
|---|---|
/new |
Start a fresh session |
/agent on|off |
Toggle tool-use mode |
/web on|off |
Toggle web search |
/auto-perm on|off |
Auto-approve agent tool calls vs. ask yes/no in-chat |
/status |
Model, memory, web, and agent state |
/help |
Full command list |
Routines are fully usable without opening the Routines tab. Three agent tools back this:
| Tool | Description |
|---|---|
create_routine |
Create a scheduled automation from plain language |
list_routines |
List existing routines with their IDs |
cancel_routine |
Cancel by ID (learned from list_routines, never guessed) |
Example: "every day at 9am send me the latest AI news" creates a routine that runs the full agent pipeline — web search included — and delivers the result to this chat.
Hard security rule: delivery targets are never chosen by the model. A routine created from Telegram always delivers to you; another connected channel (e.g. WhatsApp self-chat) is only added if your own text explicitly asks for it and that channel is actually connected.
A Telegram bot can only ever see messages sent directly to it — there is no equivalent of WhatsApp's full account visibility without a much heavier phone-number-login user API. This is a chat interface only, not a message-reading/sending agent tool: there's no telegram_send equivalent of whatsapp_send yet.