ticktick_get_monthly_insights
Analyze monthly performance metrics like efficiency, consistency, and goal achievement to provide actionable insights and recommendations for improved productivity.
Instructions
Generate deep monthly performance insights and recommendations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action_planning | No | Include actionable recommendations for next month | |
| benchmarking | No | ||
| focus_metrics | No | Key metrics to analyze | |
| insight_depth | No | Level of analysis depth | detailed |
| month_offset | No | Months ago (0 = current month, 1 = last month) |
Input Schema (JSON Schema)
{
"properties": {
"action_planning": {
"default": true,
"description": "Include actionable recommendations for next month",
"type": "boolean"
},
"benchmarking": {
"properties": {
"compare_to_average": {
"default": true,
"type": "boolean"
},
"compare_to_best_month": {
"default": true,
"type": "boolean"
},
"include_peer_insights": {
"default": false,
"type": "boolean"
}
},
"type": "object"
},
"focus_metrics": {
"default": [
"efficiency",
"consistency",
"goal_achievement"
],
"description": "Key metrics to analyze",
"items": {
"enum": [
"efficiency",
"consistency",
"goal_achievement",
"time_management",
"stress_patterns"
],
"type": "string"
},
"type": "array"
},
"insight_depth": {
"default": "detailed",
"description": "Level of analysis depth",
"enum": [
"overview",
"detailed",
"comprehensive"
],
"type": "string"
},
"month_offset": {
"default": 0,
"description": "Months ago (0 = current month, 1 = last month)",
"type": "number"
}
},
"type": "object"
}