trello
This skill connects to Trello's REST API to automate your board workflows. Create and move cards, manage lists, add comments, and archive items—all via curl commands authenticated with your API key and token.
Trello skill automates board, list, and card operations through the Trello REST API.
AI-generated summary based on this skill's SKILL.md
Decision gist · record as of 2026-07-27
Trello skill automates board, list, and card operations through the Trello REST API. This skill connects to Trello's REST API to automate your board workflows. Create and move cards, manage lists, add comments, and archive items—all via curl commands authenticated with your API key and token.
Use it when
- Yes.
- The trello skill's main purpose is to automate Trello board, list, and card operations through REST API calls.
Verify before relying
Read SKILL.md below before installing (1 file). Open directory: indexed for reading, not audited.
Install
moltis-org/moltis/trello · repository language: Rust
Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.
Frequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I use the trello skill to manage trello boards and cards?
The trello skill connects to Trello's REST API to automate your board workflows. You authenticate with your API key and token, then use curl commands to create and move cards, manage lists, add comments, and archive items. The skill handles the API integration so you can focus on automating your Trello processes without manual board updates.
Can I create trello cards programmatically with this skill?
Yes. The trello skill lets you create Trello cards programmatically via REST API calls. You specify the list ID, card name, and optional details like description and due date. The skill manages authentication and API communication, so you can automate card creation as part of larger workflows.
What is trello REST API skill's main purpose?
The trello skill's main purpose is to automate Trello board, list, and card operations through REST API calls. It enables you to programmatically manage your Trello workflows—creating cards, moving them between lists, archiving completed tasks, querying board data, and adding comments—all authenticated with your API key and token.
How do I move cards between trello lists automatically?
The trello skill supports moving cards between lists via API commands. You provide the card ID and target list ID in your curl request, and the skill handles the REST API call. This lets you automate card transitions—for example, moving tasks from 'In Progress' to 'Done' when conditions are met.
Does trello skill support archiving cards and retrieving board data?
Yes. The trello skill lets you archive completed cards and query Trello boards to retrieve card information via REST API. You can fetch board details, list contents, and card metadata using authenticated API calls. This supports both automation workflows and data retrieval for reporting or sync purposes.
What authentication does the trello skill require?
The trello skill requires your Trello API key and token for authentication. You set these credentials once, and the skill includes them in all REST API requests to Trello. This secure approach lets you automate board operations without exposing credentials in individual commands.
SKILL.md
Rendered from the published skill. Quoted content, verbatim.
Trello Skill
Manage Trello boards, lists, and cards directly from Moltis.
Setup
- Get your API key: https://trello.com/app-key
- Generate a token (click "Token" link on that page)
- Set environment variables:
bash export TRELLO_API_KEY="your-api-key" export TRELLO_TOKEN="your-token"
Usage
All commands use curl to hit the Trello REST API.
List boards
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
List lists in a board
curl -s "https://api.trello.com/1/boards/{boardId}/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
List cards in a list
curl -s "https://api.trello.com/1/lists/{listId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id, desc}'
Create a card
```bash curl -s -X POST
(truncated - see the full file via the links below)
File tree — 1 file
crates/skills/src/assets/productivity/trello/SKILL.md
Let your AI agent find skills like this
Example. Real query, live index.
You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.
wish › “Automate Trello board, list, and card operations via REST API”
Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →
Related skills
Trello Setup links your Trello workspace to Dex, letting you ask for board status, create cards, and move them across lists directly from chat. Once connected, you can sync tasks on demand—Dex pushes new work to the right list, marks completions, and pulls changes you made in Trello. Setup takes a few minutes and requires your Trello API credentials, which stay local and secure.
This skill connects to Trello's REST API to automate board, list, and card operations from the command line. Create cards, move tasks between lists, add comments, and archive items without leaving your terminal.
Trello Automation handles repetitive board and card tasks through configurable rules, templates, and Butler commands. Set up triggers for card movement, due dates, and member assignments, then let automation handle list updates, reminders, and cleanup. Includes sprint boards, content calendars, and integration hooks for Slack.
This skill exposes the Notion API through curl, enabling you to programmatically create, retrieve, update, and delete pages, databases, and blocks. Work with properties like titles, dates, selections, and relations using standard HTTP requests authenticated with your Notion API key.
Detach cleanly unwinds govctl integration from a project through an ownership-aware process that archives the governance tree, identifies and removes only project-local assets, and surgically edits configuration to eliminate integration hooks. Every mutation requires explicit approval after a detailed dry-run plan, and the skill preserves governance history, unrelated user configuration, and meaningful context throughout.
agent-browser enables AI agents to interact with web applications by automating clicks, form fills, and navigation tasks. Built for efficiency, it processes multiple browser actions in parallel while keeping token consumption low, making it ideal for workflows that require reliable web automation at scale.