Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

email-response-drafting电子邮件回复起草

Agent Skill

email-response-drafting 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,869

周安装

122

GitHub Stars

公开资料未说明

下载量

1,005
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:email-response-drafting(电子邮件回复起草)
来源仓库:https://github.com/stevenobiajulu/email-response-drafting
安装命令:
openclaw skills install email-response-drafting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install email-response-drafting

简介

根据原始邮件内容起草语气匹配、格式规范的回复草稿。

  • 适用于日常办公中快速生成专业回复,保持沟通一致性。
  • 自动对齐邮件线程、保留上下文并适配正式或非正式语调。
  • 仅生成文本草稿,不包含实际发送功能需用户手动确认后操作。
  • 使用前请核对敏感信息是否已脱敏,防止意外泄露。email-response-drafting 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
email-drafting
description
>-
license
Apache-2.0
compatibility
>-
metadata
author
UseJunior
version
0.1.0

Email Response Drafting

This skill covers drafting email replies that sound human, thread correctly, and render properly across email clients. It is scoped to response drafting — not marketing campaigns or mass outreach.

Draft-First: The Non-Negotiable Rule

Never send an email without the user's explicit approval. The workflow:

  1. Compose the draft (in markdown, in the agent's chat, or in a file)
  2. Present recipients, subject, and body to the user for review
  3. Save as draft to Outlook (or the user's email client) if available
  4. Wait for the user to say "send," "send now," "reply now," or equivalent
  5. Send only after explicit approval

If intent is ambiguous ("looks good" could mean "I approve the draft" or "I'll send it myself"), ask for one-line confirmation before sending.

Voice and Tone Matching

The cardinal rule: match the sender's register.

RelationshipToneExample opener
Internal team / contractorsShort, direct, no filler"Sent the updated file. Let me know if anything looks off."
Existing clients (high trust)Warm but efficient"Quick update — the document is ready for your review."
New contacts / cold repliesProfessional, value-firstLead with what is relevant to them, not your credentials
Formal threadsMatch their formalityIf they write "Dear Steven," reply with "Dear [Name]," not "Hey!"

Calibration signals

Read the sender's email for cues:

  • Length — if they wrote 2 sentences, don't reply with 5 paragraphs
  • Greeting style — mirror their "Hi" / "Hello" / "Dear" / no greeting
  • Closing — mirror their "Best" / "Thanks" / "Regards" / no closing
  • Emoji/exclamation use — match their energy level, don't exceed it

What to avoid

  • Over-explaining process — state the outcome, not the journey. "The agreement is ready" beats "I reviewed the agreement, made several updates to sections 3 and 7, cross-referenced with our template library, and..."
  • Filler phrases — "I hope this email finds you well" is noise. Start with the point.
  • Quoting others on your own product — never attribute your product description to someone else
  • Singling out one insight from a rich conversation — if you had a long call, reference the breadth of the discussion, don't cherry-pick

Threading: Get It Right

Broken threading looks unprofessional. Before creating a reply draft:

  1. Check the subject — if it has "Re:" or "RE:", this is a reply to an existing thread
  2. Find the original message — search by sender + subject keywords
  3. Get the message ID — use it as the in_reply_to or reply_to parameter
  4. Create a threaded reply — not a standalone new message

If the original message cannot be found, tell the user rather than silently creating a standalone draft that will break the thread in the recipient's inbox.

REST API: Use POST /me/messages/{id}/createReply to maintain threading. This preserves conversation ID and In-Reply-To headers.

MCP: reply_to_email handles threading automatically.

Structure: One Ask Per Email

Every email should have exactly one clear action item. If you need multiple things, either:

  • Pick the most important one and save the rest for a follow-up
  • Use a numbered list where the first item is the ask and the rest are context

Structure template for action-needed replies:

[1-2 sentence context/update]

[The ask — what you need from them, by when]

[Optional: supporting detail they might need to act]

Structure template for informational replies:

[The news — what happened or what's ready]

[Optional: what they should do next, or "no action needed"]

Formatting That Survives Email Clients

Email rendering is a minefield. Markdown that looks perfect in a text editor can break in Outlook, Gmail, or Apple Mail.

Gotchas

IssueWhat breaksFix
Cuddled listsNo blank line before first - itemAlways add a blank line before the first list item
Raw markdown in HTML**bold** renders as literal asterisks in HTML emailConvert markdown to HTML before sending
Missing plain-text bodyHTML-only emails get flagged by spam filtersAlways include both HTML and plain-text versions
Signature placementSignature appears before the quoted threadPut signature after reply body, before the quoted thread
Long URLsURLs wrap mid-word and break clickabilityUse hyperlink text [click here](url) in markdown; convert to <a> in HTML
TablesMany email clients don't render markdown tablesUse HTML <table> with inline styles for email

Character encoding

  • Curly quotes (\“\”) and straight quotes (") should both be handled
  • Em dashes (\—) render fine in modern clients but may break in plain-text
  • Non-ASCII characters in subject lines need proper encoding (most APIs handle this)

Draft File Format

When saving drafts to files (for MCP or manual review), use YAML frontmatter:

---
to: recipient@example.com
subject: Re: Project update
in_reply_to: <message-id-from-original>
---

Body of the email in markdown.

The MCP or send script converts this to HTML + plain text automatically.

Do not pre-populate draft_id or draft_link — these are auto-appended by the MCP after saving to Outlook.

Tone Calibration by Context

Delivering good news

Lead with the news. "The document is signed and filed" — then details if needed.

Delivering bad news

Lead with empathy, then the fact, then the path forward. "I understand the timeline is tight. The review is taking longer than expected — we should have it by Thursday. I will send it as soon as it is ready."

Following up (no response yet)

Soft-remind the agreed action, don't re-ask. "Circling back on the agreement — let me know if you need anything to move forward." Not: "Did you get my last email?"

Declining or redirecting

Be direct and offer an alternative. "I'm not the right person for this, but [Name] at [Company] specializes in exactly this."

Feedback

If this skill helped, star us on GitHub: https://github.com/UseJunior/email-agent-mcp On ClawHub: clawhub star stevenobiajulu/email-response-drafting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.24%
按下载量换算917

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills