test1Manage Trello boards, lists, and cards via the Trello REST API.
Install via ClawdBot CLI:
clawdbot install ChaunceyLiu/test1Requires:
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 Mar 1, 2026
Teams can use this skill to manage Trello boards for tracking project tasks, assign cards to members, and update statuses via commands. It helps remote teams coordinate without manual Trello UI interaction, automating updates like moving cards between lists as tasks progress.
Marketing teams can leverage this skill to organize content creation workflows on Trello. They can list boards for different campaigns, create cards for blog posts or social media content, and add comments for feedback, streamlining content planning and approval processes.
Support teams can use this skill to manage Trello boards as a ticketing system. They can list cards for customer issues, move them through lists like 'Open', 'In Progress', and 'Resolved', and archive cards after resolution, improving response times and organization.
Event organizers can utilize this skill to plan events by managing Trello boards for tasks such as venue booking, vendor coordination, and attendee management. They can create cards for each task, add comments for updates, and archive completed items, ensuring smooth execution.
Individuals can use this skill for personal productivity by managing Trello boards for daily to-dos, goals, or habit tracking. They can list boards for different life areas, create and move cards as tasks are completed, and archive old cards, enhancing personal organization.
Offer a service that integrates this Trello skill into existing SaaS platforms for businesses, providing automated project management workflows. Charge a subscription fee based on usage tiers, such as number of API calls or team size, to generate recurring revenue.
Provide consulting services to help companies customize and implement this skill for their specific Trello workflows, such as setting up boards for unique business processes. Charge hourly rates or project-based fees for setup, training, and ongoing support.
Develop a tool around this skill that offers basic Trello management for free, with premium features like advanced analytics, bulk operations, or integration with other apps. Monetize through premium subscriptions or one-time payments for advanced capabilities.
💬 Integration Tip
Ensure environment variables are securely set and use jq for parsing JSON responses to avoid errors in command outputs.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Create, search, and manage Bear notes via grizzly CLI.
Track water and sleep with JSON file storage
Notion API for creating and managing pages, databases, and blocks.
Smart ClawdBot documentation access with local search index, cached snippets, and on-demand fetch. Token-efficient and freshness-aware.
Work with Obsidian vaults as a knowledge base. Features: fuzzy/phonetic search across all notes, auto-folder detection for new notes, create/read/edit notes with frontmatter, manage tags and wikilinks. Use when: querying knowledge base, saving notes/documents, editing existing notes by user instructions.