← 返回 Skills 市场
honouralexwill

Inbox to Action Closer

作者 honouralexwill · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ✓ 安全检测通过
187
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install inbox-to-action-closer
功能描述
Orchestration skill that processes raw work-item data from Slack, GitHub, calendar, Notion, Trello, and email — supplied by the caller or by other OpenClaw t...
使用说明 (SKILL.md)

Inbox-to-Action Closer

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 from each source (Slack messages, GitHub PRs, calendar events, etc.)
  • Use existing OpenClaw tools or installed skills that already connect to these services
  • Or pipe output from CLI tools (gh, himalaya, slack-cli, etc.) into the normalisation pipeline

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

Supported Source Formats

  1. Slack — message and thread JSON (sender, channel, timestamp, participants, permalink)
  2. GitHub — PR, issue, and review request JSON (assignee, title, state, URL)
  3. Calendar — event JSON (summary, start/end times, attendees, location)
  4. Notion — page or task JSON (title, status, assignee, due date, URL)
  5. Trello — card JSON (name, list, members, due date, URL)
  6. Email — message JSON (from, subject, date, flags, thread references)

Execution Steps

  1. Receive raw source data from the caller or upstream tools.
  2. For each source, call the corresponding adapter via normalize (src/normalize.ts) to convert raw items into the normalised action-item schema defined in src/types.ts. If a source is missing, skip it cleanly.
  3. Pass all normalised items through dedupe (src/dedupe.ts) to merge cross-source duplicates using conservative confidence-based matching.
  4. Score every item using score (src/score.ts) to compute transparent urgency rankings.
  5. Generate the final action board using render (src/render.ts) in both markdown and structured JSON formats.
  6. The orchestration entrypoint is index (src/index.ts), which coordinates steps 1-5.

Safety Rules

  1. All output MUST be draft-only by default. NEVER auto-send messages, post comments, close issues, or perform any write action without explicit user confirmation.
  2. NEVER auto-post to any source system. Generated reply drafts and suggested actions are proposals, not executions.
  3. NEVER perform destructive actions such as deleting items, archiving threads, or dismissing notifications.
  4. ALWAYS ask the user for explicit confirmation before executing any write action, including sending replies, posting comments, updating task statuses, or creating new items. This confirmation gate is mandatory and separate from the draft-only default.
  5. If a source is unavailable, misconfigured, or returns an error, skip it cleanly and continue processing remaining sources. NEVER fail the entire run because one source is unreachable.
  6. MUST NOT fabricate or hallucinate action items. Only surface items that exist in the source data.
  7. MUST preserve the original source URL for every action item so the user can verify and act in context.
安全使用建议
This skill appears internally consistent: it normalises, deduplicates, scores, and renders items supplied to it and does not request credentials or perform network calls in the reviewed files. Before installing or running it: 1) Review the remaining/truncated files (20 files were omitted in the listing) to confirm there are no hidden network calls or credential usage. 2) If your platform will execute the bundled code, run it in a sandboxed environment first (no access to host secrets or outbound network) and inspect any console outputs. 3) Supply only sanitized raw JSON from trusted upstream connectors (the skill assumes callers provide data). 4) Confirm the platform enforces the SKILL.md safety rules (no automatic writes) so that any write-back requires explicit user confirmation.
功能分析
Type: OpenClaw Skill Name: inbox-to-action-closer Version: 1.1.0 The skill bundle is a high-integrity data transformation pipeline designed to aggregate and prioritize work items from various sources. It contains no network access, file system operations, or runtime dependencies, significantly reducing the attack surface. The code implements robust defensive programming, including structured security logging for input validation (found in `src/normalize-github.ts` and `src/normalizeEmail.ts`) and markdown escaping to prevent injection during rendering. Furthermore, the `SKILL.md` instructions explicitly mandate human-in-the-loop confirmation for all actions, effectively mitigating risks of autonomous agent misbehavior.
能力评估
Purpose & Capability
The name/description (an orchestration/normalisation pipeline) matches what the code does: adapters that normalise Slack, GitHub, calendar, Notion, Trello, and email items, then dedupe/score/render. The skill declares no credentials, no required binaries, and the SKILL.md explicitly states it does not fetch external APIs. The provided source files reviewed implement only parsing, matching, scoring and rendering logic—no network or credential access was found in the reviewed files.
Instruction Scope
SKILL.md instructs the agent to accept raw JSON from callers/upstream tools and run the normalise→dedupe→score→render pipeline. The runtime instructions do not request reading arbitrary host files, accessing environment variables, or posting to external endpoints. Safety rules in SKILL.md explicitly forbid automatic writes and fabrication of items and insist on user confirmation for write actions. One repository doc (CLAUDE.md) contains governance/CLI guidance for humans working on the repo, but SKILL.md does not direct runtime agents to execute those governance commands.
Install Mechanism
No install spec is declared (instruction-only), which is low-risk. However, the skill bundle includes full TypeScript source, tests, package.json and package-lock.json. There is no external download/install-from-URL. If your platform executes bundled code (e.g., runs src/index.ts) ensure you control the execution environment; the package's devDependencies are typical test/build tools only.
Credentials
The skill declares no required environment variables or primary credential and the reviewed code does not read process.env or require secrets. Adapters expect caller-supplied JSON and do not include credential management or API connectors, consistent with the SKILL.md claim.
Persistence & Privilege
No elevated privileges requested. always is false, model invocation is allowed (platform default). The skill does not attempt to modify other skills or system-wide settings in the reviewed files.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install inbox-to-action-closer
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /inbox-to-action-closer 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
- Major change: Skill no longer connects to external APIs or manages credentials; now processes only raw data provided by the caller or other tools. - Updated documentation to clarify that raw work-item data must be supplied from upstream (e.g., other skills, CLI tools, or OpenClaw connectors). - Added detailed instructions and examples for supported source data formats and acquisition methods. - Ensured execution steps and safety rules reflect this data-handling model.
v1.0.0
**Initial release of Inbox-to-Action Closer** - Aggregates unfinished tasks from Slack, GitHub, calendar, Notion, Trello, and email into a unified action board. - Deduplicates and scores all work items for urgency, ensuring transparency. - Produces draft-only outputs with reply drafts and follow-up questions—never acts without explicit user confirmation. - Ensures safety by not auto-sending, deleting, or updating items in source systems. - Handles errors gracefully, skipping unavailable sources without interrupting the workflow. - Each action item includes a link to its original source for verification and context.
元数据
Slug inbox-to-action-closer
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Inbox to Action Closer 是什么?

Orchestration skill that processes raw work-item data from Slack, GitHub, calendar, Notion, Trello, and email — supplied by the caller or by other OpenClaw t... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 187 次。

如何安装 Inbox to Action Closer?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install inbox-to-action-closer」即可一键安装,无需额外配置。

Inbox to Action Closer 是免费的吗?

是的,Inbox to Action Closer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Inbox to Action Closer 支持哪些平台?

Inbox to Action Closer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Inbox to Action Closer?

由 honouralexwill(@honouralexwill)开发并维护,当前版本 v1.1.0。

💬 留言讨论