telegram
Installation
SKILL.md
Telegram Bot
Send messages and manage bots via the Telegram Bot API.
Environment Variables
TELEGRAM_BOT_TOKEN- Bot token from @BotFather
Send message
curl -s -X POST \
"https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage" \
-H "Content-Type: application/json" \
-d '{"chat_id":"CHAT_ID","text":"Hello from ThinkFleetBot!"}' | jq '{ok, result: {message_id, chat: .result.chat.title}}'