excel-handler
excel-handler streamlines the process of reading Excel files and converting their contents into alternative formats for downstream use. Whether you need to parse spreadsheet data, extract specific ranges, or transform tabular information into JSON, CSV, or other structures, this skill handles the conversion workflow efficiently.
excel-handler enables you to read Excel files and extract their data efficiently. The skill supports reading both .xlsx and .xls formats, allowing you to access spreadsheet contents programmatically. Once read, you can process the data further or convert it into other formats for use in your applications.
AI-generated summary based on this skill's SKILL.md
Install
AIDotNet/MoYuCode/excel-handler · repository language: TypeScript
git clone https://github.com/AIDotNet/MoYuCode
cp -r MoYuCode/skills/tools/excel-handler ~/.claude/skills/excel-handlerFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How to read excel files with excel-handler?
excel-handler enables you to read Excel files and extract their data efficiently. The skill supports reading both .xlsx and .xls formats, allowing you to access spreadsheet contents programmatically. Once read, you can process the data further or convert it into other formats for use in your applications.
Can excel-handler convert xlsx to csv?
Yes, excel-handler supports conversion between Excel and other data formats including CSV. You can read an .xlsx file and export its contents as CSV, making it easy to transform your spreadsheet data into comma-separated values for use in other tools or systems.
How does excel-handler create spreadsheets from JSON data?
excel-handler streamlines the process of generating Excel spreadsheets programmatically from JSON data. You can structure your JSON data and use excel-handler to automatically create .xlsx files with properly formatted cells and sheets, eliminating manual spreadsheet creation.
What formats can excel-handler convert spreadsheets into?
excel-handler handles conversion between Excel and multiple alternative formats for downstream use. The skill supports transforming spreadsheet data into JSON, CSV, and other structures, giving you flexibility in how you work with tabular information across different systems and applications.
Can excel-handler merge multiple Excel files together?
excel-handler supports merging and combining multiple Excel files into a single spreadsheet. This capability allows you to consolidate data from several sources, making it useful for aggregating reports or combining related datasets from different .xlsx or .xls files.
Does excel-handler automate batch spreadsheet operations?
Yes, excel-handler enables automation of batch spreadsheet operations and transformations. You can process multiple Excel files at once, applying consistent conversions or data extractions across your entire dataset, which streamlines repetitive spreadsheet workflows and saves time on manual operations.
SKILL.md
rendered from the published skill — quoted content, verbatim
Excel Handler Tool
Description
Read, write, and manipulate Excel spreadsheets with support for formulas, styling, and data export.
Trigger
/excelcommand- User requests Excel file operations
- User needs to read or create spreadsheets
Usage
# Read Excel to JSON
python scripts/excel_handler.py read --input data.xlsx --output data.json
# Create Excel from JSON/CSV
python scripts/excel_handler.py create --input data.json --output report.xlsx
# Convert Excel to CSV
python scripts/excel_handler.py convert --input data.xlsx --output data.csv
# Merge multiple Excel files
python scripts/excel_handler.py merge --inputs file1.xlsx,file2.xlsx --output merged.xlsx
Tags
excel, spreadsheet, xlsx, csv, data
Compatibility
- Codex: ✅
- Claude Code: ✅
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
skills/tools/excel-handler/SKILL.md
skills/tools/excel-handler/scripts/excel_handler.py