# Trello

> Manage Trello boards, lists, and cards via the Trello REST API.

- Skill: `xaiht/trello` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xaiht/trello`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xaiht/trello/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: XAIHT (https://skillmd.com/u/xaiht)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/xaiht/trello

---

<!--
═══════════════════════════════════════════════════════════════════
  ✦  T L A M A T I N I  ✦   —   "one who knows"
  Created by  Angela López Mendoza   ·   @angelahack1
  Developer · Architect · Creator of Tlamatini
  Tlamatini Author Banner — do not remove (Angela's name is kept in every build)
═══════════════════════════════════════════════════════════════════
-->

# Trello skill

Base URL: `https://api.trello.com/1/`. Append
`?key=$TRELLO_KEY&token=$TRELLO_TOKEN` to every URL.

Endpoints:
- `list-boards` → `GET /members/me/boards`
- `list-cards`  → `GET /boards/{boardId}/cards`
- `add-card`    → `POST /cards` with `idList`, `name`, `desc`
- `move-card`   → `PUT /cards/{id}` with `idList`
- `comment-card`→ `POST /cards/{id}/actions/comments` with `text`

