From trello-cli
Use when user says "create a parent card for this plan", "make a parent Trello card with checklist", or wants to set up a parent card with numbered steps
How this skill is triggered — by the user, by Claude, or both
Slash command
/trello-cli:create-parent-from-planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a parent Trello card with a numbered checklist of steps. The parent stays in Backlog permanently. Each checklist item becomes a child card later via start-next-child.
Create a parent Trello card with a numbered checklist of steps. The parent stays in Backlog permanently. Each checklist item becomes a child card later via start-next-child.
[<slug>] <title> — slug is lowercase alphanumeric + hyphens[slug.01] [slug.02] [slug.03] etc.{deps:01,02} to items that depend on earlier steps{migrations} to items that involve Rails migrationsCollect from the user (ask if not provided):
owner-data (must match [a-z0-9-]+){deps:...} and {migrations} tagsBacklogbin/trello card new "[<slug>] <title>" \
--description "<plan/context text>" \
--list "<list name>"
Capture the card URL from output (line starting with "Created:").
bin/trello checklist add <card-ref> "Steps"
For each step, add a numbered checklist item:
bin/trello checklist item-add <card-ref> "Steps" "[<slug>.01] <step title>"
bin/trello checklist item-add <card-ref> "Steps" "[<slug>.02] <step title> {deps:01}"
bin/trello checklist item-add <card-ref> "Steps" "[<slug>.03] <step title> {deps:01,02} {migrations}"
Number format: always two digits, zero-padded (01, 02, ... 09, 10, 11, ...).
Report ONLY: the card URL.
Example: Created [owner-data] parent: https://trello.com/c/abc123XY
If you catch yourself doing these, STOP:
[slug] title, not just slug title[slug.01] not [slug.1][<slug>.NN]| Phase | Command | Purpose |
|---|---|---|
| 1. Gather | (conversation) | Get slug, title, plan, steps |
| 2. Create | bin/trello card new | Parent card on Backlog |
| 3. Steps | bin/trello checklist add + item-add | Numbered checklist |
| 4. Confirm | (output) | Card URL only |
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.
Manages Trello boards, lists, and cards via the Trello REST API. Useful for project management automation within Claude Code.
Automates Trello boards, cards, and workflows via Composio Rube MCP integration for card creation, list management, member assignment, and board search.