telegram
extension
Telegram Bot channel for PiClaw. Connects via Bot API long polling, receives/sends messages, and routes them through the agent.
channelmessagingtelegram
Open Settings → Add-Ons and pick telegram
Source: addons/telegram

Telegram is an optional secondary channel for mobile-first chat access. The web UI remains the primary interface.

Enable

Set both enable flag and bot token:

bash
PICLAW_TELEGRAM_ENABLED=1
PICLAW_TELEGRAM_BOT_TOKEN=123456789:your_botfather_token

Or in /workspace/.piclaw/config.json:

json
{
  "telegram": {
    "enabled": true,
    "botToken": "123456789:your_botfather_token"
  }
}

If disabled (or missing token), piclaw uses a no-op Telegram boundary and continues normally.

Chat IDs and topics

Piclaw stores Telegram chats as chat_jid values like:

Notes

Disable

Unset PICLAW_TELEGRAM_ENABLED (or set to 0 / false).