All Projects → tomhodgins → cheq

tomhodgins / cheq

Licence: MIT license
A command-line checklist app

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cheq

Streak-Tasks
Streak Tasks Habit Tracker
Stars: ✭ 27 (+58.82%)
Mutual labels:  checklist, task, todo
Dstask
Single binary terminal-based TODO manager with git-based sync + markdown notes per task
Stars: ✭ 431 (+2435.29%)
Mutual labels:  task, todo, gtd
Taskwarrior
Taskwarrior - Command line Task Management
Stars: ✭ 2,239 (+13070.59%)
Mutual labels:  task, todo, gtd
Task
Terminal tasks todo with reminder tool for geek
Stars: ✭ 73 (+329.41%)
Mutual labels:  task, todo
lazylead
Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows automating (without admin access) daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar.
Stars: ✭ 42 (+147.06%)
Mutual labels:  trello, task
Taskbook
Tasks, boards & notes for the command-line habitat
Stars: ✭ 8,326 (+48876.47%)
Mutual labels:  task, todo
Deer
Minimalist Flutter Todo App, built using BLoC pattern
Stars: ✭ 268 (+1476.47%)
Mutual labels:  task, todo
Tasklite
The CLI task manager for power users
Stars: ✭ 91 (+435.29%)
Mutual labels:  task, todo
Taskline
Tasks, boards & notes for the command-line habitat
Stars: ✭ 78 (+358.82%)
Mutual labels:  task, todo
Mejili
A Trello clone based on PHP using Laravel 4.2, knockout and twitter bootstrap
Stars: ✭ 17 (+0%)
Mutual labels:  trello, todo
noteboard
📓 Manage your notes & tasks in a tidy and fancy way. A taskbook clone written in Python.
Stars: ✭ 12 (-29.41%)
Mutual labels:  task, todo
Vscode Todo Plus
Manage todo lists with ease. Powerful, easy to use and customizable.
Stars: ✭ 622 (+3558.82%)
Mutual labels:  task, todo
Topydo
A powerful todo list application for the console, using the todo.txt format.
Stars: ✭ 511 (+2905.88%)
Mutual labels:  task, todo
react-native-dnd-board
A drag and drop Kanban board for React Native.
Stars: ✭ 41 (+141.18%)
Mutual labels:  trello, task
elm-simple-gtd
Reimagination of SimpleGTD.com using Elm and Polymer.
Stars: ✭ 24 (+41.18%)
Mutual labels:  todo, gtd
maker
Maker is a advanced mobile ToDo app for Android and iOS
Stars: ✭ 35 (+105.88%)
Mutual labels:  task, todo
Tracks
Tracks is a GTD™ web application, built with Ruby on Rails
Stars: ✭ 991 (+5729.41%)
Mutual labels:  todo, gtd
Yokadi
Command line oriented, sqlite powered, todo list
Stars: ✭ 119 (+600%)
Mutual labels:  todo, gtd
Todokit
TodoKit - A beautiful bug and issue tracking software.
Stars: ✭ 253 (+1388.24%)
Mutual labels:  task, todo
taskw-dart
Taskwarrior-inspired mobile todo app
Stars: ✭ 58 (+241.18%)
Mutual labels:  task, todo

cheq

A command-line checklist app

walkthrough of cheq

About

This is a command-line checklist with a simple text-based UI for adding, listing, removing, tagging, checking and renaming checklist items.

Installation

This software is available as a Node module from npm, as well as pre-built binaries for windows, mac, and linux available on Github in the releases tab.

To install cheq globally with npm, enter this into your shell:

$ npm install -g cheq

Functions

list

cheq list <keyword>

// example
cheq list
cheq list all
cheq list tagged work
cheq list tagged work project1
cheq list checked
cheq list unchecked

The list function displays all of your checklist items by default. You can use the special keyword all to display a list of all checklist items, tagged <terms> to list only those checklist items that are tagged with one or more space separated tags, or checked or unchecked to display checklist items with a matching status.

tag

cheq tag <id> <keyword>

// example
cheq tag 33n grocery

When using the tag function you supply the checklist item's ID along with the desired tag. Adding the same tag to a checklist item twice will remove that tag.

add

cheq add <title>

// example
cheq add New Checklist Item

You can use the add function, followed by text to create a new checklist item of the same text. Don't worry, you can change this text for any existing item using the rename function.

remove

cheq remove <keyword>
cheq remove <id>

// example
cheq remove all
cheq remove tagged work
cheq remove tagged work project1
cheq remove checked
cheq remove unchecked
cheq remove a3

Using the remove function we can remove individual checklist items by their ID, or sets of items matching keywords all, tagged with one or more tags supplied, checked or unchecked. This action is irreversible.

check

cheq check <id>

// example
cheq check 4g

The check function changes the status of a checklist item so it shows as checked in the list. This function only accepts individual IDs.

uncheck

cheq uncheck <id>

// example
cheq uncheck 5e

The uncheck function changes the status of a checklist item so it shows as unchecked in the list. This function only accepts individual IDs.

rename

cheq rename <id> <title>

//example
cheq rename 15 New Title

The rename function takes the ID of an existing checklist item and replaces the current title with a new title.

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].