clawboard-cli
v0.1.3
Published
CLI for managing a Trello kanban board (Clawboard)
Readme
clawboard-cli
A small CLI for managing a Trello kanban board via the Trello REST API.
Default output is Markdown; use --json for raw JSON.
Install
npm i
npm run build
npm link
clawboard --helpAuth + board config
The CLI reads:
~/.config/trello/credentials.jsonwith{ "key": "...", "token": "..." }
Use clawboard init to set up auth + board.
- If
~/.config/trello/credentials.jsonis missing,clawboard init --key ... --token ...will write it. - If
~/.config/trello/board.jsonis missing, most commands will error and tell you to runclawboard init.
clawboard init creates a board named Clawboard with lists:
To doDoingDone
Override default board name with CLAWBOARD_NAME (or clawboard init --name "...").
Commands
clawboard initclawboard statusclawboard list todo|doing|done --limit 20clawboard add "Title" [--desc "..."] [--due 2026-02-03] [--list todo|doing|done]clawboard move <cardId|shortUrl|shortLink> todo|doing|doneclawboard done <cardId|shortUrl|shortLink>
Examples
clawboard status
clawboard list todo --limit 10
clawboard add "Fix moltbook-cli publish flow" --list todo --due 2026-02-03
clawboard move https://trello.com/c/yuQBBlHs doing
clawboard done yuQBBlHs
# JSON mode
clawboard status --json --pretty