taskGenerateReport
Generate task progress reports in Markdown format with date range filtering. Define start and end dates in YYYY-MM-DD format to create customized reports efficiently.
Instructions
生成任務進度Markdown報告,可選擇日期篩選範圍
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | No | 結束日期範圍 (YYYY-MM-DD 格式) | |
| outputPath | No | ||
| startDate | No | 起始日期範圍 (YYYY-MM-DD 格式) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "結束日期範圍 (YYYY-MM-DD 格式)",
"type": "string"
},
"outputPath": {
"type": "string"
},
"startDate": {
"description": "起始日期範圍 (YYYY-MM-DD 格式)",
"type": "string"
}
},
"type": "object"
}