list_summaries
Retrieve previously generated weekly summaries from your productivity data, with options to filter by format, sort order, and limit results.
Instructions
List previously generated weekly summaries from the summaries directory.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of summaries to return (default: 10) | |
| sort | No | Sort order (default: newest) | newest |
| format | No | Filter by format (default: all) | all |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "all",
"description": "Filter by format (default: all)",
"enum": [
"all",
"html",
"markdown"
],
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of summaries to return (default: 10)",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"sort": {
"default": "newest",
"description": "Sort order (default: newest)",
"enum": [
"newest",
"oldest"
],
"type": "string"
}
},
"type": "object"
}