trello

Automate Trello board, list, and card management via the REST API.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires jq, and includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the management of Trello boards, lists, and cards, eliminating the need for repetitive manual interactions.

Core Features & Use Cases

  • Board and List Management: Create, list, and manipulate Trello boards and lists programmatically.
  • Card Operations: Execute actions like creating, moving, and archiving cards.
  • Use Case: Automate your workflow by integrating Trello card operations into scripts or command-line tasks.

Quick Start

To list all your Trello boards, simply run the command: curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'

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 from the command line?

You can automate Trello board and card management from the command line by using this Skill to send REST API requests for creating, listing, moving, and archiving cards programmatically.

Can I integrate Trello task tracking into my existing shell scripts?

Yes, you can integrate Trello task tracking into shell scripts by executing API calls that manipulate boards and cards, eliminating repetitive manual interactions within your workflow.

Do I need jq to parse Trello API responses in my terminal?

Yes, you need jq installed to parse Trello API responses in your terminal, as the Skill relies on it to format JSON data returned from querying boards and lists.

What is the best way to list all Trello boards using API automation?

The best way to list all Trello boards using API automation is running a curl command to the Trello REST API and piping the JSON output through jq to extract names and IDs.

What Trello operations can I perform using command line API automation?

Using command line API automation, you can perform Trello operations including creating boards, manipulating lists, creating cards, moving cards across lists, and archiving cards.

Are there limitations when archiving Trello cards via the REST API?

When archiving Trello cards via the REST API, limitations include needing valid API credentials and ensuring your automation scripts correctly handle JSON parsing dependencies like jq.