Token导航 LogoToken导航TokenDH.com
开发操作浏览器clawhub未标认证来源可访问clear审计提醒

webmail-email-monitor-skillwebmail 邮件监控技巧

Agent Skill

webmail-email-monitor-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,352

周安装

98

GitHub Stars

公开资料未说明

下载量

784
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install webmail-email-monitor-skill

简介

webmail-email-monitor-skill 用于监控 Outlook 和其他 Web 邮件收件箱。

  • 在持久 Edge 配置文件中处理新消息,捕获完整消息内容。
  • 支持本地后台任务处理和邮件自动化,提升邮件管理效率。
  • 安装命令为 openclaw skills install webmail-email-monitor-skill,需确认邮箱访问权限。
  • 建议结合来源仓库 README 核验具体配置,注意隐私和安全边界。

SKILL.md

name
webmail-email-monitor
description
|

Webmail Email Monitor

Run this skill as a local background process on Windows.

Operating mode

Treat supported webmail monitoring as a detached automation task, not as an in-turn browser session.

Do this by default:

  • Start the monitor with powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 start
  • Tell the user that mailbox login, if needed, must be completed in one of the

opened Edge windows

  • Report that the monitor keeps running after the current chat turn ends
  • Check powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 status

or powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 logs if the user asks whether it is running

Do not do this by default:

  • Try to keep Outlook open by holding the current chat turn forever
  • Manually drive a mailbox login page as the primary execution path
  • Stop the monitor unless the user explicitly asks to stop it

Standard rule

Prefer Python over prompt logic whenever the work can be expressed deterministically.

Use prompt text for orchestration, brief user communication, and the small set of judgments that truly require semantic interpretation.

Move the rest into scripts.

Fast return rule

When the user asks to start or enable monitoring, do not keep the current chat turn open waiting for mailbox login, message opening, attachment processing, or Excel writes.

Use this exact success path:

  1. Run powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 start
  2. Run powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 status
  3. If status is running, return immediately

Do not block the reply on:

  • Completing Gmail or other mailbox login
  • Waiting for the first polling cycle to finish
  • Waiting for screenshots, attachment downloads, or Excel writes
  • Tailing logs unless the user explicitly asks for logs or troubleshooting

Python-first boundary

Keep these behaviors in Python scripts instead of prompt instructions:

  • Browser session recovery and persistent profile reuse
  • Inbox polling, retry logic, timeout handling, and recovery
  • Process lifecycle, PID tracking, and runtime logging
  • Message deduplication and processed-state storage
  • Reconciliation between processed-state storage and the Excel workbook
  • Message opening, body extraction, and sender or subject capture
  • Date parsing, designer extraction, style-code extraction, and other fixed

field rules

  • Excel workbook creation, formatting, row writing, image embedding, and file

naming

  • Complete-message screenshots and screenshot path management
  • Attachment detection, download handling, deduplication, and desktop saving
  • Best-effort attachment content extraction for common file types before Excel

writing

  • Any repeatable transformation that can be implemented with rules, regex, or

explicit conditionals

Do not rewrite deterministic Python behavior as a natural-language checklist inside the skill.

Model boundary

Only use model judgment for work that cannot be expressed reliably in Python, such as:

  • Interpreting ambiguous request language from the user
  • Resolving genuinely fuzzy business meaning from a message when fixed rules

are insufficient

  • Producing a short human-readable summary when deterministic extraction is not

enough

If a behavior can be implemented with explicit rules, implement or update the Python script instead of expanding the prompt.

Required output behavior

Make the monitor produce these local artifacts:

  • A desktop workbook named outlook_email_monitor.xlsx
  • A desktop screenshots folder named outlook_email_monitor_shots
  • Downloaded mail attachments saved to the desktop
  • A runtime log at runtime/monitor.log

Make the workbook row structure match the existing business table in this column order:

  • Creation date
  • Creator
  • Manual or independent request type
  • Email subject
  • Requested completion time
  • Content summary
  • Related image
  • Designer
  • Other related information
  • Revision notes
  • Selected style

Capture the full visible message content whenever possible. If the page cannot produce a full-page screenshot, capture the most complete fallback screenshot available and keep processing.

