English · 简体中文
docx-master
The Word document automation agents have been waiting for. One skill, 15 tools, and a sparse-by-design config language that mutates .docx OOXML directly — restyle, renumber, edit, audit — without the fragile round-trip through Markdown or HTML.
Quick start: npx skills add hawa130/docx-master (or grab the latest release zip and drop it into your harness's skills directory).
Peer Word skills
Most Word skills are LLM-facing documentation for an underlying library — python-docx, docx-js, OpenXML SDK. They hand the agent a set of primitives; what a good Word document looks like is left for the agent to figure out.
docx-master comes with its own convention for writing Word documents:
- Every paragraph binds to a named style (Heading, Body Text, List, etc.); formatting follows the style.
- Chapters, figures, tables, and equations all use Word's built-in auto-numbering.
- References like "see Figure 1.2" stay live; every number updates together when sections move.
- CJK and Latin runs in the same paragraph keep their own font sizes.
Each convention comes with its own tooling: pattern_rules / bulk_rules apply rules across the document in one pass, migrate_captions detects manually-numbered captions to convert, audit flags violations, and 12 inspect / find tools let the agent survey the document before mutating.
Side-by-side with peer skills:
Capability comparison:
| Scenario | anthropics | qodex-ai | minimax-ai | claude-office | docx-master |
|---|
| Fill an existing blank template with content | ~ | ~ | ✓ | ✓ | ✓ |
| Create a new Word document from scratch | ~ | ~ | ✓ | ~ | ✓ |
| Auto-numbered chapter / section headings (no typed "1.1.1") | — | — | ~ | — | ✓ |
| CJK and Latin fonts don't override each other in mixed paragraphs | — | — | ~ | — | ✓ |
Figures, tables, equations numbered as chapter.n | — | — | — | — | ✓ |
| "See Figure 1.1" as a live field that updates on reorder | — | — | ~ | — | ✓ |
| LaTeX equations as centered display blocks + number | — | — | — | — | ✓ |
| Reviewer feedback flows back as tracked changes | ✓ | ✓ | ~ | — | ✓ |
| Convert typed "Figure 2.1" from a legacy draft to live fields | — | — | — | — | ✓ |
| Fill form blanks without breaking the underline | — | — | — | — | ✓ |
| Edit a specific cell in a table | — | — | ~ | ~ | ✓ |
| Page headers / footers with page numbers | ~ | — | ~ | ~ | ✓ |
| Different page layout per section (portrait / landscape, margins) | ~ | — | ~ | ~ | ✓ |
| Format conformance check | — | — | — | — | ✓ |
| Borrow styles from another document | — | — | ✓ | — | ✓ |
✓ built-in helper, declare-and-use · ~ doable but the agent assembles pieces · — no specific support
anthropics/docx covers everyday creation and one-off edits. qodex-ai fits more naturally when redlining workflows dominate, .NET projects tend toward minimax-ai, and claude-office-skills is the shortest route for template placeholder fills. docx-master sits in the long-form structural reshape space, especially for CJK documents.
The full sub-command surface, Block types, and reference docs are listed in the "What's Included" section below.
What's Included
The Skill: docx-master
A focused Word-automation skill with 11 on-demand reference files (view skill):