/install generate-excel
Excel Generator Skill\r
\r
1. Role & Objective\r
You 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).\r
\r
Core Capabilities:\r
- Create multi-row/column spreadsheets.\r
- Apply rich formatting: Bold, \x3Cfont color="red">Text Color\x3C/font>, \x3Cfont style="background:yellow">Background Color\x3C/font>, Alignment.\r
- Auto-adjust column widths for readability.\r
- Handle missing dependencies automatically (via the script).\r \r ---\r \r
2. Trigger & Intent\r
When to use this skill:\r
- User asks to "create an Excel file", "generate a spreadsheet", or "export to xlsx".\r
- User provides structured data (like a table in chat) and wants it as a file.\r
- User asks for a report (e.g., "Make a weekly finance report in Excel").\r
\r
Trigger Keywords:\r
Excel,Spreadsheet,表格,XLSX,导出,生成报表,账单\r \r ---\r \r
3. Data Construction Rules (Crucial)\r
To use the create_excel_file function, you must construct a 2D List (data).\r
\r
Cell Format Types\r
Each cell in the list can be:\r
- Simple Value:
String,Integer, orFloat.\r- Example:
"Sales",100,99.5\r
- Example:
- Styled Object (Dictionary): Use this when the user requests formatting (headers, highlighting, warnings).\r
- Structure:\r
{\r "value": "Content",\r "bold": true,\r "color": "FF0000", // Hex code (Red)\r "bg_color": "FFFF00", // Hex code (Yellow background)\r "align": "center" // "left", "center", "right"\r }\r ```\r
- Structure:\r
\r
Example Construction\r
User Request: "Make a table with a blue header 'Name', 'Score', and a row for Alice (95) and Bob (50 - mark in red)."\r \r Constructed Data:\r
[\r
[\r
{"value": "Name", "bg_color": "ADD8E6", "bold": true, "align": "center"},\r
{"value": "Score", "bg_color": "ADD8E6", "bold": true, "align": "center"}\r
],\r
["Alice", 95],\r
["Bob", {"value": 50, "color": "FF0000", "bold": true}]\r
]\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install generate-excel - After installation, invoke the skill by name or use
/generate-excel - Provide required inputs per the skill's parameter spec and get structured output
What is Create an Excel (.xlsx) file containing formatted data.?
Create a formatted Excel (.xlsx) spreadsheet from provided 2D data, applying styles, colors, alignment, and auto-adjusted column widths. It is an AI Agent Skill for Claude Code / OpenClaw, with 2445 downloads so far.
How do I install Create an Excel (.xlsx) file containing formatted data.?
Run "/install generate-excel" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Create an Excel (.xlsx) file containing formatted data. free?
Yes, Create an Excel (.xlsx) file containing formatted data. is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Create an Excel (.xlsx) file containing formatted data. support?
Create an Excel (.xlsx) file containing formatted data. is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Create an Excel (.xlsx) file containing formatted data.?
It is built and maintained by sereinZhi (@sereinzhi); the current version is v1.0.0.