logoalt Hacker News

rush86999yesterday at 11:10 PM1 replyview on HN

Is this manipulating excel files using agent AI? How is this different from using a python package like openpyxl and adding a UI layer on top with agentic co-editing?

https://github.com/rush86999/atom/blob/main/backend/core/off...


Replies

matthewgappyesterday at 11:17 PM

openpyxl is great at what it does, but it’s a file-format library rather than a workbook runtime.

It can insert columns, for example, but it doesn’t maintain dependencies such as formulas, tables, charts, or defined names when doing so. It also doesn’t evaluate formulas.

Nobie runs the workbook like Excel would: it evaluates formulas, maintains workbook semantics through edits, renders the result, and reads and writes the file.

Roughly speaking, Nobie is to an Excel workbook what V8 is to JavaScript. openpyxl is closer to a parser and serializer.

show 1 reply