Basic usage
Open Telegram, find the RemoteAgent.CHAT bot, and type any prompt:Streaming output
Output is streamed in real time from your agent to Telegram. For long responses, messages are split automatically at Telegram’s 4096-character limit. You may see multiple messages appear in sequence for a single command.Streaming means you see results as they are produced — not all at once at
the end. For a typical “fix this bug” task, you will often see the AI’s
reasoning, the file it is editing, and the final diff, all appearing
progressively within a few seconds.
Aborting a running task
If you want to stop the agent mid-task — for example, if it is taking too long or going in the wrong direction — send:Continuing a task
When the agent is waiting for your input — for example, if it asked a clarifying question — just reply naturally with your next message. The agent will automatically resume from where it left off. There is no explicitcontinue command. If the agent is waiting, any message you send continues the task.
Examples by category
Code review
Bug fixing
Feature development
Explanation
Git
Message length and splitting
Telegram has a hard limit of 4096 characters per message. RemoteAgent.CHAT handles this automatically:- Output is split into consecutive messages at the character boundary
- Code blocks are preserved — splits never happen in the middle of a code fence when possible
- Very long diffs or file listings may produce several messages in sequence