Trello board, list and card management via CLI. Activate when user mentions "Trello" - examples: "Show my Trello tasks", "Add card to Trello", "Move on Trello", "Trello board", "List Trello", "Trello cards".
View on GitHubZenoxZX/trello-cli
trello-cli
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/ZenoxZX/trello-cli/blob/main/plugins/trello-cli/skills/trello-cli/SKILL.md -a claude-code --skill trello-cliInstallation paths:
.claude/skills/trello-cli/# Trello CLI Manage Trello boards, lists, and cards using the `trello-cli` command. ## Important Rules 1. **Only activate when "Trello" is mentioned** - Do not interfere with Notion, Jira, or other tools 2. **Check JSON output after each command** - `ok: true` means success, `ok: false` means error 3. **Follow the workflow**: First find board ID, then list ID, then perform card operations ## Quick Reference ### Board & List ```bash trello-cli --get-boards # List all boards trello-cli --get-lists <board-id> # Get lists in board ``` ### Cards ```bash trello-cli --get-all-cards <board-id> # All cards in board trello-cli --create-card <list-id> "<name>" # Create card trello-cli --create-card <list-id> "<name>" --desc "<desc>" --due "2025-01-15" trello-cli --update-card <card-id> --name "<name>" --desc "<desc>" trello-cli --move-card <card-id> <list-id> # Move card trello-cli --delete-card <card-id> # Delete card trello-cli --get-comments <card-id> # Get comments trello-cli --add-comment <card-id> "<text>" # Add comment ``` ### Attachments ```bash trello-cli --list-attachments <card-id> # List attachments trello-cli --upload-attachment <card-id> <file-path> [--name "<name>"] trello-cli --attach-url <card-id> <url> [--name "<name>"] trello-cli --delete-attachment <card-id> <attach-id> ``` **Note:** Downloading attachments is not supported - Trello's download API requires browser authentication. Use `--attach-url` to link attachments between cards. ### Checklists ```bash trello-cli --get-checklists <card-id> # Get checklists on card trello-cli --create-checklist <card-id> "<name>" # Create checklist trello-cli --delete-checklist <checklist-id> # Delete checklist trello-cli --add-checklist-item <checklist-id> "<name>" # Add item trello-cli --update-checklist