mnemosyne_todo_list
Reads your to-do lists and open tasks with their IDs, so you can see what's on your plate, check for duplicates, or prepare the exact ID needed for an update.
Instructions
Read the human's To-do backlog back: the lists that exist and the tasks in them, each with the ID you must use to change it. Call this BEFORE mnemosyne_todo_update - that tool names tasks by id and never by text, because "delete the task about the invoice" is how the wrong task goes, in a sentence that reads perfectly either way. Also the way to answer "what is on my plate" or to check whether something is already filed before adding a duplicate. Works with the app closed on a dev install (the headless daemon reads the file); an npm install has no daemon and needs the app running. Scope todo:read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| list | No | Only this list, by displayed name (case-insensitive) or by the key shown in brackets. Omitted = every list. A name that matches nothing returns NO tasks rather than silently widening to all of them. | |
| limit | No | Maximum tasks returned (default and ceiling: 300). The answer always says how many matched and how many were cut. | |
| include_done | No | Include tasks already checked off. Default false: the open ones are what almost every question is actually about. Tasks moved to the ARCHIVE are never listed, only counted. |