All Projects → mheap → Trello Cli

mheap / Trello Cli

Licence: mit
Command line client for Trello

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Trello Cli

Trelew
An interactive shell for Trello.
Stars: ✭ 83 (-65.7%)
Mutual labels:  trello, cli
3llo
3llo - Trello interactive CLI aplication
Stars: ✭ 245 (+1.24%)
Mutual labels:  trello, cli
Wapm Cli
📦 WebAssembly Package Manager (CLI)
Stars: ✭ 236 (-2.48%)
Mutual labels:  cli
Chattt
❯❯❯ Chat without leaving your terminal
Stars: ✭ 239 (-1.24%)
Mutual labels:  cli
Gmusicapi Scripts
https://github.com/thebigmunch/google-music-scripts
Stars: ✭ 237 (-2.07%)
Mutual labels:  cli
Clj.native Image
Build GraalVM native images with Clojure Deps and CLI tools
Stars: ✭ 236 (-2.48%)
Mutual labels:  cli
Code Minimap
🛰 A high performance code minimap render.
Stars: ✭ 235 (-2.89%)
Mutual labels:  cli
Meow
🐈 CLI app helper
Stars: ✭ 2,839 (+1073.14%)
Mutual labels:  cli
Pychubby
Automated face warping tool.
Stars: ✭ 240 (-0.83%)
Mutual labels:  cli
Spotctl
A command-line interface to Spotify, written in Go
Stars: ✭ 237 (-2.07%)
Mutual labels:  cli
Plex Sync
🎬 Command line utility for synchronizing Plex Media Server watched / seen status between multiple servers
Stars: ✭ 239 (-1.24%)
Mutual labels:  cli
Scaffdog
🐶 scaffdog is Markdown driven scaffolding tool.
Stars: ✭ 237 (-2.07%)
Mutual labels:  cli
Go Expect
an expect-like golang library to automate control of terminal or console based programs.
Stars: ✭ 236 (-2.48%)
Mutual labels:  cli
Extension Create
Create modern cross-browser extensions with no build configuration.
Stars: ✭ 167 (-30.99%)
Mutual labels:  cli
Figgo
👯‍♀️A cli tool makes your Figma and local design token stay in sync 👯‍♂️
Stars: ✭ 235 (-2.89%)
Mutual labels:  cli
Sucks
Simple command-line script for the Ecovacs series of robot vacuums
Stars: ✭ 237 (-2.07%)
Mutual labels:  cli
Ncpamixer
ncurses PulseAudio Mixer
Stars: ✭ 234 (-3.31%)
Mutual labels:  cli
Jackline
minimalistic secure XMPP client in OCaml
Stars: ✭ 236 (-2.48%)
Mutual labels:  cli
Semana Js Expert30
Aulas da Semana JS Expert 3.0 - Construindo um chat multiplataforma usando linha de comando e JavaScript Avançado
Stars: ✭ 238 (-1.65%)
Mutual labels:  cli
Imagecli
A command line image processing tool
Stars: ✭ 242 (+0%)
Mutual labels:  cli

trello-cli is a CLI tool for Trello. Makes sense, right?

Build Status

trello-cli requires a minimum NodeJS version of 8

Installation

You can install this tool by running npm install -g trello-cli.

If you're an Arch user, it's also available in the Arch User Repository

Using trello-cli

  • Run npm install in the same directory as package.json to install dependencies
  • Run ./bin/trello to generate basic config in your home directory.
  • Get an API key and put it in ~/.trello-cli/config.json
  • Run ./bin/trello refresh to refresh the list of Trello boards and lists.
  • Run ./bin/trello + follow the instructions

If you get stuck, you can always run ./bin/trello --help or ./bin/trello command --help

If you installed globally

Instead of running ./bin/trello just run trello.

Supported API commands

trello-cli currently supports the following commands:

add-board          Adds a new board with the specified name
add-card           Add a card to a board
add-list           Adds a new list to the spcified board with the specified name
add-webhook        Add a webhook to a board
archive-card       Archive a card from a board
assigned-to-me     Show cards that are currently assigned to yourself, or any member specified
card-assign        Add or remove a member to a card
card-details       Show details about a specified card
close-board        Closes those board(s) where the specified text occurs in their name
delete-card        Remove a card from a board
delete-webhook     Remove a webhook by ID
move-all-cards     Move all cards from one list to another
move-card          Move a card on a board
refresh            Refresh all your board/list names
show-boards        Show the list of cached boards
show-cards         Show the cards on a list
show-labels        Show labels defined on a board
show-lists         Show the list of cached lists
show-webhooks      display webhooks for current user applications

On Windows

Depending on how node.js is setup, you may not be able to run trello straight from the command line as shown above. To remedy that, add the following to your Powershell profile (type $profile at the Powershell prompt to find where your profile is stored):

function trello { & 'PATH_TO_NODE.EXE' 'PATH_TO_TRELLO_BIN' $args }

Replacing PATH_TO_NODE.EXE and PATH_TO_TRELLO_BIN with the values from your system.

You will then have the trello command available anywhere.

Examples

# Add card:
$ trello add-card -b "Inbox" -l "Inbox" "Quick card added from command line" -p bottom

# Move all cards:
$ trello move-all-cards -b "GTD" -l "Completed next actions" -c "GTD" -d "Completed next actions (Nov 2-8)"

FAQ

Archived lists aren't included when I run trello refresh By default archived lists are not returned by the API. Set the TRELLO_CLI_LIST_FILTER environment variable to all to include archived lists.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].