---
name: dst-report-template
description: |
Generate HTML research reports with embedded data, charts, and analysis.
Use when creating final research deliverables. Supports single comprehensive
reports or multiple focused reports. Handles styling, structure, and output
to reports/ directory.
---
# DST Report Generator
Create professional HTML reports from DST research analysis.
## Report Types
1. **Single Comprehensive Report** - All findings in one document
2. **Multiple Focused Reports** - Separate files per analysis area
The dst-research-analyst agent decides which type based on scope.
## HTML Report Template
```html
{{REPORT_TITLE}}
{{REPORT_TITLE}}
Generated: {{TIMESTAMP}}Data Source: Danmarks StatistikTables Used: {{TABLE_COUNT}}
```
## Best Practices
- Use descriptive section titles
- Include both data tables and visualizations
- Highlight key insights in insight boxes
- Cite all DST tables used
- Add timestamps for data freshness
- Use consistent terminology
- Make reports print-friendly
- Include executive summary for quick overview
## Error Handling
If reports/ directory doesn't exist:
```python
import os
os.makedirs('/Users/mikkelfreltoftkrogsholm/Projekter/dst_skills/reports', exist_ok=True)
```
Remember: You create the HTML structure, dst-visualization provides the chart HTML, agent provides the analysis text.