Email Helper
Generate and suggest formal or informal email drafts, reply templates, and organize emails by category and priority in Chinese and English.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 34 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (email drafts, templates, classification) align with the included Python code and SKILL.md. The functionality (generate templates, polish text, save sent-email records, simple stats) matches the stated purpose; no unrelated credentials, binaries, or surprising capabilities are requested.
Instruction Scope
SKILL.md explicitly declares file read/write for template storage and shows a data path (~/.openclaw/workspace/email-helper/templates.json). The code reads/writes JSON templates and a sent_emails.json in the skill directory (DATA_DIR = Path(__file__).parent). This is a minor inconsistency about where files are stored; otherwise instructions stay within the declared email-drafting scope and do not attempt to read other system files or exfiltrate data.
Install Mechanism
No install spec is provided and no external installers or downloads are required. The skill includes a single Python file and will only write JSON files next to that code — low installation risk.
Credentials
No environment variables, credentials, or external API keys are requested. The code does not reference any secret-bearing env vars. Required permissions (local file read/write for templates and sent emails) are proportionate to the stated purpose.
Persistence & Privilege
always is false and the skill does not request persistent system-wide privileges. It stores data locally in files it manages and does not modify other skills or global agent settings.
Assessment
This skill looks coherent and self-contained: it generates and stores email templates/drafts locally and does not ask for credentials or make network calls. Before installing, consider: 1) where the skill will store its files — SKILL.md suggests ~/.openclaw/workspace/... but the code writes to the skill directory (templates.json and sent_emails.json); confirm the actual storage path so you can manage or encrypt any sensitive drafts, 2) the skill will persist copies of generated/sent emails locally (review and clean sent_emails.json if it will contain private content), and 3) if you later enable features like "邮件客户端集成" or automatic sending, those will require additional permissions and external access — review those changes then. If you want extra assurance, inspect the full email_helper.py file yourself (it’s included) to verify there are no hidden network calls in the truncated portion.Like a lobster shell, security has layers — review code before you run it.
Current versionv2.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
📧 Email Helper - 邮件助手
触发规则
关键词:
- 写邮件、邮件草稿、回复邮件
- 邮件模板、邮件格式
- 邮件分类、整理邮件
场景:
- 用户需要写邮件但不知道如何开头
- 用户需要回复工作邮件
- 用户需要整理收件箱
功能描述
核心功能
-
邮件草稿生成
- 根据目的生成邮件
- 正式/非正式语气
- 中英文支持
-
邮件回复建议
- 自动回复草稿
- 语气调整
- 快捷回复
-
邮件模板
- 求职信
- 请假申请
- 商务合作
- 感谢信
-
邮件分类
- 工作/个人分类
- 优先级标记
- 归档建议
权限需求
- 文件读写(模板存储)
- 外部 API(邮件客户端集成)
示例对话
用户:帮我写一封请假邮件
助手:好的!帮你起草请假邮件:
---
**主题:** 请假申请 - [你的名字] - [日期]
尊敬的 [领导姓名]:
您好!
因 [请假原因],我需要在 [开始日期] 至 [结束日期] 期间请假 [天数] 天。
请假期间的工作已安排如下:
1. [工作交接安排 1]
2. [工作交接安排 2]
如有紧急情况,可通过 [联系方式] 联系我。
恳请批准,谢谢!
此致
敬礼
[你的名字]
[日期]
---
需要我调整语气或内容吗?
用户:写一封商务合作邮件
助手:好的!商务合作邮件草稿:
---
**主题:** 商务合作洽谈 - [公司名]
尊敬的 [对方姓名/团队]:
您好!
我是 [公司名] 的 [职位][你的名字]。我们专注于 [业务领域]...
希望能与贵方探讨合作机会...
期待您的回复!
祝好,
[你的名字]
---
数据存储
// ~/.openclaw/workspace/email-helper/templates.json
{
"templates": [
{
"name": "请假申请",
"category": "工作",
"content": "..."
}
]
}
待办事项
- 邮件模板库
- 语气调整
- 自动回复
- 邮件客户端集成
版本: 1.0.0 创建日期: 2026-03-16 作者: 小鬼 👻
Files
3 totalSelect a file
Select a file to preview.
Comments
Loading comments…
