Tod

Build Status codecov Crates.io

A tiny todoist CLI program. Takes simple input and dumps it in your inbox or another project. Takes advantage of natural language processing to assign due dates, tags, etc.

Tod

Will ask for your Todoist API token on the first run, and your data in JSON format in $XDG_CONFIG_HOME/tod.cfg. This defaults to:

Install from Crates.io

Install Rust

```bash

Linux and MacOS

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ```

Install Tod

bash cargo install tod

Install from AUR

```bash

Use yay or another AUR helper

yay tod-bin ```

Install from GitHub

Install Rust

Clone the project

bash git clone git@github.com:alanvardy/tod.git cd tod ./test.sh # run the tests cargo build --release

You can then find the binary in /target/release/

Usage

Start with the help flag to get the latest commands

```bash

tod -h

A tiny unofficial Todoist client

Usage: tod [OPTIONS]

Options: -t, --task ... Create a new task with text. Can specify project option, defaults to inbox. -p, --project The project namespace, for filtering other commands, use by itself to list all tasks for the project -n, --next Get the next task by priority. Requires project option. -x, --nextinteractive Fetches tasks one at a time by priority, and completes with an interactive prompt. Requires project option. -c, --complete Complete the last task fetched with next -l, --list List all projects in the local config. -a, --add Add a project to config with id -r, --remove Remove a project from config by name -s, --sort Sort inbox by moving tasks into projects -z, --prioritize Assign priorities to tasks. Can specify project option, defaults to inbox. -d, --date tasks Assign dates to tasks without dates or overdue. Can specify project option, defaults to inbox. -e, --scheduled Returns items that are today and have a time. Can specify project option, defaults to inbox. -o, --config Absolute path of configuration. Defaults to $XDGCONFIGHOME/tod.cfg -h, --help Print help -V, --version Print version ```

Examples

```bash

Create a new task in inbox using natural language processing

tod -t Buy milk from the grocery store tomorrow p1

Create a task in a project

tod -p myproject -t write more rust \ with a description

Get the next task for a project

tod -np myproject

Go through tasks with an interactive prompt, completing them in order of importance one at a time.

tod -xp myproject

Complete the last "next task" and get another

tod -c && tod -np myproject

Get your work schedule

tod -ep work

Get all tasks for work

tod -p work ```

Disabling spinners

Find the line in your tod.cfg that reads "spinners": null and change the value to false.

Why I made this

I am a developer who uses Todoist to reduce stress and cognitive overhead, by delegating things that a machine does well to a machine. This CLI application scratches some very specific itches for me, and I hope that it may be of use to others as well!

Some points around my general strategy:

Related projects