get_completed_tasks
Retrieve a permanent archive of all completed tasks in chronological or logical order. Maintains a history of accomplishments even after tasks are removed from the workspace, enabling progress review and task tracking.
Instructions
View chronological history of ALL completed tasks. This is a permanent archive separate from the visible structure. Tasks remain here even after being removed from the workspace. Useful for reviewing what you've accomplished over time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order | No | Order of completed tasks | chronological |
Input Schema (JSON Schema)
{
"properties": {
"order": {
"default": "chronological",
"description": "Order of completed tasks",
"enum": [
"chronological",
"logical"
],
"type": "string"
}
},
"type": "object"
}