outlook-emails-lawvable
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseOutlook Email Integration (Read-Only)
Outlook 邮件集成(只读)
Overview
概述
| What this skill does | What it does NOT do |
|---|---|
| Read and search Outlook emails | Send emails |
| Download email attachments | Store any data between sessions |
| Integrate with other Skills (NDA, contracts) | Require any technical setup |
| 该技能可实现的功能 | 该技能无法实现的功能 |
|---|---|
| 读取和搜索Outlook邮件 | 发送邮件 |
| 下载邮件附件 | 在会话之间存储任何数据 |
| 与其他技能集成(如NDA、合同相关) | 需要任何技术配置 |
Getting Started
快速开始
No configuration needed. Just run the skill and sign in with your Microsoft account.
无需配置。只需运行该技能并使用你的Microsoft账户登录。
Read emails
读取邮件
bash
undefinedbash
undefinedLast 10 emails
Last 10 emails
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py
Last 5 emails
Last 5 emails
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --limit 5
undefineduv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --limit 5
undefinedSearch emails
搜索邮件
bash
undefinedbash
undefinedSearch by keyword
Search by keyword
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --search "NDA"
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --search "NDA"
Search by sender
Search by sender
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --from "jean@example.com"
undefineduv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --from "jean@example.com"
undefinedDownload attachments
下载附件
bash
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --downloadbash
uv run .agents/skills/outlook-emails-lawvable/scripts/outlook_oauth.py --downloadAuthentication
身份验证
Each run opens a browser window for Microsoft login. Sign in with your Microsoft account and accept the permissions.
Read-only access. The skill only requests permission to read your emails and your profile. It cannot send emails or modify anything.
Zero data retention. No token is stored between sessions. Each time you run the skill, you authenticate fresh. Nothing is cached on disk.
Your password is never shared with Lawvable.
每次运行都会打开一个浏览器窗口用于Microsoft登录。使用你的Microsoft账户登录并接受权限请求。
只读权限:该技能仅请求读取邮件和个人资料的权限,无法发送邮件或修改任何内容。
零数据留存:会话之间不会存储任何令牌。每次运行技能时都需要重新进行身份验证,不会在磁盘上缓存任何数据。
你的密码绝不会共享给Lawvable。
Integration with Other Skills
与其他技能集成
Example: Email → NDA Review
示例:邮件 → NDA审核
User: "Read the latest email from jean@partner.com and review
the NDA attachment using the NDA skill"
Claude will:
1. Use outlook_oauth.py to fetch the email
2. Download the .docx attachment
3. Use nda-review-jamie-tso skill to analyze
4. Return the issue log with redlinesUser: "Read the latest email from jean@partner.com and review
the NDA attachment using the NDA skill"
Claude will:
1. Use outlook_oauth.py to fetch the email
2. Download the .docx attachment
3. Use nda-review-jamie-tso skill to analyze
4. Return the issue log with redlinesAdvanced: Use Your Own Azure App
进阶:使用你自己的Azure应用
If you prefer to use your own Azure App Registration, set this environment variable:
AZURE_CLIENT_ID=your-client-idSee for the full setup guide.
references/AZURE_SETUP.md如果你更倾向于使用自己的Azure应用注册,请设置以下环境变量:
AZURE_CLIENT_ID=your-client-id完整设置指南请查看。
references/AZURE_SETUP.md