Provides an interface to manage Trello boards, lists, and cards using the Tesseract operator.
Install
mkdir -p .claude/skills/trello-stelios12312312 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17567" && unzip -o skill.zip -d .claude/skills/trello-stelios12312312 && rm skill.zipInstalls to .claude/skills/trello-stelios12312312
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
How to manage Trello boards, lists, cards, labels, and comments via the Tesseract operatorKey capabilities
- →List all Trello boards
- →List all lists on a specified Trello board
- →List cards on a Trello list
- →Get a specific Trello card by ID
- →Create new Trello cards
- →Add comments to Trello cards
How it works
The skill uses a Trello connector to interact with the Trello API. It provides methods to retrieve, create, update, and archive Trello boards, lists, cards, labels, and comments.
Inputs & outputs
When to use trello
- →Automating task card creation
- →Listing board tasks
- →Adding comments to project tickets
About this skill
Trello — Reference Skill
Authentication
- API Key via
TRELLO_KEYenv var - Token via
TRELLO_TOKENenv var - Connector:
tesseract_operator/connectors/trello.py - Skills:
tesseract_operator/skills/trello_skills.py
Available Skills (9 total)
| Skill | Risk | MCP | Description |
|---|---|---|---|
trello.get_boards | LOW | ✅ | List all boards |
trello.get_lists | LOW | ✅ | List all lists on a board |
trello.list_cards | LOW | ✅ | List cards on a list |
trello.get_card | LOW | ✅ | Get a card by ID |
trello.get_labels | LOW | ✅ | List labels on a board |
trello.create_card | MEDIUM | ✅ | Create a card |
trello.update_card | MEDIUM | ✅ | Update card (title, desc, move, labels) |
trello.archive_card | MEDIUM | ✅ | Archive (close) a card |
trello.add_comment | MEDIUM | ✅ | Add a comment to a card |
Usage Pattern
trello = ctx.extras["trello"]
boards = trello.get_boards()
lists = trello.get_lists(board_id="xxx")
card = trello.create_card(list_id="xxx", name="[Lead] Jane Doe", desc="...")
Known Gotchas
- Lead triage creates Trello cards automatically — check existing cards before creating duplicates
- Board/list IDs change between workspaces
When not to use it
- →When Trello cards are created automatically by lead triage
- →When board/list IDs are expected to be consistent across workspaces
- →When `TRELLO_KEY` or `TRELLO_TOKEN` are not set
Prerequisites
Limitations
- →Board/list IDs change between workspaces
- →Requires checking existing cards before creating duplicates
- →Creating, updating, archiving cards, and adding comments are marked as MEDIUM risk
How it compares
This skill provides programmatic control over Trello elements, enabling automation of project management workflows directly from a development environment, unlike manual Trello interaction.
Compared to similar skills
trello side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| trello (this skill) | 0 | 1mo | No flags | Beginner |
| nextcloud-cli-deck | 0 | 3mo | Review | Intermediate |
| slack-to-queue | 0 | 1mo | Review | Intermediate |
| event-management | 0 | 8mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by stelios12312312
View all by stelios12312312 →You might also like
nextcloud-cli-deck
NicholaiVogel
Work with the Nextcloud Deck app through Nextcloud CLI. Use when an agent needs to list boards and cards, create boards or stacks, create or update cards, move cards, archive or delete cards safely, validate Deck availability, or perform dry-run protected project-board workflows with nxc.
slack-to-queue
eranto
>-
event-management
markus41
Guides event lifecycle implementation including registration, capacity management, waitlists, QR code check-in, virtual/hybrid events, and post-event analytics for NABIP conferences, webinars, workshops, and networking events. Use when building event creation workflows, attendee management, or event
trello
openclaw
Manage Trello boards, lists, and cards via the Trello REST API.
github-manage
matteocervelli
Manage operations concerning GitHub on behalf of user
task-management
anthropics
Simple task management using a shared TASKS.md file. Reference this when the user asks about their tasks, wants to add/complete tasks, or needs help tracking commitments.