trello

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

1|Updated Jun 9, 2026
One-click install
npx skills add https://github.com/JEROME-PRAKASH-L/openclaw --skill trello-jerome-prakash-l
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trello
Source: https://github.com/JEROME-PRAKASH-L/openclaw/tree/main/skills/trello
Command: npx skills add https://github.com/JEROME-PRAKASH-L/openclaw --skill trello-jerome-prakash-l

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Trello boards manually through the web UI is slow when you need to quickly create cards, move tasks between lists, or audit board contents from the command line or an AI assistant. ## 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 the Trello REST API. - Use Case: During a sprint planning session, ask the assistant to create a card titled "Fix login bug" in the "To Do" list and add a comment with reproduction steps, without opening a browser. ## Quick Start Set the TRELLO_API_KEY and TRELLO_TOKEN environment variables, then ask the assistant 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 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 the card name and description. The skill provides the exact curl command for this operation.

How do I get Trello API credentials?

Visit https://trello.com/app-key to get your API key, then click the Token link on that page to generate a token. Set both as the TRELLO_API_KEY and TRELLO_TOKEN environment variables.

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, along with your API key and token. You can find list IDs by querying the board's lists endpoint.

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.

Why is jq required for the Trello skill?

The Trello REST API returns JSON responses, and jq is used to filter and format fields like board names, list IDs, and card descriptions into readable output. It can be installed via Homebrew.