用于创建、编辑、分析电子表格,并支持公式、格式与可视化处理。
复制安装指令,让 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. 装好后重载技能,告诉我可以用了
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 自动化 Demio 会议与报名管理,提升网络研讨会运营效率。
通过 Rube MCP 自动化 Goodbits 简报与内容运营流程
通过 MCP 自动执行 Mural 白板任务,提升协作整理与流程效率。
通过 Rube MCP 自动执行 Piloterr 任务,并先检索最新工具 schema
通过 Rube MCP 自动执行 Gamma 相关任务,提升演示与文档处理效率。
通过 Rube MCP 自动化 Signwell 签署与文档流程处理任务。
处理或生成电子表格文件,支持清洗、编辑、转换与公式图表操作。
用自然语言查询 Excel 和 CSV 数据,快速完成分析与表格洞察。
通过 Excel 与 Google Sheets 集成自动创建、写入和格式化表格。
将分析结果生成可分享的类 Excel 电子表格,支持单元格、公式和表格。
用自然语言查询电子表格,并返回可审计的只读结构化分析结果。
用于创建、编辑和分析Word文档,支持修订、批注与格式保留。