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

Phaselock: An AI Agent Control System Inspired by Parenting Techniques
Phaselock is an open-source Agent Skill that implements four control mechanisms for AI agents: explicit gates before action, immediate feedback on mistakes, constrained choices, and mechanical rule enforcement. It works with Claude Code, Cursor, Windsurf, and tools supporting hooks.

Wrangle: A Native macOS Editor for Managing Claude Code Sessions
Wrangle is a native macOS markdown editor built specifically for managing multiple Claude Code sessions, featuring embedded terminals and smart notifications. The developer created it after VS Code couldn't keep up with their daily workflow of running many Claude Code sessions.

OpenClaw Skill for Local Meeting Transcription with Whisper
A new OpenClaw skill called ghostmeet provides local meeting transcription using Whisper. It captures audio from browser tabs via a Chrome Extension and can generate summaries using Claude, with all audio and transcription processed locally on your machine.

Claude Code hooks prevent Chrome tab interference between multiple sessions
A developer created three hooks (session-start, capture-tab-id, enforce-tab-id) that pin each Claude Code session to its own Chrome tab, preventing sessions from accidentally accessing other sessions' tabs during test runs and form fills.