trello

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

Updated Jun 19, 2026
One-click install
npx skills add https://github.com/AmirulAndalib/Vilvona-AI --skill trello-amirulandalib
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trello
Source: https://github.com/AmirulAndalib/Vilvona-AI/tree/main/skills/trello
Command: npx skills add https://github.com/AmirulAndalib/Vilvona-AI --skill trello-amirulandalib

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Trello boards manually through the web UI interrupts focused work. This Skill lets you list boards, create cards, move cards between lists, add comments, and archive cards directly through the Trello REST API using curl commands. ## Core Features & Use Cases - Board and List Discovery: List all your boards, the lists within a board, and the cards within a list using simple curl and jq commands. - Card Management: Create cards with titles and descriptions, move cards between lists, add comments, and archive completed cards. - Use Case: During a sprint review, ask the assistant to move all finished cards from the "In Progress" list to "Done" and add a summary comment to each card without opening Trello. ## Quick Start Set the TRELLO_API_KEY and TRELLO_TOKEN environment variables, then ask the assistant to list your Trello boards and create a new card in a specific list.

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 using the API?

Send a POST request to https://api.trello.com/1/cards with your API key, token, the target list ID (idList), and the card name and description as form parameters. The card is created immediately in the specified list.

How do I move a Trello card to another list?

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

What credentials does the Trello REST API require?

You need an API key from trello.com/app-key and a token generated from the Token link on that 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 limited to 100 requests per 900 seconds, so avoid polling them frequently.

How do I find Trello board and card IDs?

Query /1/members/me/boards to list board IDs, then /1/boards/{boardId}/lists for list IDs, and /1/lists/{listId}/cards for card IDs. IDs also appear in Trello URLs when browsing the web interface.