Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

email-intelligence电子邮件情报

Agent Skill

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

总安装

16,561

周安装

697

GitHub Stars

2

下载量

5,799
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install email-intelligence

简介

分析邮箱健康状况,提供垃圾邮件检测、信号识别和债务评分报告。

  • 适用于开发者或系统管理员监控邮箱运行状态和优化过滤规则。
  • 采用天气隐喻等方式直观展示邮箱负载与清理建议。email-intelligence 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 依赖本地 LLM 推理能力,需确保运行环境具备相应算力。
  • 使用前请确认是否涉及长期数据存储或日志记录功能。

SKILL.md

name
email-intelligence
description
Analyze email inbox health with weather metaphors, spam/signal classification, email debt scoring, and ghost detection. Use when user asks about inbox status, email overwhelm, who they're ghosting, or email time cost. Requires himalaya CLI configured with IMAP.

Email Intelligence

Analyze your email inbox health using creative weather metaphors, intelligent classification, debt scoring, and ghost detection. Transform overwhelming inbox analysis into clear, actionable insights.

When to Use

Use this skill when the user asks about:

  • Inbox status or health
  • Email overwhelm or management
  • Who they're "ghosting" (ignoring responses to)
  • Time cost of processing their inbox
  • Signal vs noise in their email
  • Email debt or backlog

Requirements

  • himalaya CLI configured with IMAP access
  • Python 3.6+
  • The configured email account should have standard folder names (INBOX, Archive)

Quick Usage

# Basic analysis (last 7 days)
python3 scripts/email_classify.py

# Extended analysis (last 14 days)
python3 scripts/email_classify.py --days 14

# JSON output for integration
python3 scripts/email_classify.py --format json

Weather System

The inbox "weather" is determined by the number of human emails in your INBOX that need responses:

  • 🌊 Calm Seas (0-2): Inbox is peaceful and manageable
  • 🍃 Light Breeze (3-5): A few emails need attention, nothing urgent
  • 🌬️ Choppy Waters (6-10): Multiple emails require responses
  • ⛵ Small Craft Advisory (11-20): Many people waiting for replies
  • ⛈️ Storm Warning (21+): Inbox is overwhelming, needs immediate attention

Email Classification

Emails are automatically classified into four categories:

🤖 Automated

  • Sender contains: noreply, no-reply, donotreply, notifications@, alerts@
  • Subject contains: unsubscribe, automatic, auto-generated
  • Time cost: 0 minutes (can be safely ignored)

📰 Newsletter

  • From domains: substack.com, email.*, marketing.*, updates@
  • Subject contains: newsletter, digest, weekly, monthly, roundup
  • Time cost: 1 minute each (skim or archive)

🔔 Notification

  • From services: github, slack, jira, linear, aws, google, microsoft, etc.
  • Time cost: 30 seconds each (quick action/acknowledgment)

👥 Human

  • Everything else (actual people writing)
  • Time cost: 3 minutes each (requires thoughtful response)

Metrics Explained

Email Debt Score (0-100)

Calculated based on unseen human emails in your INBOX, weighted by age:

  • < 1 day old: 1 point each
  • 1-3 days old: 3 points each
  • 3-7 days old: 5 points each
  • 7+ days old: 10 points each

Score meanings:

  • 0-30: 🟢 Great job! Inbox under control
  • 31-60: 🟡 Getting busy. Consider tackling some replies
  • 61-100: 🔴 High debt! Many emails waiting for responses

Signal-to-Noise Ratio

Percentage of emails that are from humans (signal) vs automated/newsletter/notification (noise).

Higher ratio = more meaningful email, less spam/clutter.

Ghost Report

Shows up to 5 people you're "ghosting" (human emails you haven't read), sorted by how long they've been waiting. Helps prioritize who needs responses most urgently.

Time Investment

Estimates how much time you'll need to process your current inbox based on email types and their typical processing times.

Output Formats

Text Format (Default)

Human-readable report with weather, debt score, signal/noise analysis, ghost report, and time estimates. Perfect for quick status updates or daily reviews.

JSON Format

Structured data for integration with other tools, APIs, or dashboards:

{
  "weather": {
    "level": "breeze",
    "emoji": "🍃", 
    "description": "Light Breeze - A few emails need attention...",
    "humanCount": 4
  },
  "categories": {
    "automated": 15,
    "newsletter": 8,
    "notification": 12,
    "human": 4
  },
  "debtScore": 18,
  "ghostReport": [...],
  "signalNoiseRatio": {
    "ratio": 0.103,
    "percentage": "10%"
  },
  "timeCost": {
    "minutes": 18,
    "formatted": "18 minutes"
  }
}

Integration Tips

Dashboard Integration

The JSON output is designed for easy integration into dashboards or status displays. The weather metaphor makes it intuitive for users to understand their inbox state at a glance.

Automation

Run periodically (via cron) to track inbox health trends over time. The debt score is particularly useful for identifying when inbox maintenance is needed.

Alerts

Set up alerts when:

  • Weather reaches "Storm Warning" level
  • Debt score exceeds 60
  • Ghost report shows people waiting >5 days

Troubleshooting

No emails found

  • Verify himalaya CLI is configured: himalaya envelope list -f INBOX --page-size 1
  • Check folder names match your email provider (some use "Inbox" vs "INBOX")

Classification seems wrong

The classification uses heuristics based on sender patterns and subject lines. You can modify the patterns in the script for your specific needs.

Slow performance

  • Reduce the --days parameter to analyze fewer emails
  • The script fetches up to 200 emails from Archive - adjust page_size in the code if needed

Philosophy

Email Intelligence treats your inbox as a living system with its own weather patterns and health metrics. Rather than just counting unread emails, it helps you understand:

  • What actually needs your attention (humans vs bots)
  • How "behind" you are (debt score)
  • Who you might be accidentally ignoring (ghost report)
  • How much time you're really looking at (time cost)

The weather metaphor makes inbox status intuitive and actionable - you know to "batten down the hatches" when a storm is brewing, but you can relax when the seas are calm.

Use this skill to transform inbox anxiety into clear, prioritized action plans.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.32%
按下载量换算4,194

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills