Open, edit, clean, convert, or create spreadsheet files and tabular data.
This xlsx skill appears to be an open-source, prompt-only skill specification with no stated secrets, remote endpoints, or extra system privileges. Based on the provided material, overall risk is low, with the main consideration being ordinary local spreadsheet file handling.
The material explicitly states there are no required keys or environment variables, and the documentation does not request API tokens, account credentials, or other sensitive authentication data, so credential exposure and abuse risk is low.
The material declares no remote endpoints, and the description focuses on creating, editing, cleaning, and converting local .xlsx/.xlsm/.csv/.tsv files, with no stated transfer of user data to external services.
The system marks it as prompt-only, and the material reads like workflow/output guidance rather than an executable program or installer; while it mentions assuming LibreOffice is installed, the skill itself does not show a request for additional execution privileges.
The skill is intended to handle spreadsheet files, so it would ordinarily involve reading, modifying, creating, and converting local tabular data files; this is normal for this type of skill, and no overbroad access beyond the stated purpose is evident, but file scope should still be limited by least privilege.
The source is an open-source GitHub repository under anthropics/skills, making the contents auditable; although the license is undeclared, stars are 0, and maintenance status is unknown, these are governance gaps rather than high-risk red flags such as closed-source distribution, tampering, or suspicious injection, so overall supply-chain risk remains low.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "xlsx" skill from askskill: 1. Download https://raw.githubusercontent.com/anthropics/skills/main/skills/xlsx/SKILL.md 2. Save it as ~/.claude/skills/xlsx/SKILL.md 3. Reload skills and tell me it's ready
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.
…
Read, extract, edit, merge, split, OCR, and create PDF documents.
Create, edit, and polish professional Word documents and .docx files.
Design and generate polished, production-ready frontend interfaces and web component code.
Create Slack-ready animated GIFs with optimized specs, validation, and animation guidance.
Build complex web artifacts with React, Tailwind, and shadcn/ui components.
Create original algorithmic art in p5.js with seeded randomness and interactive controls.
Create, edit, analyze, and visualize spreadsheets with formulas and formatting.
Read, write, and manipulate Excel spreadsheets programmatically in Go workflows.
Query spreadsheets in natural language with auditable, read-only structured analysis.
Read, create, diff, and redact Excel files with production-ready tooling.
Lets AI read and edit Excel files, write formulas, and diagnose spreadsheet errors.
Use AI to read, edit, format, and analyze Excel files efficiently.