Install
openclaw skills install @jlacroix82/email-mgrRead, search, compose, and manage email. Inbox, search, compose, threading, status. JSON-based email store. Zero external dependencies.
openclaw skills install @jlacroix82/email-mgrStop checking email manually. Start managing it through the agent.
Email is the #1 source of important information the agent misses. No integration means no awareness of deadlines, alerts, or messages that need action.
Email Manager provides the foundation for email integration with local JSON storage.
node skills/email-manager/email-manager.js --inbox
Shows last 10 emails. Add count: --inbox 20
node skills/email-manager/email-manager.js --inbox --unread
node skills/email-manager/email-manager.js --search "project deadline"
Searches from, to, subject, and body.
node skills/email-manager/email-manager.js --compose james@example.com "Meeting Notes" "Here are the notes..."
node skills/email-manager/email-manager.js --compose --send james@example.com "Meeting Notes" "Here are the notes..."
node skills/email-manager/email-manager.js --thread thread-id-123
node skills/email-manager/email-manager.js --inbox --read email-id
node skills/email-manager/email-manager.js --inbox --delete email-id
node skills/email-manager/email-manager.js --status
Data files stored in: memory/email/
emails.json — Email storage (inbox, drafts, sent)settings.json — Sender address and preferencesOverride data directory:
--dir /path/to/data
For email-aware operations:
--inbox during heartbeats for urgent items--search for keywords related to active projects--compose for email drafts, review before sending--compose --send requires user approval--thread for ongoing email conversationsAdd to your HEARTBEAT.md:
### 📧 Email Check
- Run `node skills/email-manager/email-manager.js --inbox --unread`
- Only alert if urgent emails detected (look for "urgent", "deadline", "action required")
| Approach | Inbox | Search | Compose | Threading |
|---|---|---|---|---|
| Manual | ✅ | ✅ | ✅ | ✅ |
| Email Client | ✅ | ✅ | ✅ | ✅ |
| Email Manager | ✅ | ✅ | ✅ | ✅ |
Email Manager gives you inbox + search + compose + threading with zero external dependencies.