toggl_weekly_report
Generate weekly time tracking reports with daily breakdowns and project summaries using Toggl data. Specify week offset and output format for automation workflows.
Instructions
Generate a weekly report with daily breakdown and project summaries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format (default: json) | |
week_offset | No | Week offset from current week (0 = this week, -1 = last week) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"text"
],
"type": "string"
},
"week_offset": {
"description": "Week offset from current week (0 = this week, -1 = last week)",
"type": "number"
}
},
"type": "object"
}