What problem does it solve? Working with Word documents programmatically is difficult because .docx files are ZIP archives of XML, making tasks like tracked changes, comments, and formatting preservation error-prone when done manually. ## Core Features & Use Cases - Document Creation: Generate new Word documents with docx-js (JavaScript/TypeScript), including styles, tables, lists, images, headers, footers, and tables of contents. - Editing & Redlining: Apply tracked changes and comments to existing documents using a Python Document library that handles RSIDs, validation, and OOXML infrastructure automatically. - Text Extraction & Analysis: Convert documents to Markdown with pandoc, unpack raw XML for comments and metadata, and render pages to images via LibreOffice and pdftoppm. - Use Case: Review a legal contract by converting it to Markdown, planning batched edits, implementing minimal tracked changes in the XML, and verifying the final redlined document. ## Quick Start Ask the AI to create a new Word report with headings and a table, or to add tracked changes and comments to an existing .docx file.