Nox-Lumen MfgNox-Lumen Mfg

xlsx

Capabilities

Full Excel read/write and formatting:

CapabilityDetails
Create / openNew workbooks; parse existing files
CellsRead / write / clear / merge / split
Rows & columnsInsert / delete / resize / hide
FormattingFonts, colors, borders, fills, alignment, number formats
Multiple sheetsAdd/remove, switch, duplicate, rename
FormulasSUM, VLOOKUP, IF, custom ranges
Conditional formattingDatabars, color scales, icon sets
ChartsColumns, bars, pies, lines, scatter, …
ImagesEmbed in-cell or floating
Freeze panes / filters / outlinesCommon view ergonomics

When to use

ScenarioNotes
Data reportsExport structured data into polished spreadsheets
Template fillsContracts, reconciliation sheets, billing cadences
PivotsMulti-sheet dashboards
Rich exportsColor defects or categories for review outputs
Test matricesRequirements × tests × ASIL cubes
Compliance matricesASPICE process areas × artifact coverage

Not for:

  • Word documents → docx
  • PDF export flows → derive via docx/pdf pipelines
  • General non-spreadsheet automation

vs. document-editing

SkillRoleUse when
xlsxSpreadsheet primitivesAuthoring from scratch, large exports, charts
document-editingCoW editing frameworkPartial edits to existing xlsx while preserving styling

Typical combos:

New export:           user → xlsx → artifact
Localized edits:      user → document-editing → calls xlsx → artifact

Invocation

Natural language inside a session works:

  • "Generate an Excel file"
  • "Export to xlsx"
  • "Make a pivot table"
  • "Excel with charts"

Or slash:

/xlsx Export this dataset to Excel with category colors

Common pitfalls

IssueMitigation
Garbled Chinese fieldsPrefer UTF-8; avoid legacy .xls, stick to .xlsx
Writes fail on merged cellsUnmerge, write, re-merge
Huge files (>1M rows) slowStreaming read_only=True / write_only=True
Formulas not evaluatedExcel recalcs on open; servers may need workbook.calculate or library eval
Chart anchors driftPin to anchor cells via oneCellAnchor/twoCellAnchor

On this page