Loading...
Loading...
Enables Claude to create, manage, and organize boards, lists, and cards in Trello via Playwright MCP
npx skill4agent add andrejones92/canifi-life-os trellocurl -sSL https://canifi.com/skills/trello/install.sh | bashcp -r skills/trello ~/.canifi/skills/# First, ensure canifi-env is installed:
# curl -sSL https://canifi.com/install.sh | bash
canifi-env set TRELLO_EMAIL "your-email@example.com"canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"User: "Add a card 'Review designs' to the In Progress list"
Claude: Opens board, navigates to In Progress list, creates card.
Confirms: "Card 'Review designs' added to In Progress"User: "What's on the project board?"
Claude: Opens board, reads all lists and cards.
Reports: "Board has 4 lists: Backlog (12 cards),
In Progress (3 cards), Review (2 cards), Done (8 cards)"User: "Move the 'API integration' card to Done"
Claude: Finds card, drags to Done list.
Confirms: "Moved 'API integration' to Done"User: "Add a deployment checklist to the release card"
Claude: Opens card, adds checklist with items.
Confirms: "Added checklist with 5 items"// Board list
'.boards-page-board-section'
// List on board
'.list-wrapper'
// List title
'.list-header-name'
// Card in list
'.list-card'
// Add card button
'.open-card-composer'
// Card title input
'.list-card-composer-textarea'
// Add card submit
'.confirm'
// Card detail
'.card-detail-window'
// Checklist
'.checklist'
// Labels
'.card-label'
// Due date
'.due-date-badge'