skillfed

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

2,795 327 MIT updated by moltis-org

Install

moltis-org/moltis/trello · repository language: Rust

git clone https://github.com/moltis-org/moltis
cp -r moltis/crates/skills/src/assets/productivity/trello ~/.claude/skills/trello
npx skillfed install moltis-org/moltis/trello

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

  1. Get your API key: https://trello.com/app-key
  2. Generate a token (click "Token" link on that page)
  3. 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)

Read as markdown · JSON record · Browse the source repository

File tree — 1 file
crates/skills/src/assets/productivity/trello/SKILL.md

Related skills

Tags

project-management rest-api-wrapper task-automation board-orchestration workflow-integration api-client card-operations team-collaboration