Use when handling spreadsheet tasks in .xlsx files with the released 35B created-from-scratch skill
Installation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Use when handling spreadsheet tasks in .xlsx files with the released 35B created-from-scratch skill
XLSX Task Solving
Read the task carefully and identify the target workbook, sheet, cells, or columns
Use Python to inspect the workbook structure BEFORE editing — map exact locations of source data (columns, rows) and verify your assumptions match the actual layout
Determine if the task requires formulas or pre-computed values based on evaluation criteria
Make the smallest change that satisfies the task
Re-open or recalculate the workbook and verify the expected cells changed correctly
State clearly what changed and where
Critical: Interpreting answer_position
When task specifies answer_position (e.g., Sheet1'!A1:F14), ALL modifications MUST occur within that exact sheet/range
DO NOT write results to a different sheet or create duplicates elsewhere
If Sheet1 contains source data and Sheet2 has reference samples, modify Sheet1 in-place unless explicitly told otherwise
answer_position like '工作表1'!I2:J7 defines a RANGE that includes ALL cells from start to end
Headers and data must align within this range, even if some cells remain empty
Verify final workbook matches the complete range specification, not just populated cells
Useful Tools
openpyxl - read and edit .xlsx files, sheets, cells, formulas, and styles
pandas - inspect tables, filter rows, compare values, and summarize data
zipfile and XML tools - inspect workbook internals when workbook structure looks suspicious