From trello-cli
Use when work is complete to move card to appropriate Done list based on whether code was committed
How this skill is triggered — by the user, by Claude, or both
Slash command
/trello-cli:finish-cardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Complete a card by moving it to the appropriate Done list. The destination depends on whether the work involved committed code.
Complete a card by moving it to the appropriate Done list. The destination depends on whether the work involved committed code.
Check for recent commits:
git log --oneline --since="2 hours ago"
Decision logic:
Done/Committed/commit skill was used in this session → Done/CommittedDone/DeployedUse AskUserQuestion when unclear:
question: "Which Done list should this card move to?"
header: "Destination"
options:
- label: "Done/Committed"
description: "Code was committed/merged to main branch"
- label: "Done/Deployed"
description: "No code changes or already deployed"
bin/trello card move <ref> "<list-name>"
Report ONLY: "Moved # to "
If you catch yourself doing these, STOP:
| Scenario | Destination |
|---|---|
| PR merged to main | Done/Committed |
Used /commit in session | Done/Committed |
| Code changes committed | Done/Committed |
| Research/documentation only | Done/Deployed |
| Question answered | Done/Deployed |
| Already deployed/no action | Done/Deployed |
| Unclear | Ask user |
npx claudepluginhub mjbellantoni/cc-marketplace --plugin trello-cliManages Trello boards, lists, cards via CLI: get/create/update/move/archive cards, checklists, attachments, comments. Activates on Trello mentions.
Manage a Markdown-based Kanban board using card files in a kanban/ directory (including kanban/archived/ for completed cards). Use when the user asks to create, move, view, list, or manage tasks or cards on a kanban board, or when tracking work items across statuses like backlog, todo, doing, done, or archive.
Manages Trello boards, lists, and cards via the Trello REST API. Useful for project management automation within Claude Code.