What problem does it solve? Spreadsheet tasks often fail silently: formulas written by scripts have no cached values, unsupported functions turn into #NAME? errors, and external links get destroyed on save. This Skill provides a disciplined workflow for producing spreadsheet files that actually recalculate correctly and follow professional formatting conventions. ## Core Features & Use Cases - Create and edit workbooks: Use openpyxl for formulas and formatting, pandas for bulk data in and out, and markitdown for quick sheet previews across .xlsx, .xlsm, .xltx, .csv, and .tsv files. - Mandatory formula recalculation: Run scripts/recalc.py to recalculate every formula via LibreOffice, returning JSON with error counts and cell locations for #VALUE!, #REF!, #NAME?, and other Excel errors. - Financial modeling conventions: Built-in guidance for color coding inputs versus formulas, number formats, assumption documentation, and formula choices that survive LibreOffice verification. - Use Case: A user asks to build a revenue forecast workbook from raw CSV data. The Skill writes SUMIFS and INDEX/MATCH formulas with openpyxl, recalculates with recalc.py, fixes any reported errors, and delivers a workbook whose formulas evaluate cleanly. ## Quick Start Use the xlsx skill to create a formatted budget spreadsheet from my expenses.csv with working SUM formulas and no formula errors.