Document workClaude apps and Claude Code

Anthropic / docx

What does the docx skill actually add to Claude?

The difference between a chat answer about a document and a .docx file you can open in Word.

What to remember

  1. It produces and edits real OOXML files, so formatting survives the trip to the recipient.
  2. It also reads existing documents, which makes find and replace across a long file practical.
  3. The document skills are published as source available, not open source, which matters if you plan to redistribute them.
  4. It does not make the writing good. Structure and argument are still your job.

01What it changes in practice

Without a document skill, an agent asked for a report returns text. Somebody then pastes that text into Word, fixes the headings, rebuilds the table and adds page numbers. That manual step is where most of the time goes, and it is the step the docx skill removes.

With the skill loaded, the same request produces a file with a real heading hierarchy, real tables and real page furniture. The practical test is simple: if a colleague can open the result and start editing without cleaning it up first, the skill did its job.

  • Create a document from a brief, including tables of contents and letterheads.
  • Edit an existing file, including find and replace across the whole document.
  • Work with tracked changes and comments, which is what review cycles actually run on.

02Where it disappoints

Complex visual layout is still hard. Multi column brochures, precise image placement and house styles with strict spacing rules are the cases where the output usually needs a designer afterwards, so treat the file as a strong draft rather than a finished asset.

The other common surprise is licensing. Anthropic publishes the document skills as source available reference implementations rather than open source, so read the license before you bundle them into a product you ship to customers.

Install and first run

  1. Install the document skills from anthropics/skills, or use a Claude surface where they are already available.
  2. Ask for a specific artifact, for example a two page status report with a table of contents and a header on every page.
  3. Open the produced file in Word or LibreOffice before sending it, because layout problems are only visible in a real reader.

Questions people actually ask

Is the docx skill the same as asking Claude to write a document?
No. Asking for a document returns text in the chat. The skill returns a .docx file with the formatting already applied.
Can it edit a Word file I already have?
Yes. It reads existing documents and can perform edits such as replacing text, changing sections or working with tracked changes and comments.
Is it open source?
The document skills are published as source available, not open source. Read the license in the repository before redistributing them.

Sources

  1. anthropics/skills on GitHubrepository
  2. anthropics/skills, docx skill directorydocumentation

Machine readable versions of this page