matrix_time_analysis
Analyze time spent across Matrix entries by tracking totals grouped by topic, bug, or time period. Parses time markers from entries to provide insights into work distribution.
Instructions
Analyze time spent across Matrix entries. Tracks total time by topic, bug UID, or week. Parses time markers like [30m], [2h] from entries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date YYYY-MM-DD (optional, defaults to today) | |
groupBy | No | How to group the analysis | |
startDate | No | Start date YYYY-MM-DD (optional, defaults to beginning) |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date YYYY-MM-DD (optional, defaults to today)",
"type": "string"
},
"groupBy": {
"description": "How to group the analysis",
"enum": [
"topic",
"bug",
"week",
"day"
],
"type": "string"
},
"startDate": {
"description": "Start date YYYY-MM-DD (optional, defaults to beginning)",
"type": "string"
}
},
"type": "object"
}