← 返回 Skills 市场
Email Helper - 邮件助手
作者
cp3d1455926-svg
· GitHub ↗
· v1.0.0
· MIT-0
137
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install email-helper
功能描述
提供中英文邮件草稿生成、回复建议、模板应用及收件箱邮件分类整理功能,支持正式与非正式语气调整。
使用说明 (SKILL.md)
📧 Email Helper - 邮件助手\r
\r
触发规则\r
\r 关键词:\r
- 写邮件、邮件草稿、回复邮件\r
- 邮件模板、邮件格式\r
- 邮件分类、整理邮件\r \r 场景:\r
- 用户需要写邮件但不知道如何开头\r
- 用户需要回复工作邮件\r
- 用户需要整理收件箱\r \r
功能描述\r
\r
核心功能\r
\r
- 邮件草稿生成\r
- 根据目的生成邮件\r
- 正式/非正式语气\r
- 中英文支持\r \r
- 邮件回复建议\r
- 自动回复草稿\r
- 语气调整\r
- 快捷回复\r \r
- 邮件模板\r
- 求职信\r
- 请假申请\r
- 商务合作\r
- 感谢信\r \r
- 邮件分类\r
- 工作/个人分类\r
- 优先级标记\r
- 归档建议\r \r
权限需求\r
\r
- 文件读写(模板存储)\r
- 外部 API(邮件客户端集成)\r \r
示例对话\r
\r
用户:帮我写一封请假邮件\r
助手:好的!帮你起草请假邮件:\r
\r
---\r
**主题:** 请假申请 - [你的名字] - [日期]\r
\r
尊敬的 [领导姓名]:\r
\r
您好!\r
\r
因 [请假原因],我需要在 [开始日期] 至 [结束日期] 期间请假 [天数] 天。\r
\r
请假期间的工作已安排如下:\r
1. [工作交接安排 1]\r
2. [工作交接安排 2]\r
\r
如有紧急情况,可通过 [联系方式] 联系我。\r
\r
恳请批准,谢谢!\r
\r
此致\r
敬礼\r
\r
[你的名字]\r
[日期]\r
---\r
\r
需要我调整语气或内容吗?\r
\r
用户:写一封商务合作邮件\r
助手:好的!商务合作邮件草稿:\r
\r
---\r
**主题:** 商务合作洽谈 - [公司名]\r
\r
尊敬的 [对方姓名/团队]:\r
\r
您好!\r
\r
我是 [公司名] 的 [职位][你的名字]。我们专注于 [业务领域]...\r
\r
希望能与贵方探讨合作机会...\r
\r
期待您的回复!\r
\r
祝好,\r
[你的名字]\r
---\r
```\r
\r
## 数据存储\r
\r
```json\r
// ~/.openclaw/workspace/email-helper/templates.json\r
{\r
"templates": [\r
{\r
"name": "请假申请",\r
"category": "工作",\r
"content": "..."\r
}\r
]\r
}\r
```\r
\r
## 待办事项\r
\r
- [ ] 邮件模板库\r
- [ ] 语气调整\r
- [ ] 自动回复\r
- [ ] 邮件客户端集成\r
\r
---\r
\r
**版本:** 1.0.0\r
**创建日期:** 2026-03-16\r
**作者:** 小鬼 👻\r
安全使用建议
This skill appears to be a local email template/draft generator and does not actually connect to your mailbox. Before installing:
- Be aware the skill will create and update JSON files (templates.json and sent_emails.json) in the skill's directory (the code uses the skill folder; SKILL.md mentions ~/.openclaw/... — confirm where files will end up on your system).
- The description/SKILL.md claim inbox classification and '整理收件箱', but the code does not access any mailboxes or perform real inbox organization. If a future version requests email credentials or network access to integrate with your mail client, treat that as a sensitive escalation and review carefully.
- No credentials or network access are requested now, which limits remote exfiltration risk, but generated emails and any sensitive content you paste into the skill will be stored locally—consider whether that is acceptable for your workflow.
- If you want actual client integration/automatic replies, expect that additional permissions (SMTP/IMAP/OAuth tokens) would be required; only grant those if you trust the publisher and have reviewed the code.
- If you proceed, consider running the skill in a restricted/sandboxed environment or examining/adjusting the DATA_DIR path in the Python file to point to a location you control (e.g., a private workspace) to avoid unexpected file placement.
Overall: the implementation is coherent for local template generation but inconsistent with some advertised capabilities; this looks more like incomplete or sloppy documentation than malicious behavior, but exercise caution and validate file storage location and future permission requests.
功能分析
Type: OpenClaw Skill
Name: email-helper
Version: 1.0.0
The Email Helper skill is a legitimate utility for generating email drafts and templates based on user queries. The Python script (email_helper.py) implements template-based generation, tone adjustment, and local statistics tracking using standard libraries without any network activity, unauthorized file access, or code execution vulnerabilities. The instructions in SKILL.md and README.md are consistent with the provided code logic.
能力评估
Purpose & Capability
Name/description promise: draft generation, reply suggestions, templates, and inbox classification. Actual code: generates templates (ZH/EN), polishes text, suggestions, saves templates/sent emails to files, and provides basic stats. It does not integrate with any mailbox or perform inbox classification/organizing despite claiming that capability. Also SKILL.md and code disagree on the templates storage path (SKILL.md: ~/.openclaw/... , code: same directory as the skill).
Instruction Scope
SKILL.md instructs storing templates and shows sample dialogs; it requests file read/write for template storage and explicitly does not request external API access. The runtime code only reads/writes local JSON files in the skill directory and does not access environment variables, network endpoints, or other system config. The mismatch of the documented storage path vs. actual DATA_DIR is a minor inconsistency to be aware of.
Install Mechanism
No install spec and no external downloads — instruction-only plus an included Python file. Nothing is pulled from external URLs or package registries; no archives or installers are executed.
Credentials
The skill declares no required environment variables, no credentials, and requires only local file read/write. That matches the code, which does not use network, OS credentials, or secret env vars.
Persistence & Privilege
always:false and user-invocable:true (normal). The skill writes template and sent email JSON files to its installation directory; this is expected but users should note generated content will be stored on disk.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install email-helper - 安装完成后,直接呼叫该 Skill 的名称或使用
/email-helper触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
常见问题
Email Helper - 邮件助手 是什么?
提供中英文邮件草稿生成、回复建议、模板应用及收件箱邮件分类整理功能,支持正式与非正式语气调整。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 137 次。
如何安装 Email Helper - 邮件助手?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install email-helper」即可一键安装,无需额外配置。
Email Helper - 邮件助手 是免费的吗?
是的,Email Helper - 邮件助手 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Email Helper - 邮件助手 支持哪些平台?
Email Helper - 邮件助手 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Email Helper - 邮件助手?
由 cp3d1455926-svg(@cp3d1455926-svg)开发并维护,当前版本 v1.0.0。
推荐 Skills