Modules@robinpath/trello

@robinpath/trello

0.1.0Public

Trello module for RobinPath.

@robinpath/trello

Trello module for RobinPath.

Category Functions Auth License

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

FunctionDescription
trello.setCredentialsSet Trello API key and token.
trello.listBoardsList all boards for the authenticated user.
trello.getBoardGet a board by ID.
trello.listListsList all lists in a board.
trello.createListCreate a new list in a board.
trello.listCardsList all cards in a list.
trello.getCardGet a card by ID.
trello.createCardCreate a new card in a list.
trello.updateCardUpdate a card's properties.
trello.moveCardMove a card to a different list.
trello.deleteCardDelete a card permanently.
trello.addCommentAdd 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

License

MIT

Versions (1)

VersionTagPublished
0.1.0latestyesterday
Install
$ robinpath install @robinpath/trello
Version0.1.0
LicenseMIT
Unpacked Size5.1 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

productivity