Microsoft Outlook/Live.com email client via Microsoft Graph API. List, search, read, send, and reply to emails.
Scanned 2/12/2026
Install via CLI
openskills install openclaw/skills---
name: outlook
emoji: f4e7
description: Microsoft Outlook/Live.com email client via Microsoft Graph API. List, search, read, send, and reply to emails.
homepage: https://github.com/abhiramee08b021/outlook-cli
metadata:
{
"openclaw":
{
"emoji": "📧",
"requires": { "bins": ["python3"], "python_packages": ["requests"] },
"install":
[
{
"id": "manual",
"kind": "manual",
"label": "Requires Azure AD app registration",
},
],
},
}
---
# Outlook CLI
Command-line email client for Microsoft Outlook/Live/Hotmail using Microsoft Graph API.
## Setup
1. **Create Azure AD App:** https://portal.azure.com → App registrations
- Name: `outlook-cli`
- Account type: "Personal Microsoft accounts only"
- Redirect URI: `http://localhost:8080/callback`
2. **Get credentials** from your app registration
3. **Configure:**
```bash
outlook configure
```
4. **Authenticate:**
```bash
outlook auth
```
## Commands
| Command | Description |
|---------|-------------|
| `outlook list [n]` | List recent emails |
| `outlook search "query" [n]` | Search emails |
| `outlook read <id>` | Read email by ID |
| `outlook send --to ...` | Send email |
| `outlook reply <id>` | Reply to email |
| `outlook status` | Check auth status |
## Examples
**List emails:**
```bash
outlook list 20
```
**Search:**
```bash
outlook search "from:linkedin.com"
outlook search "subject:invoice"
```
**Send:**
```bash
outlook send --to "user@example.com" --subject "Hello" --body "Message"
outlook send --to "a@x.com,b@x.com" --cc "boss@x.com" --subject "Update" --body-file ./msg.txt
```
**Reply:**
```bash
outlook reply EMAIL_ID --body "Thanks!"
outlook reply EMAIL_ID --all --body "Thanks everyone!"
```
## Search Operators
- `from:email@domain.com` - Sender
- `subject:keyword` - Subject line
- `body:keyword` - Email body
- `received:YYYY-MM-DD` - Date
- `hasattachment:yes` - Has attachments
## Files
- `SKILL.md` - This documentation
- `outlook` - Main CLI script
- `README.md` - Full documentation
No comments yet. Be the first to comment!
Create Mermaid diagrams for flowcharts, sequences, ERDs, and
Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.
Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".
Review a pull request or contribution deeply, explain it tutorial-style for a maintainer, and produce a polished report artifact such as HTML or Markdown. Use when asked to analyze a PR, explain a contributor's design decisions, compare it with similar systems, or prepare a merge recommendation.
Generate the stable Paperclip release changelog at releases/vYYYY.MDD.P.md by reading commits, changesets, and merged PR context since the last stable tag.