Download visible attachments whenever they are present and record their names or related notes in the workbook.

Read supported attachment content with Python after download and feed that content into the same deterministic field-extraction rules before writing the Excel row. If a file type cannot be read reliably, still download it, record its filename, and keep processing.

Only treat an email as fully processed after the Excel write succeeds. If the processed-state marker exists but the workbook row is missing, the monitor must rewrite the row instead of skipping it.

Support the same workflow across Outlook and other common webmail providers. Prefer built-in support for Outlook, Gmail, QQ Mail, 163 Mail, 126 Mail, and Yahoo Mail, then fall back to generic browser-mail selectors when possible. Use Gmail as the default monitored provider unless the user explicitly asks to switch to a different mailbox.

Start

powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 start

After the first start:

  • Finish mailbox login in the opened Edge window or the relevant seeded mail

tab

  • Keep that Edge profile for future runs
  • The CLI auto-runs a bootstrap step that installs missing Python dependencies

and refreshes the local webmail-monitor shim

  • The bootstrap step also detects missing Python or Microsoft Edge and attempts

to install them automatically with winget

Reuse requirements

Keep this skill reusable across machines by following these rules:

  • Keep all execution logic in the skill folder and its scripts
  • Avoid machine-specific hardcoded paths in SKILL.md
  • Resolve runtime paths relative to the skill root inside scripts
  • Expose one explicit command surface for operators, currently webmail-monitor
  • If the skill is copied to another machine, recreate the local command shim so

webmail-monitor points to that machine's copied skill folder

  • Make the bootstrap step idempotent so OpenClaw can safely run it on first use

Assume these host prerequisites for reuse:

  • Windows with PowerShell available
  • A writable Desktop path for the workbook, screenshots, and downloaded

attachments

  • OpenClaw configured to scan the workspace skills/ directory
  • Either existing Python and Microsoft Edge, or a host that allows automatic

installation through winget

If a prerequisite is missing, report the missing requirement directly instead of pretending monitoring started successfully.

OpenClaw should rely on the bootstrap-capable CLI script so first-run dependency installation can happen automatically on a new machine.

Bootstrap responsibilities on a new machine:

  • Detect Python and install it automatically if missing
  • Detect Microsoft Edge and install it automatically if missing
  • Install required Python packages for the monitor scripts
  • Recreate or update the local webmail-monitor command shim

If automatic host installation is blocked because winget is unavailable or restricted, fail with explicit manual install URLs instead of pretending the machine is ready.

Stop

powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 stop

Status and logs

powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 bootstrap
powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 doctor
powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 status
powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 logs
webmail-monitor status
webmail-monitor logs

Default workflow

Follow this workflow when monitoring is requested:

  1. Start the detached monitor.
  2. Confirm monitoring from powershell -ExecutionPolicy Bypass -File scripts/webmail_monitor_cli.ps1 status.
  3. Ask the user to complete mailbox login in the opened Edge window if needed.
  4. Leave the background process running after the chat turn ends.
  5. Stop the monitor only when the user explicitly asks.

Response pattern

After starting the monitor, respond with a short status update that includes:

  • That the background monitor has been started
  • That Edge may open one or more mailbox tabs for login
  • That login only needs to be completed in the persistent profile window
  • That future polling continues outside the current chat turn
  • That detailed progress belongs to the CLI logs command, not the start flow

After stopping the monitor, confirm that the background process has been stopped.

Notes

  • The launcher is detached on purpose so the browser does not close when the

OpenClaw agent turn ends.

  • If a mailbox asks for login again, complete it once in the persistent Edge

profile and later runs should reuse that session.

  • When the user asks to change extraction behavior, prefer patching the Python

monitor script over adding more prompt prose.

  • The portable invocation path is the relative CLI script under scripts/.
  • Prefer the explicit command surface webmail-monitor start|stop|restart|status|logs

over direct script paths.

  • webmail-monitor start should be treated as a fire-and-return action, not a

long-running foreground task inside the chat turn.

  • If processed.json says a mail was handled but the workbook does not contain

the corresponding row, treat that as recoverable state drift and rewrite the row.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.63%
按下载量换算750

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills