TUI for Todoist written with React+Ink.
0

Configure Feed

Select the types of activity you want to include in your feed.

Document inline task editing and Nix install

Aly Raffauf (Feb 11, 2026, 12:05 PM EST) b20894e2 6abf24a7

+9 -2
+9 -2
README.md
··· 10 10 11 11 ## Features 12 12 13 - - **Filter views** — browse tasks by Todoist filter queries like `today`, `overdue`, or custom filters 14 - - **Project views** — jump to any project by name 13 + - **Filter views** — browse tasks by Todoist filter queries like `today`, `overdue`, `#ProjectName`, or custom filters 14 + - **Task editing** — edit any task's title, description, due date, priority, and labels inline 15 15 - **Quick add** — add tasks using Todoist's quick add syntax (dates, labels, projects all work) 16 16 - **Smart hints** — command suggestions appear as you type 17 17 - **XDG config** — simple JSON config at `~/.config/dewy/config.json` ··· 20 20 21 21 ```bash 22 22 npm install --global dewy 23 + ``` 24 + 25 + Or with Nix: 26 + 27 + ```bash 28 + nix run github:alyraffauf/dewy 23 29 ``` 24 30 25 31 ## Quick Start ··· 56 62 |---------|-------------| 57 63 | `add <task>` | Add a task via quick add | 58 64 | `done <number>` | Complete a task by its number | 65 + | `edit <number>` | Edit a task's fields inline | 59 66 | `filter <query>` | View tasks matching a Todoist filter | 60 67 | `today` | View today's tasks | 61 68 | `home` | View the home filter |