@openclaw/trello
Manage Trello boards, lists, and cards via the Trello REST API.
Install
Add @openclaw/trello to Claude Code with the PolySkill CLI: polyskill add @openclaw/trello
Instructions
# Trello Skill Manage Trello boards, lists, and cards directly from OpenClaw. ## Setup 1. Get your API key: https://trello.com/app-key 2. Generate a token (click "Token" link on that page) 3. Set environment variables: ```bash export TRELLO_API_KEY="your-api-key" export TRELLO_TOKEN="your-token" ``` ## Usage All commands use curl to hit the Trello REST API. ### List boards ```bash curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}' ``` ### List lists in a board ```bash curl -s "https://api.trello.com/1/boards/{boardId}/lists?key…
Keywords: trello, kanban, boards, project-management