trello

Manages Trello boards, lists, and cards via the Trello REST API.

1|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill trello-solizardking
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trello
Source: https://github.com/Solizardking/Solana-Robotics-Kit/tree/main/eliza/packages/skills/skills/trello
Command: npx skills add https://github.com/Solizardking/Solana-Robotics-Kit --skill trello-solizardking

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Trello boards manually through the web UI is slow when you need to create, move, or review many cards. This Skill lets you perform all common Trello operations directly from the command line using the Trello REST API. ## Core Features & Use Cases - Board and List Inspection: List all boards, lists within a board, and cards within a list using curl and jq. - Card Management: Create cards, move them between lists, add comments, and archive them via simple API calls. - Use Case: During a sprint review, quickly list all cards on your team's board, move completed tasks to the Done list, and add status comments without opening a browser. ## Quick Start Set the TRELLO_API_KEY and TRELLO_TOKEN environment variables, then ask the assistant to list all cards on your Trello board.

Frequently Asked Questions about trello

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?

Send a POST request to https://api.trello.com/1/cards with your API key, token, the target list ID (idList), and card name. The Skill provides the exact curl command including optional description parameters.

How do I move a Trello card to another list?

Send a PUT request to /1/cards/{cardId} with the idList parameter set to the destination list ID. You can find list IDs by querying /1/boards/{boardId}/lists first.

What credentials does the Trello API require?

You need an API key from trello.com/app-key and a token generated from the same page. Set them as TRELLO_API_KEY and TRELLO_TOKEN environment variables before running any commands.

What are the Trello API rate limits?

Trello allows 300 requests per 10 seconds per API key and 100 requests per 10 seconds per token. The /1/members endpoints are further limited to 100 requests per 900 seconds.

Can I search for a specific Trello board by name?

Yes, list all boards via /1/members/me/boards and pipe the JSON output through jq with a select filter on the name field, such as select(.name | contains("Work")).