get_logbook
Retrieve completed todos from the Logbook within a specified time period. Customize the lookback range and limit the number of entries for efficient task tracking and review.
Instructions
Get completed todos from Logbook, defaults to last 7 days
Args: period: Time period to look back (e.g., '3d', '1w', '2m', '1y'). Defaults to '7d' limit: Maximum number of entries to return. Defaults to 50
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
period | No | 7d |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"period": {
"default": "7d",
"title": "Period",
"type": "string"
}
},
"type": "object"
}