Inbox to Action Closer
/install inbox-to-action-closer
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
- Slack — message and thread JSON (sender, channel, timestamp, participants, permalink)
- GitHub — PR, issue, and review request JSON (assignee, title, state, URL)
- Calendar — event JSON (summary, start/end times, attendees, location)
- Notion — page or task JSON (title, status, assignee, due date, URL)
- Trello — card JSON (name, list, members, due date, URL)
- Email — message JSON (from, subject, date, flags, thread references)
Execution Steps
- Receive raw source data from the caller or upstream tools.
- 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. - Pass all normalised items through
dedupe(src/dedupe.ts) to merge cross-source duplicates using conservative confidence-based matching. - Score every item using
score(src/score.ts) to compute transparent urgency rankings. - Generate the final action board using
render(src/render.ts) in both markdown and structured JSON formats. - The orchestration entrypoint is
index(src/index.ts), which coordinates steps 1-5.
Safety Rules
- 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.
- NEVER auto-post to any source system. Generated reply drafts and suggested actions are proposals, not executions.
- NEVER perform destructive actions such as deleting items, archiving threads, or dismissing notifications.
- 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.
- 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.
- MUST NOT fabricate or hallucinate action items. Only surface items that exist in the source data.
- MUST preserve the original source URL for every action item so the user can verify and act in context.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install inbox-to-action-closer - After installation, invoke the skill by name or use
/inbox-to-action-closer - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 187 downloads so far.
How do I install Inbox to Action Closer?
Run "/install inbox-to-action-closer" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Inbox to Action Closer free?
Yes, Inbox to Action Closer is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Inbox to Action Closer support?
Inbox to Action Closer is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Inbox to Action Closer?
It is built and maintained by honouralexwill (@honouralexwill); the current version is v1.1.0.