Trello Integration Pro

Visual task board and team collaboration

Pro Feature

Trello integration requires Pro or Enterprise license.

Setup

  1. Get API credentials from https://trello.com/power-ups/admin/
    • Copy your API key
    • Click "Generate Token" and authorize
  2. Connect PairCoder
    bash
    bpsai-pair trello connect
    # Enter API key and token when prompted
  3. Select your board
    bash
    # List available boards
    bpsai-pair trello boards
    
    # Set active board
    bpsai-pair trello use-board <board-id>
  4. 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

ScenarioCommand
Working with local task filestask
Need hooks to fire (timer, state.md)task update
Working directly with Trello cardsttask
Adding progress comments to cardsttask comment

Troubleshooting

ProblemSolution
"Invalid API key"Regenerate at trello.com/power-ups/admin/
"Board not found"Run bpsai-pair trello boards to list available
Cards not syncingCheck bpsai-pair trello status for connection