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}'