处理或生成电子表格文件,支持清洗、编辑、转换与公式图表操作。
该 xlsx 技能材料显示其本质上是一个开源的提示词型技能说明,未声明需要密钥、远程端点或额外系统权限。基于现有材料,整体风险较低,主要注意其可能引导代理处理本地表格文件这一常规数据访问场景。
材料明确标注“无”密钥/环境变量,文档中也未见要求用户提供 API token、账号凭证或其他敏感认证信息,凭证泄露与滥用风险低。
材料标注无远程端点,描述聚焦于本地 .xlsx/.xlsm/.csv/.tsv 文件的创建、编辑、清理与转换,未见将用户数据发送到外部服务的声明。
系统检查项已标记为 prompt-only,当前材料更像工作流/输出规范说明,而非可执行程序或安装脚本;虽提到可假设 LibreOffice 存在,但未显示该技能自身请求额外执行权限。
技能用途就是处理电子表格文件,按功能会涉及读取、修改、创建和转换本地表格数据文件;这是该类技能的常规数据访问范围,未见超出声明用途的过度授权迹象,但仍应按最小必要原则限定文件范围。
来源为 GitHub 上的开源仓库,且属于 anthropics/skills,源码/内容可审计;虽许可证未声明、star 为 0 且维护状态未知,带来一定治理信息缺口,但未见闭源、失真分发或可疑注入等高风险红旗,综合仍偏低风险。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "xlsx" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/skills/main/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 scripts/recalc.py script. The script automatically configures LibreOffice on first run, including in sandboxed environments where Unix sockets are restricted (handled by scripts/office/soffice.py)
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.
…
创建、读取、编辑与整理 PPTX 演示文稿及其中的文本和备注内容。
用于创建、编辑与优化AI技能,并评测其效果与触发准确性。
帮助用户制作适配 Slack 的动画 GIF,并检查规格与动画效果。
用 p5.js 与可控随机参数生成原创算法艺术与交互式视觉作品
将各类内容套用 Anthropic 官方品牌色彩与字体规范。
用于创建、编辑与整理Word文档,并生成带专业排版的 .docx 文件。