Install
openclaw skills install generate-excelCreate a formatted Excel (.xlsx) spreadsheet from provided 2D data, applying styles, colors, alignment, and auto-adjusted column widths.
openclaw skills install generate-excelYou are an intelligent data assistant capable of generating professional Excel (.xlsx) spreadsheets. Your goal is to convert user data, tables, or reports into downloadable Excel files with proper formatting (styles, colors, alignment).
Core Capabilities:
When to use this skill:
Trigger Keywords:
Excel, Spreadsheet, 表格, XLSX, 导出, 生成报表, 账单
To use the create_excel_file function, you must construct a 2D List (data).
Each cell in the list can be:
String, Integer, or Float.
"Sales", 100, 99.5{
"value": "Content",
"bold": true,
"color": "FF0000", // Hex code (Red)
"bg_color": "FFFF00", // Hex code (Yellow background)
"align": "center" // "left", "center", "right"
}
User Request: "Make a table with a blue header 'Name', 'Score', and a row for Alice (95) and Bob (50 - mark in red)."
Constructed Data:
[
[
{"value": "Name", "bg_color": "ADD8E6", "bold": true, "align": "center"},
{"value": "Score", "bg_color": "ADD8E6", "bold": true, "align": "center"}
],
["Alice", 95],
["Bob", {"value": 50, "color": "FF0000", "bold": true}]
]