Install
openclaw skills install telegram-bot-managerManage and configure Telegram bots for OpenClaw. Use when setting up Telegram integrations, troubleshooting bot connectivity, configuring bot tokens, or managing Telegram channel/webhook settings. Handles bot registration, token validation, and network connectivity checks for api.telegram.org.
openclaw skills install telegram-bot-managerCreate bot via BotFather
/newbot command1234567890:ABCdefGHIjklMNOpqrsTUVwxyz)Configure in OpenClaw
# Test Telegram API connectivity
curl -I https://api.telegram.org
# Check bot token validity
curl -s "https://api.telegram.org/bot<YOUR_TOKEN>/getMe"
When api.telegram.org is unreachable:
Check network access
curl -I -m 10 https://api.telegram.org
Verify DNS resolution
nslookup api.telegram.org
Test alternative endpoints
curl -I https://telegram.org
See OPENCLAW_CONFIG.md for detailed configuration steps.
Common Telegram bot commands for BotFather:
/newbot - Create a new bot/mybots - Manage your bots/setdescription - Set bot description/setabouttext - Set about text/setuserpic - Set bot profile picture/setcommands - Set bot commands/token - Generate new token/revoke - Revoke current token/setprivacy - Configure privacy modeSee WEBHOOK_SETUP.md for webhook configuration.
"Connection timed out"
"Invalid token"
"Bot not responding"
/startUse the test script in scripts/test_bot.py for automated validation.