What problem does it solve? Spreadsheet tasks often fail silently: formulas written by openpyxl have no cached values, unsupported functions become #NAME? errors, and re-saving a workbook can destroy external links. This Skill provides a verified workflow for producing spreadsheet files that actually recalculate correctly and follow professional formatting conventions. ## Core Features & Use Cases - Spreadsheet creation and editing: Build or modify .xlsx, .xlsm, .xltx, .csv, and .tsv files using openpyxl for formulas/formatting and pandas for bulk data movement. - Mandatory formula recalculation: scripts/recalc.py runs LibreOffice headless to compute every formula, rewrites the file in place, and reports JSON error summaries by cell location. - Financial model conventions: Enforces color coding for inputs vs formulas, number formats, and assumption documentation for professional models. - Use Case: A user asks to add a revenue projection with growth formulas to an existing workbook; the Skill writes the formulas, runs recalc.py, fixes any reported errors, and delivers a file whose values are verified rather than assumed. ## Quick Start Use the xlsx skill to open the attached sales-data.xlsx, add a column computing year-over-year growth with formulas, and recalculate the workbook.