Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

DOCX Creation, Editing & Redlining

An end-to-end skill for creating, editing, analyzing, and redlining Word (.docx) documents with real tracked changes.

Docs & OfficeIntermediate14510AI 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 docx npm library (docx-js).
  • Edit existing documents: unpacks the .docx, edits word/document.xml through 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

  1. "Change every '30 days' to '60 days' in this contract as tracked changes" → only the changed token is marked, surrounding runs preserved
  2. "Extract this NDA to markdown and summarize risky clauses"
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/appautomaton/document-SKILLs.git
  3. Install the skill: mkdir -p ~/.claude/skills && cp -r document-SKILLs/docx ~/.claude/skills/docx
  4. Install external tools (macOS): brew install pandoc poppler and brew install --cask libreoffice
  5. Install uv for Python scripts and Node.js: curl -LsSf https://astral.sh/uv/install.sh | sh, then brew install node
  6. If you plan to create new documents, run once: cd ~/.claude/skills/docx && npm install
  7. Restart Claude Code and try: "Review this .docx and apply my edits as tracked changes."