DOCX Creation, Editing & Redlining
An end-to-end skill for creating, editing, analyzing, and redlining Word (.docx) documents with real tracked changes.
Docs & OfficeIntermediate★ 145⑂ 10AI score 10/10Last updated: Aug 10, 2026
What it does
- Read & analyze: converts .docx to markdown via pandoc, preserving tracked changes.
- Create new documents: builds Word files programmatically with the
docxnpm library (docx-js). - Edit existing documents: unpacks the .docx, edits
word/document.xmlthrough a Python Document library, then repacks it. - Professional redlining: inserts genuine tracked changes using
<w:ins>/<w:del>, batched 3–10 edits at a time, with minimal-diff precision and final verification. - Visual review: converts DOCX → PDF → JPEG pages with LibreOffice and poppler to inspect layout.
Who it's for
- Legal, business, and academic reviewers who must leave an auditable edit trail
- Developers automating Word report or contract generation
- Anyone needing precise Word edits without breaking original formatting
Examples
- "Change every '30 days' to '60 days' in this contract as tracked changes" → only the changed token is marked, surrounding runs preserved
- "Extract this NDA to markdown and summarize risky clauses"
- "Generate a monthly report .docx with headings and a table" → docx-js script outputs the file
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/appautomaton/document-SKILLs/HEAD/docx/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the docx folder from the GitHub repo appautomaton/document-SKILLs into my ~/.claude/skills/appautomaton-docx/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/appautomaton/document-SKILLs.git && mkdir -p ~/.claude/skills && cp -r document-SKILLs/docx ~/.claude/skills/docx⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/appautomaton/document-SKILLs.git - Install the skill:
mkdir -p ~/.claude/skills && cp -r document-SKILLs/docx ~/.claude/skills/docx - Install external tools (macOS):
brew install pandoc popplerandbrew install --cask libreoffice - Install
uvfor Python scripts and Node.js:curl -LsSf https://astral.sh/uv/install.sh | sh, thenbrew install node - If you plan to create new documents, run once:
cd ~/.claude/skills/docx && npm install - Restart Claude Code and try: "Review this .docx and apply my edits as tracked changes."
View source on GitHub ↗License: MIT