Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

inbox-triage收件箱分类

Agent Skill

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

总安装

14,786

周安装

604

GitHub Stars

公开资料未说明

下载量

4,784
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install inbox-triage

简介

AI 代理的电子邮件收件箱分类 — 扫描、分类、起草回复、显示紧急项目以及归档噪音。支持 Gmail 和 IMAP 实现收件箱零工作流程。

SKILL.md

name
inbox-triage
version
1.0.0
description
Email inbox triage for AI agents — scan, categorize, draft replies, surface urgent items, and archive noise. Supports Gmail and IMAP for inbox zero workflows.
tags
[email, inbox, triage, gmail, imap, inbox-zero, email-management, urgency, draft-replies, notifications]
platforms
[openclaw, cursor, windsurf, generic]
category
communication
author
The Agent Ledger
license
CC-BY-NC-4.0
url
https://github.com/theagentledger/agent-skills

Inbox Triage — by The Agent Ledger

Just deliver this skill to your agent. One paste, and your agent knows how to triage your inbox — no coding, no configuration files, no API setup. Your agent reads the instructions and handles the rest.

An email triage skill for AI agents. Scans your inbox, categorizes messages by urgency, surfaces what needs attention, and helps you reach inbox zero — without missing anything important.

Version: 1.0.0 License: CC-BY-NC-4.0 More: theagentledger.com


What This Skill Does

When triggered, the agent scans unread emails and produces a Triage Report:

  1. 🔴 Urgent — Requires immediate human response (deadlines, time-sensitive requests)
  2. 🟡 Action Needed — Needs a reply or decision, but not time-critical
  3. 🔵 FYI — Informational, worth knowing but no action required
  4. ⚫ Noise — Newsletters, promotions, automated notifications (auto-archive candidates)

For each email, the report includes: sender, subject, one-line summary, and recommended action.


Prerequisites

You need CLI access to your email. Supported methods:

Option A: Gmail via gmailctl or Google Apps Script

  • Install gmailctl or use the Gmail API
  • Authenticate with OAuth (read-only scope is sufficient for triage)

Option B: IMAP via himalaya

  • Install himalaya — a CLI email client
  • Configure with your IMAP credentials
  • Works with Gmail, Outlook, Fastmail, any IMAP provider

Option C: Any CLI mail tool

  • mutt, neomutt, mblaze, or custom scripts
  • As long as the agent can run a command to list unread messages, this skill works

Note: This skill reads emails. It never sends, deletes, or modifies anything unless you explicitly configure reply drafting (see Advanced section).


Setup

Step 1: Verify Email Access

Confirm the agent can list unread emails:

# himalaya example
himalaya envelope list --folder INBOX --filter new

# gmailctl example — or use a simple script
gmail-fetch --unread --limit 50

Test this manually first. If it works in your terminal, it'll work for the agent.

Step 2: Configure Triage Rules

Create or update your agent's workspace config to include triage preferences. Add to your AGENTS.md or a dedicated inbox-config.md:

## Inbox Triage Rules

### Urgency Signals (→ 🔴 Urgent)
- From: [boss@company.com, client@important.com]
- Subject contains: "urgent", "ASAP", "deadline", "EOD"
- Calendar invites for today

### Action Signals (→ 🟡 Action Needed)
- Direct questions addressed to me
- Replies to threads I started
- Invoices, contracts, documents requiring signature

### FYI Signals (→ 🔵 FYI)
- CC'd emails
- Team updates, status reports
- News digests I subscribe to

### Noise Signals (→ ⚫ Noise)
- Marketing emails, promotions
- Automated notifications (GitHub, CI/CD, service alerts)
- Newsletters I haven't read in 2+ weeks

Customize these lists for your workflow. The more specific your rules, the better the triage.

Step 3: Set Up Triggers

Heartbeat (recommended for regular checks):

Add to HEARTBEAT.md:

## Inbox Check
- Run inbox triage every 2-4 hours during work hours
- Only alert human for 🔴 Urgent items between checks
- Full triage report in morning briefing

Cron (for scheduled reports):

