OpenClaw Outlook Add-in Connects Local Agent to Email Sidebar

Direct Integration with Local OpenClaw Agent
A developer has released an Outlook add-in that connects directly to your local OpenClaw Gateway via WebSocket. Unlike basic AI email helpers, this tool provides access to your entire OpenClaw agent with all configured tools, skills, and automations from within Outlook's sidebar.
Core Functionality
The add-in reads the currently selected email's subject, sender, and body content, passing this as context to your OpenClaw agent. You can then chat with your agent in the sidebar interface, maintaining the same capabilities and tools you normally use.
Key Features from Source
- One-click draft reply generation that opens Outlook's native compose window for review
- Per-email chat sessions that persist when switching between emails
- Light/dark mode auto-detection based on Outlook's theme
- Pinned sidebar option and automatic WebSocket reconnection
- Works with Outlook Desktop (Classic), Outlook Web (OWA), and Microsoft 365
Practical Applications
Since the add-in connects to your full OpenClaw agent, you can perform any actions your agent is configured for directly from Outlook. The source mentions examples including creating calendar events, querying a Redmine tracker, looking up contacts, and triggering automations.
Technical Implementation
The add-in is built with Office.js and vanilla JavaScript, using a webpack development server with a WebSocket Secure (WSS) proxy to the local OpenClaw Gateway. The architecture keeps everything local—no cloud services or third-party dependencies are required, with all communication running through localhost.
The project is available on GitHub under an MIT license at https://github.com/nachtsheim/openclaw-outlook-addin.
📖 Read the full source: r/openclaw
👀 See Also

Found-Issues plugin logs bugs Claude ignores while working on other tasks
A Claude Code plugin that writes one-line entries to docs/found-issues.md when the agent spots bugs outside scope, with auto-closure on PR merge and tombstone detection.

Rukuzu: Porting a 200,000 Line C++ Graph Database to Rust with Systematic Testing
The Rukuzu project describes a workflow for porting the 200,000-line C++ kuzu embedded graph database to Rust, using a Claude Code custom command to maintain both versions simultaneously and verify correctness through 2,700+ tests.

Antigravity 2.0 Tops OpenSCAD Architectural 3D Benchmark – ModelRift Tests 6 LLMs on the Pantheon
ModelRift benchmarked 6 LLMs on building the Pantheon in OpenSCAD. Antigravity scored 4.5/5 in architectural quality, beating baseline Codex 5.5. Cursor 3.5 was fastest but weakest.

How to Move or Rename Claude Code Project Folders Without Losing Session History
Claude Code stores session history using absolute project paths, so moving or renaming folders with mv breaks session access. The clamp tool fixes this by migrating session data to match new paths.