trello-agent

Manage Trello boards, lists, cards, and checklists via trello-cli commands.

3|Updated Oct 28, 2020
One-click install
npx skills add https://github.com/k0d3x8its/dotfiles --skill trello-agent-k0d3x8its
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: trello-agent
Source: https://github.com/k0d3x8its/dotfiles/tree/main/claude/.claude/skills/trello-agent
Command: npx skills add https://github.com/k0d3x8its/dotfiles --skill trello-agent-k0d3x8its

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Trello boards manually through the web UI is slow and hard to automate. This Skill lets you operate boards, lists, cards, checklists, and labels directly through trello-cli with validated, safe command execution. ## Core Features & Use Cases - Full Board Operations: Create, update, archive, and inspect boards, lists, and cards using the trello-cli command index. - Checklist Management: Create checklists, add items, toggle completion state, and rename or reorder items on any card. - Safe Execution Rules: Confirms before destructive operations like deletes and archives, resolves board names to IDs first, and reports exact errors instead of guessing. - Use Case: Ask to create a card titled "Release v2.0" in the Back Log of your Kodex OS board with a three-item checklist, then move it to Doing when work starts. ## Quick Start Create a Trello card named "Write launch notes" in the Back Log list of my Kodex OS board with a checklist containing two tasks.

Frequently Asked Questions about trello-agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Trello card from the command line?▼

Use trello card:create with the -n flag for the name, plus --board and --list to target the location. You can add --description, --due, --label, and --position flags for additional card details.

How to add a checklist to a Trello card using trello-cli?▼

Run trello card:checklist with --board, --list, --card, and -n for the checklist name. Then add items with trello card:add-checklist-item, scoping with --checklist to avoid ambiguity between checklists.

Can I move Trello cards between lists from the terminal?▼

Yes, trello card:move moves a card to another list or board using the --to flag and optional --position. To move all cards at once, use trello list:move-all-cards with --destination-board and --destination-list.

Does trello-cli support searching cards across boards?▼

Yes, trello search accepts --query with optional --board and --type filters for cards, boards, or organizations. Use --format json when chaining the search output into other commands.

Why does my trello-cli command fail with unknown flags?▼

Flag spellings drift as trello-cli updates, so static references become outdated. Run trello <command> --help for the canonical, current list of flags before constructing your command.