What problem does it solve? Working with Microsoft Word documents programmatically is error-prone: text gets fragmented across runs, tracked changes and comments live in raw XML, and templates with placeholders break easily. This Skill provides tested command-line helpers that handle creation, reading, editing, templating, revision review, comments, and package health checks for .docx files without manual XML manipulation. ## Core Features & Use Cases - Document creation and templating: Build .docx files from a JSON spec (headings, paragraphs, lists, tables, images, TOC, page numbers) or fill {{token}} placeholders in existing templates from JSON data. - Editing and inspection: Find-and-replace with formatting preserved, edit table cells, insert/delete/style paragraphs, extract text, outlines, styles, and embedded images. - Review workflows: List, accept, or reject tracked changes; list, add, or delete comments anchored to document text; validate package health with docx_validate.py. - Use Case: You receive a contract template with {{client_name}} and {{date}} placeholders plus reviewer tracked changes. Fill the tokens with docx_template.py, accept all revisions with docx_revisions.py, then verify the result with docx_validate.py. ## Quick Start Ask the agent to create a Word report from a JSON spec or to replace specific text in an existing .docx file, and it will run the appropriate script and verify the output.