with one click
trello
Manage Trello boards, lists, and cards via the Trello REST API.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Manage Trello boards, lists, and cards via the Trello REST API.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Retrieve secrets and vault items from 1Password using the op CLI with a service account token.
Create, read, and search Apple Notes on macOS using osascript AppleScript.
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
| name | trello |
| description | Manage Trello boards, lists, and cards via the Trello REST API. |
| always | false |
| metadata | {"clawlite":{"emoji":"📋","auth":{"requiredEnv":["TRELLO_API_KEY","TRELLO_TOKEN"]}}} |
Use this skill when the user wants to manage Trello boards, lists, or cards.
Set TRELLO_API_KEY and TRELLO_TOKEN (from https://trello.com/power-ups/admin).
BASE="https://api.trello.com/1"
AUTH="key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"
# List all boards for the authenticated user
curl -s "$BASE/members/me/boards?$AUTH&fields=id,name,url"
# Get a board's lists
curl -s "$BASE/boards/{board_id}/lists?$AUTH"
# Get all cards on a board
curl -s "$BASE/boards/{board_id}/cards?$AUTH"
# Get cards in a list
curl -s "$BASE/lists/{list_id}/cards?$AUTH"
# Create a list on a board
curl -s -X POST "$BASE/lists?$AUTH" \
-d "name=New List&idBoard={board_id}&pos=bottom"
# Create a card
curl -s -X POST "$BASE/cards?$AUTH" \
-d "name=Card Title&idList={list_id}&desc=Description"
# Move a card to another list
curl -s -X PUT "$BASE/cards/{card_id}?$AUTH" \
-d "idList={target_list_id}"
# Add a comment
curl -s -X POST "$BASE/cards/{card_id}/actions/comments?$AUTH" \
-d "text=Comment text"
# Archive (close) a card
curl -s -X PUT "$BASE/cards/{card_id}?$AUTH" -d "closed=true"
# Add a label
curl -s -X POST "$BASE/cards/{card_id}/labels?$AUTH" \
-d "color=red&name=Priority"