Install
openclaw skills install telegram-topic-message-senderWrap sending a Telegram message to a fixed topic into one script call. Use when user wants to quickly send notifications/messages to a specific Telegram topic by running a script.
openclaw skills install telegram-topic-message-senderThis skill packages Telegram topic messaging into a reusable script.
It now uses openclaw message send directly (no bot token env required).
message_thread_id)openclaw message sendscripts/send-topic-message.shTG_DEFAULT_CHANNEL: default channel (default telegram)TG_DEFAULT_CHAT_ID: default chat id (e.g. -1003574630717)TG_DEFAULT_TOPIC_ID: default topic id (e.g. 96)# 1) Use defaults from env (recommended)
export TG_DEFAULT_CHANNEL='telegram'
export TG_DEFAULT_CHAT_ID='-1003574630717'
export TG_DEFAULT_TOPIC_ID='96'
bash skills/telegram-topic-message-sender/scripts/send-topic-message.sh "测试消息"
# 2) Override target on call
bash skills/telegram-topic-message-sender/scripts/send-topic-message.sh \
--channel telegram \
--chat-id -1003574630717 \
--topic-id 96 \
"部署完成,已上线 ✅"