Agent Skills
› siddsachar/row-bot
› telegram_guide
telegram_guide
GitHub指导Agent通过Telegram发送消息、图片或文档。适用于用户要求推送通知或导出文件并发送的场景,支持自动解析工作区路径及生成文件名。
Trigger Scenarios
用户要求将内容推送到Telegram
用户要求发送图片到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


