Trello Integration Pro
Visual task board and team collaboration
Pro Feature
Trello integration requires Pro or Enterprise license.
Setup
-
Get API credentials from https://trello.com/power-ups/admin/
- Copy your API key
- Click "Generate Token" and authorize
-
Connect PairCoder
bash
bpsai-pair trello connect # Enter API key and token when prompted -
Select your board
bash
# List available boards bpsai-pair trello boards # Set active board bpsai-pair trello use-board <board-id> -
Verify connection
bash
bpsai-pair trello status
Daily Workflow
bash
# List tasks from board
bpsai-pair ttask list
# Start a task (moves to "In Progress")
bpsai-pair ttask start <card-id>
# Complete a task (moves to "Done")
bpsai-pair ttask done <card-id> --summary "Implemented feature X"
# Mark blocked
bpsai-pair ttask block <card-id> --reason "Waiting for API"
# Add progress comment
bpsai-pair ttask comment <card-id> --message "50% complete"
Sync Plans to Trello
bash
# Preview what will sync
bpsai-pair plan sync-trello my-plan --dry-run
# Sync tasks to board
bpsai-pair plan sync-trello my-plan --board <board-id>
task vs ttask Commands
| Scenario | Command |
|---|---|
| Working with local task files | task |
| Need hooks to fire (timer, state.md) | task update |
| Working directly with Trello cards | ttask |
| Adding progress comments to cards | ttask comment |
Troubleshooting
| Problem | Solution |
|---|---|
| "Invalid API key" | Regenerate at trello.com/power-ups/admin/ |
| "Board not found" | Run bpsai-pair trello boards to list available |
| Cards not syncing | Check bpsai-pair trello status for connection |