Modules@robinpath/trello
@robinpath/trello
0.1.0PublicTrello module for RobinPath.
@robinpath/trello
Trello module for RobinPath.
Why use this module?
The trello module lets you:
- List all boards for the authenticated user.
- Get a board by ID.
- List all lists in a board.
- Create a new list in a board.
- List all cards in a list.
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/trello
Quick Start
1. Set up credentials
trello.setCredentials "api_key" "token"
2. List all boards for the authenticated user.
trello.listBoards
Available Functions
| Function | Description |
|---|---|
trello.setCredentials | Set Trello API key and token. |
trello.listBoards | List all boards for the authenticated user. |
trello.getBoard | Get a board by ID. |
trello.listLists | List all lists in a board. |
trello.createList | Create a new list in a board. |
trello.listCards | List all cards in a list. |
trello.getCard | Get a card by ID. |
trello.createCard | Create a new card in a list. |
trello.updateCard | Update a card's properties. |
trello.moveCard | Move a card to a different list. |
trello.deleteCard | Delete a card permanently. |
trello.addComment | Add a comment to a card. |
Examples
List all boards for the authenticated user.
trello.listBoards
Get a board by ID.
trello.getBoard "board-id"
List all lists in a board.
trello.listLists "board-id"
Integration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/trello";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
trello.setCredentials "api_key" "token"
trello.listBoards
`);
Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/asana— Asana module for complementary functionality@robinpath/clickup— ClickUp module for complementary functionality@robinpath/jira— Jira module for complementary functionality@robinpath/linear— Linear module for complementary functionality@robinpath/monday— Monday.com module for complementary functionality
License
MIT
Versions (1)
| Version | Tag | Published |
|---|---|---|
| 0.1.0 | latest | yesterday |
Related Modules
productivity
0
@robinpath/airtable
v0.1.1robinpath
Airtable module for RobinPath.
0 downloads
...
productivity
0
@robinpath/asana
v0.1.1robinpath
Asana module for RobinPath.
0 downloads
...
productivity
0
@robinpath/basecamp
v0.1.1robinpath
Basecamp module for RobinPath.
0 downloads
...
productivity
0
@robinpath/clickup
v0.1.1robinpath
ClickUp module for RobinPath.
0 downloads
...
Install
$ robinpath install @robinpath/trello Version0.1.0
LicenseMIT
Unpacked Size5.1 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

