csv-to-excel
SKILL.md
CSV To Excel Converter
Overview
This skill enables conversion of CSV files to Excel format with professional formatting, proper encoding handling for Chinese characters, and support for combining multiple CSV files into a single Excel workbook with separate sheets.
Quick Start
Use the csv_to_excel.py script for all conversions:
# Single CSV to Excel
python scripts/csv_to_excel.py input.csv output.xlsx
# Multiple CSVs to one Excel (each becomes a sheet)
python scripts/csv_to_excel.py file1.csv file2.csv file3.csv --output combined.xlsx
# With custom sheet names
python scripts/csv_to_excel.py sales.csv inventory.csv --output report.xlsx --sheet-names "销售数据" "库存数据"