用于创建、编辑、分析电子表格,并支持公式、格式与可视化处理。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "xlsx" 技能: 1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/document-skills/xlsx/SKILL.md 2. 保存为 ~/.claude/skills/xlsx/SKILL.md 3. 装好后重载技能,告诉我可以用了
请根据以下销售数据创建一个 Excel 表格,包含月份、产品、销售额、利润四列;添加总计行、利润率公式,并用条件格式高亮利润率低于10%的行,最后生成柱状图展示各产品销售额。
一个格式完整的销售报表,含公式、条件格式和销售额图表。
请读取这个 Excel 文件,分析各地区季度销售趋势,找出增长最快和下滑最明显的地区,并汇总成简洁结论;如有需要,可在表中新增分析工作表。
对表格数据的趋势分析结果,以及可选的新增分析工作表。
请修改这个预算表:将“市场费用”列整体上调8%,保留原有格式和公式关联,并重新计算所有汇总单元格,检查是否有公式错误或引用断裂。
已更新的预算表,保留原格式,并完成公式重算与错误检查。
Unless otherwise stated by the user or existing template
A user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks.
LibreOffice Required for Formula Recalculation: You can assume LibreOffice is installed for recalculating formula values using the recalc.py script. The script automatically configures LibreOffice on first run
For data analysis, visualization, and basic operations, use pandas which provides powerful data manipulation capabilities:
import pandas as pd
# Read Excel
df = pd.read_excel('file.xlsx') # Default: first sheet
all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict
# Analyze
df.head() # Preview data
df.info() # Column info
df.describe() # Statistics
# Write Excel
df.to_excel('output.xlsx', index=False)
Always use Excel formulas instead of calculating values in Python and hardcoding them. This ensures the spreadsheet remains dynamic and updateable.
# Bad: Calculating in Python and hardcoding result
total = df['Sales'].sum()
sheet['B10'] = total # Hardcodes 5000
# Bad: Computing growth rate in Python
…
通过 Rube MCP 自动化 Agiled 中的客户、项目与业务流程操作。
用于创建、编辑和分析Word文档,支持修订、批注与格式保留。