A tiny todoist CLI program. Takes simple input and dumps it in your inbox or another project. Tasks sent to the inbox can take advantage of natural language processing to assign due dates, tags etc.
Will ask for your Todoist API token on first run, and your data in json format in ~/.tod.cfg
.
Install Rust ```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ```
Install Tod
bash
cargo install tod
```bash
yay tod-bin ```
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/
Start with the help flag to get the latest commands
```
tod -h
Tod 0.2.11 Alan Vardy alan@vardy.cc A tiny unofficial Todoist client
USAGE: tod [OPTIONS]
OPTIONS:
-a, --add
-c, --complete
Complete the last task fetched with next
-e, --scheduled
Returns items that are today and have a time. Can specify project option, defaults to
inbox.
-h, --help
Print help information
-l, --list
List all the projects in local config
-n, --next
Get the next task by priority. Requires project option.
-o, --config <CONFIGURATION PATH>
Absolute path of configuration. Defaults to ~/.tod.cfg.
-p, --project <PROJECT NAME>
The project namespace, for filtering other commands, use by itself to list all tasks for the project
-r, --remove <PROJECT NAME>
Remove a project from config by name
-s, --sort
Sort inbox by moving tasks into projects
-t, --task <new task>...
Create a new task with text. Can specify project option, defaults to inbox.
-V, --version
Print version information
-z, --prioritize
Assign priorities to tasks. Can specify project option, defaults to inbox.
```
~/.tod.cfg
```bash
tod -t Buy milk from the grocery store tomorrow p1
tod -p myproject -t write more rust \ with a description
tod -np myproject
tod -c && tod -np myproject
tod -ep work
tod -p work ```
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:
--next
)--task
)--prioritize
and --sort
)