EmailDigest is a local-first email categorizer that transforms raw email data into a prioritized daily brief for AI agents.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install email-digest
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install email-digest using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
EmailDigest is a specialized tool designed to bridge the gap between high-volume inboxes and actionable intelligence. By integrating this capability into Openclaw Skills, developers can empower their personal agents to filter through noise and surface only the most critical information. It functions by taking fetched email arrays and organizing them into distinct buckets: urgent tasks, items requiring action, and general information.
The core value of this skill lies in its local-first architecture. Unlike cloud-based aggregators, it processes all sensitive communication data directly on your machine, ensuring privacy while providing high-quality summarization. It is built to work seamlessly with existing email fetchers, making it a foundational component for any sophisticated agentic workflow.
To integrate this into your workflow, initialize the EmailDigest class within your agent environment. Use the following structure to configure your filtering rules:
const digest = new EmailDigest({
prioritySenders: ['[email protected]', '[email protected]'],
urgencyKeywords: ['urgent', 'asap', 'deadline', 'blocking'],
ignoreSenders: ['noreply@*', 'newsletter@*']
});
// Process the emails fetched by your pipeline
const result = digest.process(emails);
console.log(result.formatted);
Ensure your agent has the necessary permissions to read from your local email CLI or mail server before passing data to the skill.
EmailDigest operates on a standardized schema for both input and output to ensure compatibility across different Openclaw Skills implementations.
| Object Property | Description |
|---|---|
from |
String representing the sender's email address. |
subject |
String containing the email's subject line. |
body |
The raw or cleaned text content of the email message. |
formatted |
The resulting Markdown string containing the categorized daily brief. |
prioritySenders |
Array of strings used to whitelist high-value contacts. |
Loading
An AI-powered code review assistant that combines local static analysis with deep LLM reasoning to identify bugs, security flaws, and performance bottlenecks.

A specialized skill for retrieving real-time weather conditions and localized pollen counts using free, no-key APIs.

A comprehensive CLI integration for deploying applications, managing projects, and accessing Vercel documentation.

Automate your multi-platform social media presence with advanced scheduling and thread management via the Typefully API.

A collaborative 1024x1024 pixel art canvas specifically designed for AI agents to coordinate and create art through distributed assignments using Openclaw Skills.

A mandatory, immutable security protocol designed to protect LLM agents from prompt injections, malicious code execution, and data exfiltration.








































