Loading...
Loading...
Enables Claude to create, organize, and manage notes in Microsoft OneNote via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os microsoft-onenotecurl -sSL https://canifi.com/skills/microsoft-onenote/install.sh | bashcp -r skills/microsoft-onenote ~/.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 note for today's meeting in OneNote"
Claude: Opens OneNote, navigates to appropriate section,
creates page "Meeting Notes - [Date]" with template.
Returns: "Created meeting notes page"User: "Create a new section for project research"
Claude: Opens notebook, adds "Project Research" section,
creates initial pages for different topics.
Confirms: "Created Project Research section with 3 pages"User: "Find my notes about the marketing strategy"
Claude: Searches notebooks for "marketing strategy".
Reports: "Found 4 pages with marketing strategy content:
1. Q4 Marketing Plan (Work notebook)..."User: "Add a project checklist to my planning page"
Claude: Opens planning page, inserts checklist with items.
Confirms: "Added checklist with 8 items"// Notebook list
'[aria-label="Notebooks"]'
// Section tabs
'.section-tabs'
// Page list
'.page-list'
// Note content
'[contenteditable="true"]'
// New page
'[aria-label="Add page"]'
// New section
'[aria-label="Add section"]'
// Search
'[aria-label="Search"]'
// Insert menu
'[aria-label="Insert"]'
// Tag menu
'[aria-label="Tags"]'
// Share button
'[aria-label="Share"]'
// Checkbox insert
'[aria-label="To Do Tag"]'