trello ยท diff
git:20260430.e50709e to git:20260629.fe782dc
52 added, 44 removed. Audit A to A.
- ---
- name: trello
- description: Manage Trello boards, lists, and cards via the Trello REST API.
- metadata:
- openclaw:
- emoji: "๐ฆ"
- requires:
- env: ["TRELLO_KEY","TRELLO_TOKEN"]
- primaryEnv: "TRELLO_TOKEN"
- tlamatini:
- runtime: in-process
- requires_tools: ["chat_agent_apirer"]
- requires_mcps: []
- budget:
- max_iterations: 4
- max_seconds: 30
- max_tokens: 6000
- permissions:
- filesystem: { read: [], write: [] }
- shell: []
- network: allow
- db: deny
- inputs:
- - { name: action, type: enum,
- values: ["list-boards","list-cards","add-card","move-card","comment-card"],
- required: true }
- - { name: payload, type: object, required: false }
- outputs:
- - { name: response, type: object, required: true }
- triggers:
- keywords: ["trello","board","card","kanban"]
- ---
-
- # 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`
+ ---
+ name: trello
+ description: Manage Trello boards, lists, and cards via the Trello REST API.
+ metadata:
+ openclaw:
+ emoji: "๐ฆ"
+ requires:
+ env: ["TRELLO_KEY","TRELLO_TOKEN"]
+ primaryEnv: "TRELLO_TOKEN"
+ tlamatini:
+ runtime: in-process
+ requires_tools: ["chat_agent_apirer"]
+ requires_mcps: []
+ budget:
+ max_iterations: 4
+ max_seconds: 30
+ max_tokens: 6000
+ permissions:
+ filesystem: { read: [], write: [] }
+ shell: []
+ network: allow
+ db: deny
+ inputs:
+ - { name: action, type: enum,
+ values: ["list-boards","list-cards","add-card","move-card","comment-card"],
+ required: true }
+ - { name: payload, type: object, required: false }
+ outputs:
+ - { name: response, type: object, required: true }
+ triggers:
+ keywords: ["trello","board","card","kanban"]
+ ---
+ <!--
+ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
+ โฆ 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`