An unofficial Todoist API CLI client written in Rust.
This is an unofficial Todoist CLI that focuses on being easy to use. It is currently not feature complete, but covers some basic common use-cases and adds more as we go along.
Currently it's installed only via cargo install from source:
bash
cargo install doist
More options coming eventually.
First, set up your API token. Go into your Todoist settings,
go to Integrations
and copy out the API token
. Plug it into the tool:
bash
doist auth MY_TOKEN
Now you're authenticated and can use the other functions of the tool.
Listing tasks and then working with them interactively is the recommended way to work with the CLI.
By default the list view shows todays tasks and lets you work with them:
```bash doist list
doist l
```
This will allow you to type parts of the output until you select the task you want to work with (fuzzy search). Selecting will allow you to select various other subcommands, like closing, changing due dates or even editing tasks.
You can also disable interactive mode to pipe use the output somewhere else:
```bash doist list --nointeractive
doist l -n
```
By default all interactive commands have a filter applied to show the most relevant tasks. See the documentation to see what inputs are accepted. To then use the filter, add it to the command parameters:
```bash doist list --filter "all"
doist l -f all
```
A quick way to add a task is:
```bash doist add "Do the laundry" --desc "I always forget" --due "tomorrow"
doist a "Do the laundry" -D "I always forget" -d tomorrow
```
Only the task name is required, everything else will assume a default of nothing.
It's also possible to provide the task with a priority:
```bash doist add "Party hard" --priority 1
doist a "Party hard" -p1
```
There are several other things you can do to add richer information to a task. All inputs can be partially provided and will fuzzy match to the closest name you probably had in mind:
```bash
doist add "Party hard" --project "personal"
doist a "Party hard" -P personal
```
```bash
doist add "Party hard" --section "weekend"
doist a "Party hard" -S weekend
doist add "Party hard" --project personal --section weekend
doist a "Party hard" -P personal -S weekend
```
```bash
doist add "Party hard" --label dance --label happy
doist a "Party hard" -L dance -L happy
```
Instead of providing names to be matched, you can also directly provide their API IDs if you use this tool for automated tooling.
A quick way to close one of todays tasks is:
```bash doist close
doist c
```
And then fuzzy finding the task you want to close. Submitting the ID directly also works if you're more comfortable with that:
```bash doist close "BIGIDFROM_API"
doist c BIG_ID_FROM_API
```
To view details of tasks and the comments asssociated with a task:
```bash doist view
doist v
```
This accepts the same parameters as doist list
for task selection.
Feel free to browse the help output for more help:
bash
doist help