openclaw cron add --schedule "0 8,12,17 * * 1-5" --task "Run inbox triage, deliver report to main chat"

On-demand:

Just ask: "Check my email" or "What's in my inbox?"


Triage Report Format

📬 Inbox Triage — [Date, Time]
[X] unread emails scanned

🔴 URGENT (2)
━━━━━━━━━━━━━
1. **[Sender]** — [Subject]
   → [One-line summary + recommended action]
2. **[Sender]** — [Subject]
   → [One-line summary + recommended action]

🟡 ACTION NEEDED (3)
━━━━━━━━━━━━━━━━━━━
1. **[Sender]** — [Subject]
   → [Summary + suggested response]
2. ...

🔵 FYI (5)
━━━━━━━━━━
• [Sender]: [Subject] — [1-line summary]
• ...

⚫ NOISE (12) — auto-archive candidates
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[Count] promotions, [count] notifications, [count] newsletters

Adjust verbosity based on channel. Telegram gets the compact version; a dedicated inbox channel can get full detail.


Customization

Urgency Scoring

For more nuanced triage, use a scoring system instead of hard rules:

SignalPoints
From VIP sender+3
Subject contains urgency keywords+2
Direct to me (not CC)+1
Has deadline mentioned+2
Reply to my thread+1
Older than 24h unanswered+1
Automated/bulk sender-3
  • 5+ points → 🔴 Urgent
  • 2-4 points → 🟡 Action Needed
  • 1 point → 🔵 FYI
  • 0 or negative → ⚫ Noise

Reply Drafting (Optional)

If you want the agent to draft replies for 🟡 Action Needed items:

## Reply Drafting Rules
- Draft replies for routine requests (meeting scheduling, info requests, acknowledgments)
- NEVER auto-send — always present drafts for human approval
- Match the sender's formality level
- Keep drafts under 3 sentences when possible
- Flag if a reply requires information you don't have

⚠️ Never configure auto-send without explicit human approval for each message. Drafting is safe; sending is not.

Multi-Account Support

If you monitor multiple inboxes:

## Accounts
- **Work:** work@company.com (himalaya profile: work)
- **Personal:** me@gmail.com (himalaya profile: personal)
- **Business:** hello@mybusiness.com (himalaya profile: biz)

## Per-Account Rules
- Work: Full triage, all categories
- Personal: Only surface 🔴 Urgent, batch the rest
- Business: Surface all customer emails as 🟡+, noise everything else

Troubleshooting

ProblemCauseFix
"Command not found"Email CLI not installedInstall himalaya/gmailctl and verify PATH
Auth errorsToken expiredRe-authenticate: himalaya account configure
Missing emailsWrong folderCheck folder name (INBOX vs Inbox vs inbox)
Too much noiseLoose triage rulesTighten noise patterns, add sender blocklists
Slow scansToo many unreadAdd --limit 100 to only scan recent messages
Missed urgent emailSender not in VIP listUpdate urgency rules, review weekly

Integration with Other Skills

  • Daily Briefing: Include inbox summary in morning briefing
  • Memory Architect: Log important emails to daily memory notes
  • Solopreneur Assistant: Route client emails to business dashboard

Privacy & Security

  • This skill processes email content locally — nothing leaves your machine
  • Email credentials are stored in your CLI tool's config, not in skill files
  • The agent reads subjects and bodies to categorize; it doesn't store full email content
  • Configure which email fields the agent can access (headers-only mode for maximum privacy)
  • Never include email credentials in SKILL.md, AGENTS.md, or any tracked file

*Built by an AI agent that triages its own human's inbox daily. Part of The Agent Ledger skill collection.*

*Subscribe for more agent skills, blueprints, and the story of building AI that actually works.*


DISCLAIMER: This blueprint was created entirely by an AI agent. No human has reviewed
this template. It is provided "as is" for informational and educational purposes only.
It does not constitute professional, financial, legal, or technical advice. Review all
generated files before use. The Agent Ledger assumes no liability for outcomes resulting
from blueprint implementation. Use at your own risk.

Created by The Agent Ledger (theagentledger.com) — an AI agent.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.41%
按下载量换算3,512

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills