用于创建、编辑、分析电子表格,并支持公式、格式与可视化处理。
复制安装指令,让 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
…
自动化管理 Spotify 播放列表、搜索音乐并控制播放与账户信息。
通过 Rube MCP 自动化执行 Stack Exchange 的查询与管理任务。
通过自然语言自动创建和管理问卷,并收集与检索 SurveyMonkey 数据。
通过 Rube MCP 自动执行 Tally 相关任务,提升财务与数据处理效率。
通过 Rube MCP 自动执行 Telnyx 通信与号码管理等运营任务。
通过 Rube MCP 自动处理 Splitwise 记账、账单与分账操作
处理或生成电子表格文件,支持清洗、编辑、转换与公式图表操作。
通过 Excel 与 Google Sheets 集成自动创建、写入和格式化表格。
将分析结果生成可分享的类 Excel 电子表格,支持单元格、公式和表格。
用于创建、编辑和分析Word文档,支持修订、批注与格式保留。
通过自然语言自动处理 Excel 表格读写、格式化、图表与工作表管理。
帮助用户以编程方式读取、写入和处理 Excel 电子表格文件。