Install
openclaw skills install inbox-to-action-closerOrchestration skill that processes raw work-item data from Slack, GitHub, calendar, Notion, Trello, and email — supplied by the caller or by other OpenClaw tools — and produces a single merged, prioritised action board with owners, due dates, reply drafts, and follow-up questions. Does not connect to external APIs directly; it normalises, deduplicates, scores, and renders data that is provided to it.
openclaw skills install inbox-to-action-closerProcess 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.
This skill does not include API connectors or manage credentials. To use it:
The skill handles everything after data retrieval: normalisation, deduplication, scoring, and rendering.
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.dedupe (src/dedupe.ts) to merge cross-source duplicates using conservative confidence-based matching.score (src/score.ts) to compute transparent urgency rankings.render (src/render.ts) in both markdown and structured JSON formats.index (src/index.ts), which coordinates steps 1-5.