Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Email Helper - 邮件助手

提供中英文邮件草稿生成、回复建议、模板应用及收件箱邮件分类整理功能,支持正式与非正式语气调整。

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 25 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
!
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.
What to consider before installing
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.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk9716c6vgcvkwqfapyby6zjgmh83wxk8

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

📧 Email Helper - 邮件助手

触发规则

关键词:

  • 写邮件、邮件草稿、回复邮件
  • 邮件模板、邮件格式
  • 邮件分类、整理邮件

场景:

  • 用户需要写邮件但不知道如何开头
  • 用户需要回复工作邮件
  • 用户需要整理收件箱

功能描述

核心功能

  1. 邮件草稿生成

    • 根据目的生成邮件
    • 正式/非正式语气
    • 中英文支持
  2. 邮件回复建议

    • 自动回复草稿
    • 语气调整
    • 快捷回复
  3. 邮件模板

    • 求职信
    • 请假申请
    • 商务合作
    • 感谢信
  4. 邮件分类

    • 工作/个人分类
    • 优先级标记
    • 归档建议

权限需求

  • 文件读写(模板存储)
  • 外部 API(邮件客户端集成)

示例对话

用户:帮我写一封请假邮件
助手:好的!帮你起草请假邮件:

---
**主题:** 请假申请 - [你的名字] - [日期]

尊敬的 [领导姓名]:

您好!

因 [请假原因],我需要在 [开始日期] 至 [结束日期] 期间请假 [天数] 天。

请假期间的工作已安排如下:
1. [工作交接安排 1]
2. [工作交接安排 2]

如有紧急情况,可通过 [联系方式] 联系我。

恳请批准,谢谢!

此致
敬礼

[你的名字]
[日期]
---

需要我调整语气或内容吗?

用户:写一封商务合作邮件
助手:好的!商务合作邮件草稿:

---
**主题:** 商务合作洽谈 - [公司名]

尊敬的 [对方姓名/团队]:

您好!

我是 [公司名] 的 [职位][你的名字]。我们专注于 [业务领域]...

希望能与贵方探讨合作机会...

期待您的回复!

祝好,
[你的名字]
---

数据存储

// ~/.openclaw/workspace/email-helper/templates.json
{
  "templates": [
    {
      "name": "请假申请",
      "category": "工作",
      "content": "..."
    }
  ]
}

待办事项

  • 邮件模板库
  • 语气调整
  • 自动回复
  • 邮件客户端集成

版本: 1.0.0 创建日期: 2026-03-16 作者: 小鬼 👻

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…