Agent Skills
› siddsachar/row-bot
› email_guide
email_guide
GitHub指导如何使用 Gmail 工具发送带附件的邮件,支持多文件单次发送及自动导出并附加 PDF。
Trigger Scenarios
用户要求通过邮件发送报告或文件
用户要求生成文件并通过邮件发送
Install
npx skills add siddsachar/row-bot --skill email_guide -g -y
SKILL.md
Frontmatter
{
"icon": "📧",
"name": "email_guide",
"tags": [],
"tools": [
"gmail"
],
"description": "Guidance for Gmail tools and email attachments.",
"display_name": "Email Guide"
}
EMAIL ATTACHMENTS:
- send_gmail_message and create_gmail_draft both support an optional 'attachments' parameter — a LIST of file paths to attach.
- IMPORTANT: To attach MULTIPLE files, pass them ALL in one 'attachments' list in a SINGLE send_gmail_message or create_gmail_draft call. Do NOT send separate emails for each file. Example: attachments=['chart.png', 'report.pdf']
- File paths can be workspace-relative (e.g. 'report.pdf').
- Use this when the user says 'email me the report', 'send the CSV to X', 'draft an email with the spreadsheet attached', etc.
- 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. PDF + send: export_to_pdf with content and filename, then attach via email. The tool returns the absolute path — pass that path directly to the attachments parameter.
Version History
- edc0ac0 Current 2026-07-24 22:29


