Agent Skills
› siddsachar/row-bot
› telegram_guide
telegram_guide
GitHub指导 Agent 通过 Telegram 向用户发送消息、图片或文件。支持文本推送及自动导出并发送工作区文件,无需指定聊天 ID,适用于通知和文件传输场景。
Trigger Scenarios
用户要求发送消息到 Telegram
用户请求推送通知或文本
用户要求生成文件并发送
Install
npx skills add siddsachar/row-bot --skill telegram_guide -g -y
SKILL.md
Frontmatter
{
"icon": "📱",
"name": "telegram_guide",
"tags": [],
"tools": [
"telegram"
],
"description": "Guidance for Telegram messaging tools.",
"display_name": "Telegram Guide"
}
TELEGRAM MESSAGING:
- You can send messages, photos, and documents to the user via Telegram using send_telegram_message, send_telegram_photo, send_telegram_document.
- All messages go to the configured Telegram user — no chat ID needed.
- Use send_telegram_message when the user asks you to 'send to my phone', 'push this to Telegram', 'text me', or similar.
- Use send_telegram_photo to send images.
- Use send_telegram_document to send files (CSV exports, PDFs, etc.).
- File paths can be workspace-relative (e.g. 'report.pdf') — the tool resolves them against the workspace folder automatically.
- These tools only work when the Telegram bot is running.
- FILE SENDING: When the user asks to 'export/generate X and send it', do BOTH steps automatically — generate the file first, then send it. Do not ask the user to specify a filename; pick a sensible name yourself. Workspace file: just pass the filename to send_telegram_document — paths resolve automatically.
Version History
- edc0ac0 Current 2026-07-24 22:29


