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 OpenSea actions and workflows through Rube MCP tools.
Automate Scrapegraph AI tasks via Rube MCP with schema-first tool discovery.
Automate PerplexityAI queries and information workflows through Rube MCP.
Automate Appointo scheduling tasks through Rube MCP to streamline calendar workflows.
Enhance image quality, sharpness, and resolution for docs, presentations, and social posts.
Automate Astica AI tasks via Rube MCP using current tool schemas.
Open, edit, clean, convert, or create spreadsheet files and tabular data.
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.
Read, export, and modify Excel workbooks through MCP efficiently.
Read, write, and manage Google Sheets through natural language conversations.