ticktick_get_weekly_summary
Generate a detailed weekly productivity summary including tasks, habits, focus, achievements, and comparisons to previous weeks. Customize sections and tone for tailored insights.
Instructions
Generate comprehensive weekly productivity summary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
compare_previous | No | Compare with previous week | |
include_sections | No | Sections to include in summary | |
personalization | No | ||
week_offset | No | Weeks ago (0 = current week, 1 = last week) |
Input Schema (JSON Schema)
{
"properties": {
"compare_previous": {
"default": true,
"description": "Compare with previous week",
"type": "boolean"
},
"include_sections": {
"default": [
"tasks",
"habits",
"focus",
"achievements"
],
"description": "Sections to include in summary",
"items": {
"enum": [
"tasks",
"habits",
"focus",
"achievements",
"challenges",
"next_week"
],
"type": "string"
},
"type": "array"
},
"personalization": {
"properties": {
"focus_areas": {
"description": "Specific areas to emphasize",
"items": {
"type": "string"
},
"type": "array"
},
"tone": {
"default": "motivational",
"enum": [
"professional",
"casual",
"motivational",
"analytical"
],
"type": "string"
}
},
"type": "object"
},
"week_offset": {
"default": 0,
"description": "Weeks ago (0 = current week, 1 = last week)",
"type": "number"
}
},
"type": "object"
}