Install
openclaw skills install telegram-send-fileSend local files, URLs, or reusable Telegram file_ids into a Telegram chat via Bot API. Use when the task is to deliver a file to Telegram, especially from i...
openclaw skills install telegram-send-fileUse this skill for file delivery to Telegram, not for ordinary chat messages.
file_id# Use current OpenClaw Telegram context when available
python3 scripts/telegram_send_file.py --file document.pdf
# Explicit target
python3 scripts/telegram_send_file.py --chat-id -1001234567890 --topic-id 3 --file screenshot.png
# Batch mode (preserves topic/thread)
python3 scripts/telegram_send_file.py --files a.pdf b.png --caption "Batch delivery"
# Send by URL or prior Telegram file_id
python3 scripts/telegram_send_file.py --url https://example.com/report.pdf
python3 scripts/telegram_send_file.py --file-id AQAD...
chat_id and topic_id first.--chat-id and optionally --topic-id.file_id sends, default to document delivery unless you intentionally extend the script.file_id sending.references/api_reference.md.