with one click
excel
Excel AI 助手 — 读取、清洗、分析、生成 Excel 数据
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Excel AI 助手 — 读取、清洗、分析、生成 Excel 数据
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Breakout/Arkanoid-style brick breaker with paddle, ball, bricks, lives, and required powerups
Mario-style 2D platformer with stomp/bump/ability/gate/combo mechanics
深度研究方法论 — 4 阶段结构化研究框架
Endless runner — auto-running player dodges obstacles and collects pickups while distance increases
TODO 一句话描述(给 LLM 看,soft dispatch 用)
Create a pull request after typecheck, targeted tests, branch, commit, and push are complete.
| name | excel |
| description | Excel AI 助手 — 读取、清洗、分析、生成 Excel 数据 |
| keywords | ["excel","xlsx","spreadsheet","表格","数据清洗","数据分析","pandas"] |
| allowed-tools | ["Bash","Read","Glob","Grep","ExcelAutomate"] |
| execution-context | inline |
你正在执行 Excel 数据处理任务。严格按以下流程操作。
Glob / Grep / Read,宽泛全文搜索可用 rg;不要仅因为出现 .xlsx 或“表格”字样就进入本 skill。/excel。根据用户输入决定工作模式:
如果路径不确定,用 Glob 搜索:
# 在当前目录及子目录搜索 Excel 文件
find . -maxdepth 3 -name "*.xlsx" -o -name "*.xls" | head -20
对已有文件,必须先用 ExcelAutomate read 读取,获取:
将读取结果展示给用户,确认理解一致后再操作。
根据用户需求选择合适的方式:
适用于:生成新文件、格式化输出、多 sheet 操作、添加样式
适用于:>10000 行数据、复杂聚合/透视、多文件合并
python3 -c "
import pandas as pd
df = pd.read_excel('input.xlsx')
# 处理逻辑...
df.to_excel('output.xlsx', index=False)
"
适用于:用户已在 Excel 中打开文件,需要实时操作
适用于:用户要求趋势图、柱状图、透视图、仪表盘等。必须先完成数据分析,再用 openpyxl / pandas / matplotlib 或 ExcelAutomate 生成图表,并在回读时确认图表所在 sheet 和关键数据区域存在。
生成文件后必须验证:
ExcelAutomate { action: 'validate_formulas', file_path: '...' }/excel sales.xlsx 按地区汇总销售额/excel data.xlsx 去重并清洗空值/excel 生成一个带图表的月度报表/excel report.xlsx 合并所有 sheet 到一个汇总表/excel *.xlsx 批量提取每个文件的第一个 sheet$ARGUMENTS