Metadata-Version: 2.1
Name: kadoo
Version: 0.1.2
Summary: The priorities management CLI you never knew you needed
Home-page: https://github.com/TechWiz-3/kadoo-cli
Author: Zac the Wise aka TechWiz-3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: rich
Requires-Dist: toml

# Kadoo

![Example](https://github.com/TechWiz-3/kadoo-cli/blob/main/media/example1.png?raw=true)

> The priorities management CLI you never knew you needed

Kadoo organises your priorities using the Eisenhower Decision Matrix.  

## Installation
**Coming really soon**
```sh
pip install kadoo
```

## Usage

```sh
# get started by creating your first matrix board
$ kadoo

# to perform actions on your new table, use it's name
$ kadoo <table_name>

# add an item to quadrant 1
$ kadoo <table_name> -a "My first item" -q 1

# create a new table: kadoo -ct <TABLE_NAME> <TABLE_DESCRIPTION>
$ kadoo -ct dev "My developer tasks"

# add an item to quadrant 1
$ kadoo dev -a "Work on a new project" -q 1

# add an item to quadrant 2
$ kadoo dev -a "Star this repo xDD" -q 2

# mark a task as done: kadoo <TABLE_NAME> -d "<TASK_NAME>" -q <QUADRANT>
$ kadoo dev -a "Work on a new project" -q 1
```

## About 
The matrix sorts tasks based on urgency and importance.  

<img src="https://luxafor.com/wp-content/uploads/2022/06/The-Eisenhower-Decision-Matrix-png-1024x768.png" alt="Eisenhower Matrix" width="400">
