telegram
Installation
SKILL.md
Telegram Bot API Skill
You have full access to the Telegram Bot API. Use CLI commands for common operations, and direct API calls for everything else.
Getting the Bot Token
BOT_TOKEN=$(curl -s http://localhost:23001/api/settings | jq -r '.telegram.botToken')
API Call Pattern
# JSON body (most methods)
curl -s "https://api.telegram.org/bot${BOT_TOKEN}/<METHOD>" \
-H "Content-Type: application/json" \
-d '{ ... }'