get_summary
Retrieve weekly productivity summaries by filename or date range from Slack, Google Calendar, and Gmail activity analysis.
Instructions
Retrieve a specific weekly summary by filename or date range.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | No | Filename of the summary to retrieve | |
| start_date | No | Start date to find summary (YYYY-MM-DD) | |
| end_date | No | End date to find summary (YYYY-MM-DD) | |
| format | No | Format to retrieve (default: both) | both |
| include_content | No | Include full content or just metadata (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date to find summary (YYYY-MM-DD)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"filename": {
"description": "Filename of the summary to retrieve",
"type": "string"
},
"format": {
"default": "both",
"description": "Format to retrieve (default: both)",
"enum": [
"html",
"markdown",
"both"
],
"type": "string"
},
"include_content": {
"default": true,
"description": "Include full content or just metadata (default: true)",
"type": "boolean"
},
"start_date": {
"description": "Start date to find summary (YYYY-MM-DD)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"type": "object"
}