read-docx-comments

Extract DOCX comments grouped with anchored text, author, and date.

4|1|Updated Mar 11, 2026
One-click install
npx skills add https://github.com/jcdendrite/claude-config --skill read-docx-comments
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: read-docx-comments
Source: https://github.com/jcdendrite/claude-config/tree/main/claude/.claude/skills/read-docx-comments
Command: npx skills add https://github.com/jcdendrite/claude-config --skill read-docx-comments

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It eliminates the manual effort of finding and interpreting review comments inside Word DOCX files by converting embedded Word feedback into a readable, structured summary.

Core Features & Use Cases

  • Comment Extraction with Anchors: Pulls every DOCX comment and associates it with the specific anchored text from the document.
  • Author and Date Grouping: Outputs each comment with its author and date so reviewers and stakeholders can quickly trace context.
  • Use Case: When you receive a DOCX plan filled with review notes, you can instantly review what was flagged and by whom without opening and hunting through the file.

Quick Start

Use the skill with the DOCX path you want processed, for example: extract all comments and their anchored text from ./project-notes.docx.

Frequently Asked Questions about read-docx-comments

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extract comments from a Word DOCX file?

To extract comments from a Word DOCX file, this skill unzips the document and parses the internal XML to locate comment ranges. It returns structured feedback grouped with the anchored document text, author, and date for easy review.

Can I pull the anchored text associated with specific document review notes in DOCX?

Yes, you can pull anchored text by mapping commentRangeStart and commentRangeEnd tags via comment IDs in the document XML. This process directly associates each extracted Word feedback note with its exact referenced text.

What is the best way to triage plan critiques exported from Google Docs or Word?

The best way to triage plan critiques is to convert embedded DOCX feedback into a structured summary. This extracts every comment alongside its author and date, letting you instantly review flagged text without opening the file.

Does this DOCX comment extraction approach work without Microsoft Word installed?

Yes, this DOCX comment extraction works without Microsoft Word installed because it directly unzips the file and parses the raw XML structure. It locates comment data by reading the internal word/comments.xml and word/document.xml files.

How are Word feedback authors and dates handled during XML parsing?

During XML parsing, Word feedback authors and dates are extracted directly from the comments metadata. Each comment is grouped and output with its corresponding author, date, and anchored text so stakeholders can quickly trace context.

What are the limitations of extracting Word comments through XML parsing?

A limitation of extracting Word comments through XML parsing is that it only processes static DOCX files, meaning it cannot parse live collaborative documents or resolve complex nested comment threads outside the standard commentRangeStart and commentRangeEnd structure.