Loading...
Loading...
Enables Claude to create, edit, and format documents in Microsoft Word Online via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os microsoft-wordcurl -sSL https://canifi.com/skills/microsoft-word/install.sh | bashcp -r skills/microsoft-word ~/.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: "Create a Word document for my project report"
Claude: Creates new document "Project Report", adds title,
sections for Introduction, Methodology, Results, Conclusion.
Returns: "Created document: [link]"User: "Apply professional formatting to my resume"
Claude: Opens resume, applies consistent heading styles,
adjusts margins, adds section dividers.
Confirms: "Professional formatting applied"User: "Insert a comparison table in my document"
Claude: Inserts table with appropriate columns and rows,
formats with alternating colors.
Confirms: "Comparison table inserted"User: "Export my proposal as a PDF"
Claude: Opens document, navigates to File > Export > PDF,
downloads file. Reports: "Proposal exported as PDF"// New document
'[aria-label="New blank document"]'
// Document title
'[aria-label="Document name"]'
// Editing area
'[contenteditable="true"]' or '.WACEditing'
// Ribbon tabs
'[role="tablist"]'
// Home tab
'[aria-label="Home"]'
// Insert tab
'[aria-label="Insert"]'
// Bold button
'[aria-label="Bold"]'
// Font selector
'[aria-label="Font"]'
// Style gallery
'[aria-label="Styles"]'
// Save button
'[aria-label="Save"]'
// Share button
'[aria-label="Share"]'