Loading...
Loading...
Enables Claude to create, manage, and track tasks in Microsoft Planner via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os microsoft-plannercurl -sSL https://canifi.com/skills/microsoft-planner/install.sh | bashcp -r skills/microsoft-planner ~/.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: "Add a task for reviewing the proposal with high priority"
Claude: Opens Planner, adds task "Review Proposal",
sets high priority, assigns due date.
Confirms: "Task created with high priority"User: "What tasks are due this week in the Marketing plan?"
Claude: Opens Marketing plan, filters by due date.
Reports: "5 tasks due this week:
1. Social media calendar (Due Mon) - In Progress
2. Blog post draft (Due Wed) - Not Started..."User: "Create buckets for To Do, In Progress, and Done"
Claude: Opens plan, creates three buckets with specified names.
Confirms: "Created 3 buckets for task organization"User: "Mark the website update task as complete"
Claude: Finds task, marks as complete.
Confirms: "Task 'Website Update' marked complete"// Plan list
'[aria-label="Plans"]'
// Board view
'.board-view'
// Bucket
'.bucket-container'
// Task card
'.task-card'
// Add task button
'[aria-label="Add task"]'
// Task title input
'input[placeholder*="task name"]'
// Due date picker
'[aria-label="Due date"]'
// Priority selector
'[aria-label="Priority"]'
// Assign button
'[aria-label="Assign"]'
// Progress dropdown
'[aria-label="Progress"]'
// Charts view
'[aria-label="Charts"]'