Create, edit, analyze, and visualize spreadsheets with formulas and formatting.
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/ComposioHQ/awesome-claude-skills/master/document-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 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
…
Automate candidate, job, interview, and note management in Ashby using natural language.
Automate Affinda document processing and data extraction through Rube MCP.
Automate AI/ML API workflows via Rube MCP, checking latest tool schemas first.
Automate Apitemplate.io template generation and document workflows through Rube MCP.
Automate Bart tasks through Rube MCP with schema discovery first.
Automate Accelo tasks through Rube MCP after checking current tool schemas first.
Open, edit, clean, convert, or create spreadsheet files and tabular data.
Query Excel and CSV data in natural language for fast analysis.
Automate workbook creation, data updates, and spreadsheet formatting across Excel and Google Sheets.
Turn analyzed data into a shareable Excel-like spreadsheet with formulas and tables.
Query spreadsheets in natural language with auditable, read-only structured analysis.
Create, edit, and analyze Word documents with tracked changes and comments.