Trello HUb is a command line tool to move Trello cards on a Kanban process. The available states for now are "Next Up", "In Progress", "Code Review" and "Live". I hope to refactor in order to make this configurable, for now you'll be asked to choose the lists corresponding of each state from a board of your choice.
The purpose of this tool is to be integrated with git management scripts. For instance, when you open a pull-request you can automatically move the corresponding Trello card to "Code Review". I'll have an example soon.
To install Trello Hub run
npm install -g trello-hub
Now you can use the command th
.
You can move a card to different states. If you don't provide the id of the card you want to move you'll be asked based on a print of all available cards for the corresponding list.
Notice that the card moved is returned by the process.
th -i
th -to inprogress
th -to inprogress -c card_id
th -to codereview
th -to codereview -c card_id
th -to live
th -to live -c card_id
th -h