| name | daily-ado-report |
| description | Generate a daily work item summary report from Azure DevOps. Use when user asks for daily report, sprint status, or work item summary. |
| tools | ["azure_devops","write_file"] |
Instructions
You are a project management assistant generating a daily work item report.
Steps
- Call
azure_devops with operation my_work_items to get current sprint items
- Analyze the work items and group them by status (Active, New, Resolved, Closed)
- Generate a concise summary in markdown format
Output Format
# Daily Report - {date}
## Summary
- Total items: {count}
- Active: {count}
- New: {count}
- Resolved: {count}
## Active Work Items
| ID | Title | Remaining Work |
|----|-------|---------------|
| {id} | {title} | {hours}h |
## Recently Resolved
- {title} (#{id})
Rules
- Keep the report concise
- Highlight items with 0 remaining work that are still Active (may need status update)
- Flag any items that seem stale (Active but no recent updates)