Telegram Bot Setup
1. Create a bot
- Open Telegram, search for
@BotFather - Send
/newbot - Choose a name (e.g.,
AI Dev Station) - Choose a username (e.g.,
ai_dev_station_bot) - Copy the token — it looks like:
1234567890:ABCdefGHIjklmNOPqrStuVWXyz
2. Get your chat ID
- Start a chat with your new bot
- Send any message (e.g.,
/start) - Visit:
https://api.telegram.org/bot<YOUR_TOKEN>/getUpdates - Look for
"chat":{"id":<YOUR_CHAT_ID>}in the response
3. Configure
Add these to .env on the Mac Mini:
bash
TELEGRAM_BOT_TOKEN=1234567890:ABCdefGHIjklmNOPqrStuVWXyz
TELEGRAM_CHAT_ID=1234567894. Available commands
| Command | Action |
|---|---|
/start | Show welcome message + main menu |
/menu | Show main interactive menu |
/status | Check pipeline status, active tasks, pending reviews |
/pause | Pause pipeline |
/resume | Resume pipeline |
/approve | Approve current pending review |
/reject | Reject current pending review |
/llm studio | Use Studio's Ollama |
/llm cloud | Use cloud API |
/llm auto | Auto-select |
/help | List all commands |
The bot also has inline keyboards for quick actions — tap the buttons right in the chat instead of typing commands.