Loading...
Loading...
Enables Claude to create, manage, and track projects and tasks in Asana via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os asanacurl -sSL https://canifi.com/skills/asana/install.sh | bashcp -r skills/asana ~/.canifi/skills/# First, ensure canifi-env is installed:
# curl -sSL https://canifi.com/install.sh | bash
canifi-env set ASANA_EMAIL "your-email@example.com"canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"User: "Add a task 'Prepare presentation' to the Marketing project"
Claude: Opens project, creates task with title.
Confirms: "Task 'Prepare presentation' added to Marketing"User: "What's the status of the Product Launch project?"
Claude: Opens project, analyzes tasks.
Reports: "Product Launch: 65% complete. 13 tasks done,
7 in progress, 5 pending. Next milestone: Beta Release (3 days)"User: "Assign the UX review task to Sarah with Friday deadline"
Claude: Finds task, assigns to Sarah, sets due date.
Confirms: "Assigned to Sarah, due Friday"User: "Create a new project for the website redesign"
Claude: Creates project "Website Redesign" with sections.
Returns: "Project created with default sections"// Sidebar
'.SidebarWorkspaceDropdownButton'
// Project list
'.SidebarNavigationLinkList'
// Task list
'.TaskList'
// Task row
'.TaskRow'
// Add task button
'.AddTaskButton'
// Task name input
'.TaskName-input'
// Assignee
'.TaskAssigneeField'
// Due date
'.DueDateField'
// Project header
'.ProjectHeader'
// Sections
'.TaskListSectionRow'
// Timeline view
'.Timeline'