A CLI application for managing tasks for your project while coding them. It is specifically designed for programmers, but anyone can use it ofcourse.
checks
can easily be installed using pip
package manager. (make sure python and pip are installed in your machine)
>> pip install checks-cli
To all non-programmers, you have to install Python to use this application. (well, atleast for now!)
Run checks
command in the terminal in your project directory (or anywhere)
This will run the checks interactive session, similar to the Python Interactive Shell.
Now you can run commands provided by checks
. Run help
or h
to see available commands.
Seems a bit messy but it's really not. There are three columns in there. one for full command, one for alias or a shorter version, one for command description.
Tasks can be added into list using add
or a
(if you prefer less keystrokes).
When run for the first time, it adds a tasks.json
in current directory and stores the task in it. After that, whenever you run checks
in that directory and if that tasks.json
is still there, it automatically loads that file and continues from there.
You can also add multiple tasks in one go.
Now that we've added some tasks in our database, let's take a look at them using list
or ls
command.
ls
alone, shows all tasks and their details. for a more minimal table, use the flag -m
or --minimal
followed by ls
.
Minimal version just shows the task
and it's ID
. This is particularly useful in situations where you task spans multiple lines.
Apart from -m
flag, ls
has two more commands. -c
or --completed
(which lists only completed tasks) and -p
or --pending
(which lists only pending tasks).
You can check a task (mark it as complete) using check
or c
command followed by Task ID
.
You can check multiple tasks at once.
You can also use -a
or --all
flag which checks all pending tasks and shows how many tasks were checked.
Let's list
the tasks now.
You can use uncheck
or uc
command to uncheck a task (mark it as incomplete/pending).
Or uncheck multiple tasks.
Or uncheck all tasks.
Listing all tasks now.
You can remove tasks using remove
or rm
command.
Or remove multiple tasks.
Or remove all tasks at once using -a
or --all
flag, following rm
.
Use search
or s
command to search for tasks using a query/keyword. (I've added some task in database)
Let's search
for a tasks that contain the word feature.
By now your terminal must have been looking really messy with all the commands and outputs and the TEXT!! Well, you can clear the terminal using clear
or cls
command.
@checks/> clear
This will clear entire terminal session. Very handy!
Although checks
saves your tasks after each successfull command execution, you can save the database manually just to be on the safe side. Use save
or sv
to save/write every task from in-memory database to tasks.json
.
@checks/> save
█ Info: Database saved.
Finally, Use quit
or q
command to quit the checks
session.
@checks/> quit
Or just hit CTRL+C
to force quit the session.
That's it. Now you know more checks
than me, have fun coding!