/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
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install generate-excel - 安装完成后,直接呼叫该 Skill 的名称或使用
/generate-excel触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2445 次。
如何安装 Create an Excel (.xlsx) file containing formatted data.?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install generate-excel」即可一键安装,无需额外配置。
Create an Excel (.xlsx) file containing formatted data. 是免费的吗?
是的,Create an Excel (.xlsx) file containing formatted data. 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Create an Excel (.xlsx) file containing formatted data. 支持哪些平台?
Create an Excel (.xlsx) file containing formatted data. 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Create an Excel (.xlsx) file containing formatted data.?
由 sereinZhi(@sereinzhi)开发并维护,当前版本 v1.0.0。