首页龙虾技能列表 › Inbox to Action Closer — Inbox to Action — 收件箱处理

Inbox to Action Closer — Inbox to Action — 收件箱处理

v1.1.0

编排技能,处理来自Slack、GitHub、日历、Notion、Trello和邮件的原始工作项数据——由调用者或其他OpenClaw工具提供——并生成单个合并的、优先排序的行动板,包含负责人、截止日期、回复草稿和跟进问题。不直接连接到外部API;它规范化、去重、评分和呈现提供给它的数据。

0· 128·0 当前·0 累计
by @honouralexwill·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/26
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
medium confidence
该技能的代码、指令和声明的要求与其所述目的(规范化和评分提供的收件箱项目)一致,并且在审查的文件中不请求凭证或执行外部网络访问,但报告中截断了部分文件,因此在敏感环境中运行之前,建议全面审查所有剩余文件。
评估建议
此技能似乎内部一致:它规范化、去重、评分和呈现提供给它的项目,并且在审查的文件中不请求凭证或执行网络调用。安装或运行之前:1) 审查剩余/截断的文件(列表中省略了20个文件),以确认没有隐藏的网络调用或凭证使用。2) 如果您的平台将执行捆绑代码,首先在沙箱环境中运行它(不访问主机机密或出站网络)并检查任何控制台输出。3) 仅提供来自受信任上游连接器的经过清理的原始JSON(技能假设调用者提供数据)。4) 确认平台强制执行SKILL.md安全规则(无自动写入),以便任何回写需要明确的用户确认。...
详细分析 ▾
用途与能力
名称/描述(编排/规范化管道)与代码的作用匹配:规范化Slack、GitHub、日历、Notion、Trello和邮件项目的适配器,然后去重/评分/呈现。技能不声明凭证、不声明所需的二进制文件,并且SKILL.md明确声明它不获取外部API。审查的提供的源文件仅实现解析、匹配、评分和呈现逻辑——在审查的文件中未发现网络或凭证访问。
指令范围
SKILL.md指导代理接受来自调用者/上游工具的原始JSON并运行规范化→去重→评分→呈现管道。运行时指令不请求读取任意主机文件、访问环境变量或发布到外部端点。SKILL.md中的安全规则明确禁止自动写入和制造项目,坚持写操作需要用户确认。一个仓库文档(CLAUDE.md)包含针对在仓库上工作的人员的治理/CLI指南,但SKILL.md不指导运行时代理执行那些治理命令。
安装机制
未声明安装规范(纯指令的),这是低风险的。然而,技能包包含完整的TypeScript源、测试、package.json和package-lock.json。没有外部下载/从URL安装。如果您的平台执行捆绑代码(例如运行src/index.ts),确保您控制执行环境;包的devDependencies仅为典型的测试/构建工具。
凭证需求
技能不声明所需的环境变量或主凭证,审查的代码不读取process.env或需要机密。适配器期望调用者提供的JSON,不包括凭证管理或API连接器,与SKILL.md声明一致。
持久化与权限
未请求提升权限。always为false,允许模型调用(平台默认)。技能不尝试在审查的文件中修改其他技能或系统范围的设置。
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.1.02026/3/26
● 无害

安装命令 点击复制

官方npx clawhub@latest install inbox-to-action-closer
镜像加速npx clawhub@latest install inbox-to-action-closer --registry https://cn.clawhub-mirror.com

技能文档

Purpose

Process raw pending-work data from multiple sources, deduplicate and score the items, and present one unified action board. This skill does not fetch data from external APIs. It expects raw source data to be supplied by the caller, by other OpenClaw skills, or by tools that have already retrieved it. All output is draft-only until the user explicitly confirms a write action.

Data Acquisition

This skill does not include API connectors or manage credentials. To use it:

  • Supply raw JSON data 从 每个 source (Slack messages, GitHub PRs, 日历 events, etc.)
  • 使用 existing OpenClaw tools 或 installed skills 已经 connect 到 these services
  • 或 pipe 输出 从 CLI tools (gh, himalaya, slack-cli, etc.) 进入 normalisation pipeline

The skill handles everything after data retrieval: normalisation, deduplication, scoring, and rendering.

Supported Source Formats

  • Slack — 消息 和 thread JSON (sender, channel, 时间戳, participants, permalink)
  • GitHub — PR, issue, 和 review 请求 JSON (assignee, title, state, URL)
  • 日历 — 事件 JSON (summary, 开始/end 乘以, attendees, location)
  • Notion — page 或 task JSON (title, status, assignee, due 日期, URL)
  • Trello — card JSON (name, 列表, members, due 日期, URL)
  • Email — 消息 JSON (从, subject, 日期, flags, thread references)

Execution Steps

  • 接收 raw source data 从 caller 或 upstream tools.
  • 对于 每个 source, call corresponding adapter 通过 normalize (src/normalize.ts) 到 convert raw items 进入 normalised action-item schema defined 在...中 src/types.ts. 如果 source missing, skip cleanly.
  • Pass 所有 normalised items 通过 dedupe (src/dedupe.ts) 到 merge cross-source duplicates 使用 conservative confidence-based matching.
  • Score every item 使用 score (src/score.ts) 到 compute transparent urgency rankings.
  • Generate final action board 使用 render (src/render.ts) 在...中 both markdown 和 structured JSON formats.
  • orchestration entrypoint 索引 (src/索引.ts), 哪个 coordinates steps 1-5.

Safety Rules

  • 所有 输出 必须 draft-仅 由 默认. NEVER auto-发送 messages, post comments, 关闭 issues, 或 perform 任何 写入 action 没有 explicit 用户 confirmation.
  • NEVER auto-post 到 任何 source system. Generated 回复 drafts 和 suggested actions proposals, 不 executions.
  • NEVER perform destructive actions such 作为 deleting items, archiving threads, 或 dismissing notifications.
  • ALWAYS ask 用户 对于 explicit confirmation 之前 executing 任何 写入 action, 包括 sending replies, posting comments, updating task statuses, 或 creating 新的 items. confirmation gate mandatory 和 separate 从 draft-仅 默认.
  • 如果 source 不可用, misconfigured, 或 returns 错误, skip cleanly 和 continue 处理中 remaining sources. NEVER 失败 entire run 因为 one source unreachable.
  • 必须 不 fabricate 或 hallucinate action items. 仅 surface items exist 在...中 source data.
  • 必须 preserve original source URL 对于 every action item 所以 用户 可以 验证 和 act 在...中 context.
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务