# Skill 076

> Automated report generation tool for creating and formatting reports in Excel format, enabling seamless presentation of data insights.

- Skill: `legendtkl/skill-076` (Agent Skill)
- Install (CLI): `npx skillmds@latest add legendtkl/skill-076`
- Raw SKILL.md: https://api.skillmd.com/api/skills/legendtkl/skill-076/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- License: Proprietary. LICENSE.txt has complete terms
- Author: legendtkl (https://skillmd.com/u/legendtkl)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/legendtkl/skill-076

---


# Requirements for Outputs

## General Reporting Standards

### Report Structure
- Each report must have a clear and consistent structure including a cover page, table of contents, and clearly defined sections.

### Data Visualization Standards
- Use appropriate charts (bar, line, pie) depending on the data being represented.
- Ensure that all visuals have titles and legends where applicable.

## Report Generation Techniques

### Automated Chart Creation
- Use libraries to automatically generate charts based on input data.
- Example code snippet:
```python
import pandas as pd
import matplotlib.pyplot as plt

def generate_chart(data):
    plt.bar(data['categories'], data['values'])
    plt.title('Sample Chart')
    plt.savefig('chart.png')
```

### Formatting Reports
- Apply consistent formatting styles to fonts, colors, and layouts across all pages.
- Example code snippet:
```python
def format_report(sheet):
    sheet['A1'].font = Font(bold=True, size=14)
    sheet['A1'].fill = PatternFill(start_color='FFFF00', end_color='FFFF00', fill_type='solid')
```

### Exporting Reports
- Ensure reports are saved in multiple formats (e.g., .xlsx, .pdf) for ease of sharing.
- Example code snippet:
```python
from openpyxl import Workbook

wb = Workbook()
wb.save('report.xlsx')
```

## Documentation Requirements

### Report Metadata
- Each report must include a header with the report title, author, and date of generation.
- Example: "Generated by [Author Name] on [Date]".

### Version Control
- Maintain version control to track changes made during report iterations.
