trelloManage Trello boards, lists, and cards via the Trello REST API.
Install via ClawdBot CLI:
clawdbot install steipete/trelloRequires:
Manage Trello boards, lists, and cards directly from Clawdbot.
export TRELLO_API_KEY="your-api-key"
export TRELLO_TOKEN="your-token"
All commands use curl to hit the Trello REST API.
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
curl -s "https://api.trello.com/1/boards/{boardId}/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
curl -s "https://api.trello.com/1/lists/{listId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id, desc}'
curl -s -X POST "https://api.trello.com/1/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "idList={listId}" \
-d "name=Card Title" \
-d "desc=Card description"
curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "idList={newListId}"
curl -s -X POST "https://api.trello.com/1/cards/{cardId}/actions/comments?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "text=Your comment here"
curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
-d "closed=true"
/1/members endpoints are limited to 100 requests per 900 seconds# Get all boards
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&fields=name,id" | jq
# Find a specific board by name
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | select(.name | contains("Work"))'
# Get all cards on a board
curl -s "https://api.trello.com/1/boards/{boardId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, list: .idList}'
Generated Feb 25, 2026
Small teams use the Trello skill to manage project boards, track tasks, and collaborate on card updates. It helps automate task creation and movement between lists, streamlining workflows without manual Trello UI interaction.
Marketing teams leverage the skill to organize content calendars by creating cards for blog posts or social media updates. They can add comments for feedback and archive completed items, ensuring a clear overview of publishing schedules.
Support teams use Trello to handle customer inquiries by creating cards for each ticket and moving them through lists like 'Open', 'In Progress', and 'Resolved'. This automates status updates and improves response tracking.
Event planners manage logistics by setting up boards for different events, listing tasks such as venue booking and vendor coordination. The skill allows quick card creation and updates, keeping all stakeholders aligned on progress.
Offer a service that integrates Trello with other tools like Slack or CRM systems using this skill. Charge subscription fees for automated workflows that sync data and notifications, enhancing productivity for clients.
Provide consulting to businesses on optimizing Trello usage with custom scripts based on the skill. Revenue comes from one-time setup fees and ongoing support contracts for tailored automation solutions.
Conduct workshops teaching teams how to use the Trello skill for efficient project management. Generate revenue through course fees and materials, targeting industries like tech startups and remote teams.
💬 Integration Tip
Ensure jq is installed for parsing JSON responses and securely store API keys in environment variables to avoid exposure in scripts.
Sync and query CalDAV calendars (iCloud, Google, Fastmail, Nextcloud, etc.) using vdirsyncer + khal. Works on Linux.
Manage tasks and projects in Todoist. Use when user asks about tasks, to-dos, reminders, or productivity.
Master OpenClaw's timing systems. Use for scheduling reliable reminders, setting up periodic maintenance (janitor jobs), and understanding when to use Cron v...
Calendar management and scheduling. Create events, manage meetings, and sync across calendar providers.
Kanban-style task management dashboard for AI assistants. Manage tasks via CLI or dashboard UI. Use when user mentions tasks, kanban, task board, mission con...
Query and manage Linear issues, projects, and team workflows.