What problem does it solve?
This Skill removes the complexity of working with Microsoft Word .docx files by guiding reliable creation, modification, and analysis workflows, including tracked changes (redlining) and comments, while preserving document structure and formatting.
Core Features & Use Cases
- Create DOCX documents from scratch using a JavaScript/TypeScript approach (docx-js) that exports valid .docx files.
- Edit existing DOCX files safely using an OOXML-focused Python document library that unpacks, modifies, and repacks documents.
- Implement tracked changes (redlining) with comments using Pandoc-assisted markdown + systematic OOXML insertion/deletion patterns, including validation guardrails.
- Analyze DOCX content via text extraction (Pandoc to markdown) or deep inspection through raw OOXML XML access (unpack and read XML like document.xml and comments.xml).
- Handle visual verification by converting DOCX → PDF → page images (JPEG) when structural correctness needs to be visually confirmed.
Quick Start
Use the docx skill to create a new .docx document from a specified outline using docx-js.