TUI for Todoist written with React+Ink.
0

Configure Feed

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

add support for arbitrary filters

Aly Raffauf (Feb 11, 2026, 10:11 AM EST) a60fd026 ad7bd8fd

+9
+1
README.md
··· 55 55 | `add <task>` | Add a task via quick add | 56 56 | `done <number>` | Complete a task by its number | 57 57 | `project <name>` | View tasks in a project | 58 + | `filter <query>` | View tasks matching a Todoist filter | 58 59 | `today` | View today's tasks | 59 60 | `home` | View the home filter | 60 61 | `refresh` | Reload tasks |
+8
source/commands.ts
··· 48 48 }, 49 49 }, 50 50 { 51 + prefix: 'filter ', 52 + hint: 'filter <query>', 53 + run: async (args, {setMessage, setView}) => { 54 + setView({type: 'filter', query: args}); 55 + setMessage('⊳ filtered'); 56 + }, 57 + }, 58 + { 51 59 prefix: 'refresh', 52 60 hint: 'refresh', 53 61 run: async (_args, {refresh, setMessage}) => {