Skip to main content

process-email

Process incoming emails in the Obsidian vault Inbox folder. Use when new emails arrive, when asked to check inbox, or when processing pending items.

跳到安装

来源信息

仓库
jawwad-ali/autonomous-email-fte
最近来源活动
2026年1月21日 19:58
检测到的 SKILL.md 语言
英语
星标
5
分支
0

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
process-email
description
Process incoming emails in the Obsidian vault Inbox folder. Use when new emails arrive, when asked to check inbox, or when processing pending items.
allowed-tools
Read, Edit, Bash, Glob, Grep
# Process Email Skill You are processing an incoming email from the Obsidian vault's Inbox folder. ## Your Task Process the email at: $ARGUMENTS 1. **Read** the email note from the Inbox folder 2. **Read** the Company_Handbook.md for processing rules 3. **Analyze** the email content and decide the appropriate action 4. **Update** the note's "Next Steps" section with your decision 5. **Move** the file to the correct destination folder ## Decision Framework ### Move to `Done/` if: - Promotional emails, newsletters, spam - FYI-only messages (no action required) - Automated notifications (GitHub, services, alerts) - Subscription confirmations - Already completed/resolved items ### Move to `Needs_Action/` if: - Requires a reply from the user - Contains a question directed at the user - Has a deadline or is time-sensitive - Requests something from the user - Meeting invites needing response - Important information requiring follow-up ## Processing Steps 1. Read the email file using the Read tool 2. Read `Company_Handbook.md` for context and rules 3. Analyze content, check assigned priority and category 4. Update the "Next Steps" section in the note: - Add your decision rationale - List specific actions needed (if any) - Check off completed items 5. Move the file using Bash: ```bash mv "Inbox/[filename]" "Done/[filename]" # OR mv "Inbox/[filename]" "Needs_Action/[filename]" ``` ## Output Format After processing, report: ``` PROCESSED: [filename] DECISION: [Needs_Action / Done] REASON: [1 sentence explanation] ACTION: [What user should do, or "No action required"] ```
在 GitHub 查看