trello

Lists, creates, moves and comments on Trello cards via API.

Updated Feb 1, 2026
One-click install
npx skills add https://github.com/Sugamdeol/moltbot-with-pollinations.ai --skill trello-sugamdeol
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trello
Source: https://github.com/Sugamdeol/moltbot-with-pollinations.ai/tree/main/skills/trello
Command: npx skills add https://github.com/Sugamdeol/moltbot-with-pollinations.ai --skill trello-sugamdeol

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Trello boards, lists, and cards are managed programmatically via the Trello REST API to automate project workflows and reduce manual admin.

Core Features & Use Cases

  • List boards: Retrieve all boards for a Trello user.
  • List lists in a board: Show all lists within a selected board.
  • List cards in a list: View cards inside a list with basic details.
  • Create and move cards: Create new cards and move them between lists.
  • Comment and archive: Add comments to cards and archive completed work.

Quick Start

Provide your Trello API key and token, then instruct Moltbot to list boards or create and move cards.

Frequently Asked Questions about trello

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Trello board and card management through the REST API?

Automate Trello board and card management by using curl with jq to interact with the Trello REST API. You can programmatically list boards, lists, and cards, and perform create, move, comment, or archive actions to reduce manual admin.

What environment variables do I need to set up for Trello REST API automation?

To set up Trello REST API automation, you must provide the TRELLO_API_KEY and TRELLO_TOKEN environment variables. These credentials authenticate your curl requests when managing boards and cards programmatically.

Can I use curl and jq to create and move cards in Trello lists?

Yes, you can use curl and jq to create and move cards in Trello lists. By targeting the Trello REST API, curl executes the HTTP requests while jq parses the JSON responses to facilitate moving cards between lists.

Does this Trello automation approach work for adding comments and archiving cards?

Yes, this Trello automation approach works for adding comments and archiving cards. It targets the Trello REST API to add comments to specific cards and archive completed work, streamlining project workflow management.

What is the best way to list all boards and lists for a Trello user via the REST API?

The best way to list all boards and lists for a Trello user via the REST API is using curl combined with jq. Curl retrieves the JSON data from the Trello endpoints, and jq filters and formats the output to display all boards and lists easily.

Why do I need jq when automating Trello cards with curl?

You need jq when automating Trello cards with curl because the Trello REST API returns JSON responses. Jq parses, filters, and extracts specific card or list details from this JSON output, making automation scripts manageable.