/install image-to-excel
Image to Excel
Extract tables from images and generate .xlsx files.
Use Cases
Use when users upload images containing tables and request "convert to table", "extract table", or "generate Excel".
Workflow
1. Analyze Image
Use the image tool to load the user-uploaded image, with a prompt requesting row-by-row, column-by-column table data extraction:
Extract all table data from the image row by row and column by column, returning it as a JSON array.
Format: [[row1col1, row1col2, ...], [row2col1, row2col2, ...], ...]
Notes:
- The first row may be a header; keep it as-is
- Split merged cells into individual cells and fill with the same value
- Preserve original formatting for amounts and numbers
- Use empty string "" for missing cells
2. Data Validation & Correction
After receiving the JSON data from the image model, check and correct:
- Row/column count consistency (fill in missing cells)
- Number format correctness (remove extra spaces, unify decimal points)
- Chinese character recognition accuracy (fix obvious typos)
- Header completeness (infer missing headers from content)
Store the corrected data in the variable rows.
3. Write to Excel
Call the generation script with the corrected data:
python3 scripts/gen_excel.py \x3Coutput_path> '\x3Cjson_data>'
output_path: Output path, e.g.,/root/.openclaw/workspace/table_extracted.xlsxjson_data: Corrected 2D array as a JSON string
4. Output Results
Inform the user of the file save location and display a preview of the first 5 rows for confirmation.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install image-to-excel - 安装完成后,直接呼叫该 Skill 的名称或使用
/image-to-excel触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Image To Excel 是什么?
Extract table content from images, retrieve row/column data, correct recognition errors, and generate a well-formatted Excel file. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 46 次。
如何安装 Image To Excel?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install image-to-excel」即可一键安装,无需额外配置。
Image To Excel 是免费的吗?
是的,Image To Excel 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Image To Excel 支持哪些平台?
Image To Excel 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Image To Excel?
由 OpenLark(@openlark)开发并维护,当前版本 v1.0.0。