email-daily-summary

email-daily-summary is a skill for Claude Code from Demerzels-lab/elsamultiskillagent. It costs 51 tokens per session (2,212 once invoked), scanned A, a copy of email-daily-summary, MIT.

An email assistant that logs into services such as Gmail, Outlook, QQ Mail, and 163 Mail and creates daily summaries of incoming messages.

In plain words
What is it for?
Use it to review recent email, identify important messages, and produce daily email digests and statistics.
Why use it?
It reduces the time spent opening many messages and sorting them by importance, sender, or subject.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to review recent email, identify important messages, and produce daily email digests and statistics.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/demerzels-lab/elsamultiskillagent/email-daily-summary
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Demerzels-lab/elsamultiskillagent --skill email-daily-summary
Clone the repo
git clone --depth 1 https://github.com/Demerzels-lab/elsamultiskillagent

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for email-daily-summary

README.md
[![agentmods](https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/email-daily-summary/github.svg)](https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/email-daily-summary)
Your own site
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/email-daily-summary"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/email-daily-summary/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for email-daily-summary

Your own site · 80×15
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/email-daily-summary"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/email-daily-summary.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,212 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.02212
Opus 5 $0.00026 $0.01106
Sonnet 5 $0.00010 $0.00442
Haiku 4.5 $0.00005 $0.00221

Measured 9d ago against content hash 6f357d254c3d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

email-daily-summary scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to email-daily-summary — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

public/skills/10e9928a/email-daily-summary/SKILL.md · 336 lines

How it starts

The opening of the file, as written. The whole thing — 336 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Email Daily Summary Skill

这个技能帮助你自动登录邮箱,获取邮件内容,并生成每日邮件总结。

功能特性

  • 🔐 支持多种邮箱登录(Gmail、Outlook、QQ 邮箱、163 邮箱等)
  • 📧 自动获取最新邮件列表
  • 📝 智能生成邮件摘要
  • 🏷️ 按重要性/发件人/主题分类
  • 📊 生成每日邮件统计报告

前置要求

  1. 安装 browser-use CLI:
uv pip install browser-use[cli]
browser-use install
  1. 确保已在浏览器中登录过邮箱(使用 real 模式可直接复用登录状态)

使用方法

方式一:使用已登录的浏览器(推荐)

使用 --browser real 模式可以复用你 Chrome 浏览器中已登录的邮箱会话:

# Gmail
browser-use --browser real open https://mail.google.com

# Outlook
browser-use --browser real open https://outlook.live.com

# QQ 邮箱
browser-use --browser real open https://mail.qq.com

# 163 邮箱
browser-use --browser real open https://mail.163.com

方式二:手动登录流程

如果需要手动登录,使用 --headed 模式查看操作过程:

# 打开邮箱登录页面(以 Gmail 为例)
browser-use --headed open https://accounts.google.com

# 查看页面元素
browser-use state

# 输入邮箱地址(根据 state 返回的索引)
browser-use input <email_input_index> "[email protected]"
browser-use click <next_button_index>

# 输入密码
browser-use input <password_input_index> "your-password"
browser-use click <login_button_index>

# 跳转到邮箱
browser-use open https://mail.google.com

获取邮件列表

登录成功后,获取邮件列表:

# 获取当前页面状态,查看邮件列表
browser-use state

# 截图保存当前邮件列表
browser-use screenshot emails_$(date +%Y%m%d).png

# 使用 JavaScript 提取邮件信息(Gmail 示例)
browser-use eval "
  const emails = [];
  document.querySelectorAll('tr.zA').forEach((row, i) => {
    if (i < 20) {
      const sender = row.querySelector('.yX.xY span')?.innerText || '';
      const subject = row.querySelector('.y6 span')?.innerText || '';
      const snippet = row.querySelector('.y2')?.innerText || '';
      const time = row.querySelector('.xW.xY span')?.innerText || '';
      emails.push({ sender, subject, snippet, time });
    }
  });
  JSON.stringify(emails, null, 2);
"

使用 Python 生成邮件总结

# 初始化邮件数据收集
browser-use python "
emails_data = []
summary_date = '$(date +%Y-%m-%d)'
"

# 滚动页面加载更多邮件
browser-use python "
for i in range(3):
    browser.scroll('down')
    import time
    time.sleep(1)
"

# 提取邮件数据(需要根据实际邮箱 DOM 结构调整)
browser-use python "
import json

# 获取页面 HTML 进行解析
html = browser.html

# 这里需要根据具体邮箱服务解析 HTML
# 示例:统计基本信息
print(f'=== 邮件日报 {summary_date} ===')
print(f'页面 URL: {browser.url}')
print(f'页面标题: {browser.title}')
"

# 截图保存
browser-use python "
browser.screenshot(f'email_summary_{summary_date}.png')
print(f'截图已保存: email_summary_{summary_date}.png')
"

Read the full file on GitHub · 336 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 336 lines · 51 tokens per session scan A 6f357d254c3d

Subscribe to this mod's changes

email-daily-summary is a skill published in the GitHub repository Demerzels-lab/elsamultiskillagent (10 stars, last pushed 4mo ago), licensed MIT. It adds 51 tokens to every session and 2,212 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to email-daily-summary, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories