What problem does it solve? Working with Word documents programmatically is error-prone: docx-js cannot open existing files, Word fragments text across XML runs, and tracked changes or comments require many cross-linked XML parts. This Skill provides tested workflows and scripts to create, edit, read, redline, and validate .docx and .dotx files reliably. ## Core Features & Use Cases - Document Creation: Generate polished Word documents with the docx npm library, avoiding common pitfalls like A4 default page size, broken table widths, and literal bullet characters. - Editing & Redlining: Unzip, edit word/document.xml directly, merge fragmented runs for reliable find-and-replace, and produce tracked changes with proper <w:ins>/<w:del> markup. - Comments & Validation: Add threaded comments with all six required satellite XML files, accept tracked changes via LibreOffice, and validate output against OOXML XSD schemas with auto-repair. - Use Case: A lawyer asks you to redline a contract: unpack the .docx, merge runs, wrap edits in tracked-change elements, validate with the author flag, and render a PDF to visually verify the result. ## Quick Start Use the docx skill to create a professional Word report with a table of contents, headings, and page numbers, then render it to PDF so I can review the layout.