matrix_daily_summary
Generate formatted daily summaries of Matrix entries by parsing timestamps, bug UIDs, and time spent for revenue tracking and business management.
Instructions
Generate formatted summary of Matrix entries for a specific date. Automatically parses timestamps, bug UIDs, time spent, and generates human-readable output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date in YYYY-MM-DD format (defaults to today) | |
format | No | Output format |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format (defaults to today)",
"type": "string"
},
"format": {
"description": "Output format",
"enum": [
"bullet",
"prose",
"slack"
],
"type": "string"
}
},
"type": "object"
}