trello

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

327|85|Updated Jan 29, 2026
One-click install
npx skills add https://github.com/letta-ai/lettabot --skill trello
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: trello
Source: https://github.com/letta-ai/lettabot/tree/main/.skills/trello
Command: npx skills add https://github.com/letta-ai/lettabot --skill trello

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables automation of Trello board, list, and card management via the Trello REST API, eliminating repetitive manual tasks.

Core Features & Use Cases

  • Create, move, update, and delete cards, lists, and boards programmatically to keep project work organized.
  • Integrate Trello workflows into automation scripts or chatbots to respond to events and update boards on demand.
  • Use with Letta's CLI or any shell-driven workflow to reflect real-time changes in Trello from a chat or automation pipeline.

Quick Start

Set environment variables for authentication and run sample curl commands to list boards or create a card: export TRELLO_API_KEY="your-api-key" export TRELLO_TOKEN="your-token" 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 management via the REST API?

Automate Trello board management by using curl commands to interact with the Trello REST API. You can script common tasks like creating lists, adding cards, moving cards, and commenting from shell-driven workflows.

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

Trello API automation requires setting the TRELLO_API_KEY and TRELLO_TOKEN environment variables. These credentials authenticate your curl requests against the Trello REST API endpoints.

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

Yes, you can use curl and jq to create and move Trello cards in automated workflows. Curl handles the API requests to manage cards, while jq parses the JSON responses to extract board and card IDs.

Does this Trello REST API integration work with Letta's CLI?

Yes, this Trello REST API integration works with Letta's CLI. It is designed to function within Letta's shell-driven workflows to reflect real-time changes in Trello boards from a chat or automation pipeline.

What's the best way to script repetitive Trello card management tasks?

Script repetitive Trello card management tasks by automating them via the Trello REST API using curl. This eliminates manual updates by allowing you to programmatically create, update, and delete cards.