email 发布
v1.0.0根据用户要点自动生成正式或友好风格的英文或中文邮件正文,支持主题和收件人设置。
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description match the SKILL.md: it generates English/Chinese email bodies from user-provided points, tone, subject, and recipient. It requests no credentials, binaries, or installs, which is appropriate for a text-generation helper.
Instruction Scope
Runtime steps are limited to parsing user points, selecting templates for tone, organizing paragraphs, and outputting text. The instructions do not read files, access environment variables, or transmit data to external endpoints.
Install Mechanism
There is no install spec and no code files; this is instruction-only, so nothing is downloaded or written to disk.
Credentials
The skill declares no required environment variables, credentials, or config paths. That is proportionate for a drafting assistant that does not send email or integrate with external mail services.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request persistent/system-level privileges or modify other skills. Autonomous invocation is allowed by platform default but not unusual here.
Assessment
This skill is instruction-only and appears low-risk: it drafts email text but does not send emails or require credentials. Before installing, consider that the skill's source/homepage is unknown — if you need stronger trust, prefer skills from known authors. Avoid pasting sensitive secrets, full personal data, or authentication tokens into prompts (the skill will include any pasted content in drafts). Always review generated email content before sending and verify recipient addresses and tone.Like a lobster shell, security has layers — review code before you run it.
latest
name: 邮件生成助手 description: 根据用户提供的要点,自动生成正式或友好的英文/中文邮件。 trigger: 用户说“写封邮件”、“生成邮件”或“帮我起草邮件”。 input:
- 收件人 (string, required)
- 主题 (string, optional)
- 要点列表 (array, required)
- 语气 (enum: 正式/友好, default: 正式) steps:
- 解析用户给出的邮件要点。
- 根据语气选择模板(正式:Dear X, ...;友好:Hi X, ...)。
- 将要点组织成连贯段落,添加适当的开场和结尾。
- 输出完整邮件正文,并提示用户可修改。 output: 纯文本格式的邮件内容,带标题和落款。 example: user: 帮我写封正式邮件给 john@example.com,主题是项目进度汇报。要点:1. 已完成前端开发;2. 后端预计周五完成;3. 需要下周安排测试。 assistant: 邮件正文...
Comments
Loading comments...
