todo_archive
Archive todos to hide them from list views while keeping them accessible by ID. Use archived=false to restore, with safety check preventing archiving blockers of incomplete tasks.
Instructions
Archive a todo (or unarchive with archived=false), mirroring pad_archive. Archived todos are excluded from todo_list by default; todo_get always reaches them by id. Refuses when this todo still blocks another todo that is not completed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| todo_id | Yes | ||
| archived | No | Default true. Pass false to unarchive. | |
| project_id | No | Different project override. Use ONLY when the user explicitly asks for another project by name; otherwise stay in the current scope, even when results are empty. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| todo_id | Yes | ||
| archived | Yes | ||
| project_id | Yes |