Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

cdp-gmail-deliveryCDP Gmail delivery 邮件管理

Agent Skill

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

总安装

4,243

周安装

170

GitHub Stars

公开资料未说明

下载量

1,374
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install cdp-gmail-delivery

简介

cdp-gmail-delivery 通过 Gmail CDP 从本地 Chrome 会话发送邮件。

  • 适合在 OpenClaw 中自动化 Gmail 消息发送任务。
  • 通过 clawhub 安装,需登录 Gmail 并开启调试会话。
  • 使用前应确认邮箱权限和发件频率限制。cdp-gmail-delivery 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 建议核对原始文档了解附件支持和模板语法。

SKILL.md

name
cdp-gmail-delivery
description
Send Gmail messages from an operator-controlled Chrome debug session using Gmail CDP automation. Use when the user asks to send email from the local machine, with or without an attachment. Default assumption: Chrome CDP is already installed and available. If the CDP endpoint is unavailable, ask the human operator to help restart the debug Chrome session, then send, and verify in Sent by unique subject.
metadata
{"openclaw":{"requires":{"bins":["node","npm"]}}}

Gmail CDP Delivery

Use this workflow when a user asks to send email by Gmail from the local machine, with or without an attachment.

Current limitation: this skill supports plain-text Gmail body content plus attachments. It does not reliably support sending raw HTML as inline Gmail body content.

Required Inputs

  • Recipient email
  • Optional file path or paths
  • Optional body text

Environment Assumptions

  • Chrome with remote debugging support is already installed and expected to be available
  • Chrome debug launcher exists in your repo/workspace when restart help is needed:

- scripts/restart_debug_chrome.sh

  • Chrome DevTools endpoint is http://127.0.0.1:9222
  • Node and npm are available
  • This skill's runtime dependency is installed once with the bundled installer into skills/cdp-gmail-delivery/.runtime/pupp-mail

Preflight Checklist

  • If attaching a file, confirm target file exists and is readable
  • If attaching files for a personal Gmail account, keep total size at or under 25 MB
  • Reject obviously blocked Gmail attachment classes before send:

- executable/script-heavy file types like .exe, .dll, .js, .jar, .bat, .cmd, .msi, .iso, and similar blocked extensions - blocked files inside archives, including compressed forms or nested archives - password-protected archives - documents with malicious macros

  • Confirm recipient email is explicit
  • Confirm CDP endpoint responds (http://127.0.0.1:9222/json/version)
  • Confirm user login state in visible debug Chrome session

If a requested attachment appears blocked or too large for Gmail, stop and ask the human operator for another delivery path. Do not keep retrying the same blocked upload.

If the user wants an HTML newsletter or raw HTML email body, treat inline HTML body delivery as unsupported for this skill under the current Gmail compose + CDP model. Use plain-text summary/body plus an .html attachment instead, or use a future Gmail API / MIME-based workflow.

For detectable cases, scripts/send_via_cdp.js should fail before opening Gmail and print a limitation result instead of pretending the upload might work.

Workflow

  1. Assume Chrome CDP is already available and try the send flow first.
  2. If the CDP endpoint is unavailable, run scripts/restart_debug_chrome.sh from repo/workspace root.
  3. If CDP is still unavailable after restart, ask the human operator to help restore the visible debug Chrome session.
  4. If Gmail is not already authenticated in that visible Chrome window, ask the operator to sign in manually.
  5. Send mail over CDP with scripts/send_via_cdp.js.
  6. Verify send in Sent folder by a unique subject.

Non-negotiable Validation

Before clicking Send, validate all of the following in the live compose draft:

  • To field contains intended recipient
  • Subject is non-empty and unique
  • If attaching files, the compose draft shows all requested filenames before send

If any check fails, stop and repair draft fields before send.

Gmail Attachment Constraints

  • Personal Gmail sending limit: 25 MB total attachment size
  • Google Workspace accounts may use admin-defined limits instead
  • Gmail blocks many risky attachment types, including executable and script-like formats such as:

- .ade, .adp, .apk, .appx, .appxbundle, .bat, .cab, .chm, .cmd, .com, .cpl, .diagcab, .diagcfg, .diagpkg, .dll, .dmg, .ex, .ex_, .exe, .hta, .img, .ins, .iso, .isp, .jar, .jnlp, .js, .jse, .lib, .lnk, .mde, .mjs, .msc, .msi, .msix, .msixbundle, .msp, .mst, .nsh, .pif, .ps1, .scr, .sct, .shb, .sys, .vb, .vbe, .vbs, .vhd, .vxd, .wsc, .wsf, .wsh, .xll

  • Gmail can also block:

- compressed forms of blocked files - blocked files found inside archives like .zip or .tgz - password-protected archives - documents with malicious macros

Use these constraints as preflight filters. If the file is likely to be blocked, do not claim it can be mailed successfully.

HTML Email Limitation

  • Do not promise raw HTML body delivery through Gmail compose DOM automation
  • Gmail compose currently behaves like a plain-text/body-editor automation target for this skill, not a reliable raw HTML injection target
  • Treat HTML email as a limitation of this skill, not a temporary success path
  • Current supported workaround:

- put a plain-text summary or intro in the email body - attach the full .html file

  • Future upgrade path for true inline HTML email:

- Gmail API - raw MIME message assembly

Install (one-time)

From the workspace root, run:

bash skills/cdp-gmail-delivery/scripts/install_runtime.sh

What it does:

  • Creates skills/cdp-gmail-delivery/.runtime/pupp-mail
  • Initializes a minimal npm runtime there
  • Installs pinned puppeteer-core@24

This keeps the runtime local to the skill instead of using an ad hoc /tmp path.

Send Command

node skills/cdp-gmail-delivery/scripts/send_via_cdp.js \
  --to "recipient@example.com" \
  --body "Optional message"

With attachment:

node skills/cdp-gmail-delivery/scripts/send_via_cdp.js \
  --to "recipient@example.com" \
  --file "/absolute/path/to/file.txt" \
  --body "Optional message"

With multiple attachments:

node skills/cdp-gmail-delivery/scripts/send_via_cdp.js \
  --to "recipient@example.com" \
  --file "/absolute/path/to/file-a.txt" \
  --file "/absolute/path/to/file-b.txt" \
  --body "Optional message"

Success Output

The script prints:

  • EMAIL_SENT_OK
  • SUBJECT=<unique-subject>
  • TO=<recipient>
  • FILE_NAME=<basename-only> for each attached file

Report success only after these outputs and Sent verification succeed. Do not expose absolute local filesystem paths in success messages.

When local preflight detects a Gmail attachment limitation, the script should print:

  • LIMITATION_GMAIL_ATTACHMENT
  • REASON=<limitation-type>
  • DETAILS=<detected-context> when available
  • ACTION=... telling the human operator this is a limitation of Gmail attachment sending for this skill

When to read extra references

  • If send flow fails or behaves unexpectedly: read references/troubleshooting.md
  • If you need incident evidence/context: read references/receipts.md

References

  • Runtime model:

- This workflow uses direct Chrome CDP automation (Puppeteer), not agent-browser.

  • Browser runtime/bootstrap foundation:

- https://github.com/joustonhuang/chrome_for_openclaw - Script references: chrome_for_openclaw.sh, scripts/restart_debug_chrome.sh

  • Historical script context:

- scripts/xrdp_chrome_debug_setup.sh

  • Git repo context: https://github.com/joustonhuang/unifai
  • Incident receipts:

- references/receipts.md

  • Troubleshooting:

- references/troubleshooting.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.19%
按下载量换算992

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills