Loading...
Loading...
Enables Claude to read, compose, and manage emails in Microsoft Outlook via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os outlookcurl -sSL https://canifi.com/skills/outlook/install.sh | bashcp -r skills/outlook ~/.canifi/skills/# First, ensure canifi-env is installed:
# curl -sSL https://canifi.com/install.sh | bash
canifi-env set MICROSOFT_EMAIL "your-email@outlook.com"canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"User: "Check my Outlook inbox"
Claude: Navigates to Outlook, reads inbox.
Reports: "You have 8 unread emails:
1. From IT Support - 'System Update' (1 hour ago)
2. From Manager - 'Weekly Report' (2 hours ago)..."User: "Send an email to the team about tomorrow's meeting"
Claude: Composes email with subject "Tomorrow's Meeting",
adds relevant details, sends. Confirms: "Email sent to team"User: "Find all emails from HR about benefits"
Claude: Searches "from:HR benefits", returns results.
Reports: "Found 5 emails about benefits from HR..."User: "Move all newsletters to the Archives folder"
Claude: Identifies newsletter emails, moves to Archives.
Confirms: "Moved 23 newsletters to Archives"// New message button
'[aria-label="New mail"]'
// Mail list
'[role="listbox"]'
// Email item
'[role="option"]'
// To field
'[aria-label="To"]'
// Subject field
'[aria-label="Add a subject"]'
// Message body
'[aria-label="Message body"]'
// Send button
'[aria-label="Send"]'
// Search box
'[aria-label="Search"]'
// Folder pane
'[aria-label="Folder pane"]'
// Categories
'[aria-label="Categorize"]'
// Flag
'[aria-label="Flag this message"]'