trello

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

Updated Mar 7, 2026
One-click install
npx skills add https://github.com/shalevamin/Tau_agent --skill trello-shalevamin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trello
Source: https://github.com/shalevamin/Tau_agent/tree/main/tau-agent-main/skills/trello
Command: npx skills add https://github.com/shalevamin/Tau_agent --skill trello-shalevamin

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 comment on many cards. This Skill lets you perform all core 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 Lifecycle Management: Create cards, move them between lists, add comments, and archive them via API calls. - Use Case: During a sprint planning session, automatically create a card for each task in your backlog list, then move completed cards to the Done list and add status comments without opening the Trello website. ## Quick Start Set the TRELLO_API_KEY and TRELLO_TOKEN environment variables, then ask the agent to list your Trello boards or create a 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 card name. You can also include a description via the desc parameter.

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. The card moves immediately to the new list.

What credentials does the Trello API require?

You need an API key from https://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.

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.

How do I find Trello board and list IDs?

Query /1/members/me/boards to list boards with their IDs, then query /1/boards/{boardId}/lists to get list IDs. IDs also appear in Trello URLs, and jq filters the JSON output.