Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

email-newsletter-digest电子邮件通讯摘要

Agent Skill

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

总安装

5,018

周安装

203

GitHub Stars

1

下载量

1,575
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install email-newsletter-digest

简介

汇总 Gmail 中近期新闻通讯邮件为单一摘要,聚焦订阅内容更新。

  • 适合订阅众多资讯源、需定期梳理重点信息的读者使用。
  • 自动识别带标签或传感器的通讯邮件并提取核心要点。
  • 需配置特定标签规则以确保正确归类非通讯类邮件。email-newsletter-digest 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前请确认是否开启 Gmail API 访问权限及相关安全设置。

SKILL.md

name
email-newsletter-digest
description
Summarizes recent newsletter emails received in Gmail into a single newsletter digest. This skill identifies newsletter emails using configured labels or sender addresses. Use for requests like "send me the newsletter digest email", "email the newsletter digest to me and my friends", "schedule my newsletter digest every morning", or "update my newsletter digest recipients".
version
1.0.1
metadata
openclaw
always
false
emoji
📰
primaryEnv
OPENAI_API_KEY
requires
bins
env

Email Newsletter Digest

Use this skill to send a digest of newsletter emails received within the last 1 day.

Read settings.json at the start of every invocation. For settings structure and maintainer notes, see REFERENCE.md.

When To Use

Use this skill when the user wants to:

  • send a newsletter digest email
  • send the newsletter digest to multiple people
  • schedule the digest every morning or on another cadence
  • update which labels count as newsletters
  • update which senders count as newsletters
  • update who receives the digest

Settings

Read settings.json at the start of every invocation.

The settings file contains:

  • newsletter_labels_csv
  • newsletter_senders_csv
  • digest_recipient_emails_csv
  • recipient_delivery_mode

Rules:

  • newsletter_labels_csv may be null or empty if newsletter_senders_csv is populated
  • newsletter_senders_csv may be null or empty if newsletter_labels_csv is populated
  • both cannot be null or empty at the same time
  • if both are populated, the Gmail search must use OR semantics across both groups
  • digest_recipient_emails_csv may contain one or more comma-separated email addresses
  • recipient_delivery_mode controls how emails are sent to multiple recipients
  • supported values:

- individual to send one email per recipient - group to send one email with all recipients in To

  • if recipient_delivery_mode is omitted, default to group

Agent Workflow

  1. Immediately send a short acknowledgement such as: "I'm preparing the email newsletter digest now."
  2. Read settings.json.
  3. Validate that at least one newsletter filter is populated and at least one recipient email is configured.
  4. Run the bundled runner at ~/.openclaw/skills/email-newsletter-digest/scripts/newsletter-digest.py in a single blocking command with a generous timeout so you can wait for its stdout result. Do not background it and do not rely on follow-up polling for this skill.
  5. Summarize each matching newsletter, build the digest, and send it using the configured recipient_delivery_mode.
  6. When the run finishes, send a short completion message naming the recipients and the newsletter count.

If the user asks to update labels, senders, recipients, or recipient delivery mode:

  • edit settings.json
  • preserve the comma-separated format
  • remove duplicates and empty entries

If the user asks to schedule it:

  • use OpenClaw's normal scheduling or cron mechanism
  • do not ask the user to write shell commands
  • if the user says "every morning" and does not specify a time, use a reasonable morning time in the system timezone

Core Rules

  • Use gog gmail messages search to fetch individual newsletter emails.
  • Use gog gmail thread get --full first for body extraction.
  • If the body looks like a placeholder, fall back to gog gmail get --json and extract the best MIME part.
  • Use summarize to turn each newsletter into bullet points.
  • Unless the user explicitly asks for a different summarizer model, let summarize use its own configured/default model.
  • Deduplicate by Gmail message id so each newsletter is summarized once per run.
  • Only include matching emails from the last 1 day.
  • If no newsletters are found, report that plainly and do not send anything.
  • If the run fails or all summaries fail, send a failure email to the configured recipients with the likely cause when possible.
  • If only some newsletters fail to summarize, still send the digest and then send a warning email describing the failures.
  • Keep user interaction natural-language-first. Do not tell the user to run Python or shell commands themselves.

Query Construction

Construct the Gmail search from the settings file:

  • labels only:

- label:Newsletters newer_than:1d

  • senders only:

- (from:a@example.com OR from:b@example.com) newer_than:1d

  • both populated:

- (label:Newsletters OR label:finance OR from:a@example.com OR from:b@example.com) newer_than:1d

Reporting Back

  • Always acknowledge the request before starting work.
  • For a successful run, report which recipients were sent the digest and how many newsletters were included.
  • For settings changes, summarize exactly what changed.
  • For scheduled runs, confirm the cadence in plain language.
  • If gog or summarize fails, surface the error instead of hiding it.
  • Never fail silently. If the digest cannot be sent, tell the user plainly what went wrong.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.34%
按下载量换算1,328

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install email-newsletter-digest 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills