Setup
On first use, read setup.md for integration guidelines and memory initialization.
When to Use
User needs help processing inbox load, preparing replies, or keeping response commitments on track.
Agent triages messages by urgency, drafts context-aware responses, and tracks pending follow-ups until closure.
This skill is workflow-focused and local by default. It analyzes email text provided by the user in chat or by a separate mail integration skill.
Architecture
Memory lives in ~/email-management/. See memory-template.md for structure.
CODEBLOCK0
Quick Reference
| Topic | File |
|---|
| Setup flow | INLINECODE3 |
| Memory template |
memory-template.md |
| Inbox triage logic |
triage.md |
| Automation boundaries |
automation.md |
| Follow-up workflow |
tracking.md |
| Response templates |
templates.md |
| Profile presets |
profiles.md |
| Quality loop |
feedback.md |
Core Rules
1. Classify Before Responding
Always tag each email as Action, Waiting, FYI, or Noise before drafting anything.
This prevents urgent requests from being buried under low-value messages.
2. Keep Priority Routing Explicit
Urgency must be tied to clear signals: VIP sender, hard deadline, financial or legal risk, or blocked decision.
If urgency is uncertain, mark as review-needed instead of urgent.
3. Draft with Decision Clarity
Every draft reply should make the next step obvious with one of these outcomes:
- - ask a precise question
- provide a decision
- propose a concrete next action with owner and date
4. Track Commitments as Tasks
Whenever a message includes a promise, request, or deadline, log it in follow-up tracking with:
- - owner
- due date or expected response window
- current status
5. Separate Writing Tone from Message Intent
Preserve intent first, then adapt tone by audience.
Do not soften urgent blockers into passive wording.
6. Prefer Reusable Snippets for Recurring Scenarios
Use approved template blocks for recurring replies (status update, decline, clarification, follow-up).
Customize opening and close so replies do not feel robotic.
7. Summarize Inbox Health Periodically
Provide concise summaries when workload is high:
- - top priorities
- overdue follow-ups
- threads waiting on others
- messages safe to archive
Common Traps
- - Replying before triage -> high-importance messages are delayed.
- Treating every fast request as urgent -> priority inflation reduces focus.
- Sending drafts without owner/date clarity -> follow-ups are missed.
- Using templates without context edits -> responses feel generic and can damage trust.
- Closing threads without explicit confirmation -> hidden commitments remain unresolved.
Security & Privacy
Data that leaves your machine:
Data that stays local:
- - Email management context and workflow notes under
~/email-management/.
This skill does NOT:
- - Send emails automatically without explicit user confirmation.
- Access files outside
~/email-management/ for storage. - Enable background automations without explicit user approval.
- Connect directly to mailbox APIs or collect credentials on its own.
Related Skills
Install with
clawhub install <slug> if user confirms:
- -
mail - generic mail workflow support - INLINECODE15 - campaign and newsletter execution workflows
- INLINECODE16 - customer relationship process management
- INLINECODE17 - execution and prioritization frameworks
- INLINECODE18 - general assistant orchestration patterns
Feedback
- - If useful: INLINECODE19
- Stay updated: INLINECODE20
设置
首次使用时,请阅读 setup.md 了解集成指南和内存初始化。
使用时机
用户需要处理收件箱负载、准备回复或跟踪承诺回复时使用。
助手按紧急程度对邮件进行分类,撰写符合上下文的回复,并持续跟踪待办事项直至闭环。
该技能以工作流为核心,默认在本地运行。它分析用户在聊天中提供或通过独立邮件集成技能获取的邮件文本。
架构
内存数据存储在 ~/email-management/ 目录下。结构详见 memory-template.md。
~/email-management/
├── memory.md # 状态、上下文和沟通偏好
├── follow-ups.md # 带有截止日期和负责人的待办线程
├── templates.md # 经批准可复用的回复模块
├── vip-contacts.md # 优先发件人和升级备注
└── digests/ # 每周收件箱摘要
快速参考
memory-template.md |
| 收件箱分类逻辑 | triage.md |
| 自动化边界 | automation.md |
| 跟进工作流 | tracking.md |
| 回复模板 | templates.md |
| 个人资料预设 | profiles.md |
| 质量反馈循环 | feedback.md |
核心规则
1. 回复前先分类
在起草任何内容前,始终将每封邮件标记为:待处理、等待中、仅供参考或无关信息。
这可以防止紧急请求被低价值信息淹没。
2. 保持优先级路由明确
紧急程度必须与明确信号挂钩:VIP发件人、硬性截止日期、财务或法律风险、或决策受阻。
如果紧急程度不确定,标记为需复核而非紧急。
3. 起草时确保决策清晰
每份草稿回复应使下一步行动明确,并包含以下结果之一:
- - 提出精确问题
- 提供决策
- 提出具体的下一步行动,明确负责人和日期
4. 将承诺记录为任务
每当消息包含承诺、请求或截止日期时,在跟进跟踪中记录:
5. 区分写作语气与信息意图
先保留意图,再根据受众调整语气。
不要将紧急障碍弱化为被动措辞。
6. 对重复场景优先使用可复用片段
对重复性回复(状态更新、拒绝、澄清、跟进)使用经批准的模板模块。
自定义开头和结尾,使回复不显机械。
7. 定期总结收件箱健康状况
在工作量较大时提供简洁摘要:
- - 最高优先级事项
- 逾期跟进
- 等待他人的线程
- 可安全归档的消息
常见陷阱
- - 回复前未分类 -> 高重要性消息被延迟。
- 将每个快速请求视为紧急 -> 优先级膨胀降低专注度。
- 发送草稿时未明确负责人/日期 -> 跟进被遗漏。
- 使用模板时未根据上下文编辑 -> 回复显得千篇一律,可能损害信任。
- 未明确确认即关闭线程 -> 隐藏承诺未解决。
安全与隐私
离开您设备的数据:
保留在本地设备的数据:
- - ~/email-management/ 下的邮件管理上下文和工作流笔记。
该技能不会:
- - 未经用户明确确认自动发送邮件。
- 访问 ~/email-management/ 以外的文件进行存储。
- 未经用户明确批准启用后台自动化。
- 直接连接邮箱API或自行收集凭据。
相关技能
如果用户确认,使用 clawhub install
安装:
- - mail - 通用邮件工作流支持
- email-marketing - 营销活动和新闻通讯执行工作流
- crm - 客户关系流程管理
- productivity - 执行和优先级框架
- assistant - 通用助手编排模式
反馈
- - 如果觉得有用:clawhub star email-management
- 保持更新:clawhub sync