Create, edit, and analyze Word documents with tracked changes and comments.
Based on the materials, this docx skill is prompt-only, open-source, and widely adopted by the community, with no declared secrets or remote endpoints, so the overall risk is low. Its main function is to guide document-processing workflows; the README does include instructions to use host tools for local .docx reading/editing and pandoc/python/js workflows, but that is usage guidance rather than built-in privilege of the skill itself.
The material explicitly states that no keys or environment variables are required. There is no indication that the skill requests API tokens, account credentials, or other sensitive configuration, so there is no obvious credential collection or leakage surface.
The material explicitly states that there are no remote endpoint hosts. The README mainly describes local .docx/OOXML/Pandoc workflows and does not declare sending document contents to third-party services or unknown endpoints.
The system checks classify it as prompt-only. While the README mentions pandoc, Python scripts, and JavaScript/TypeScript workflows, these are operational instructions for whatever host tools are available, not evidence that the skill itself ships executable code or automatically gains local execution privileges.
The skill targets .docx creation, editing, and analysis, so its guidance involves reading/modifying local documents, unpacking OOXML, and inspecting comments/media. However, based on the material, this is task-scoped document handling guidance and does not declare filesystem-wide traversal, privilege escalation, or data access beyond its stated purpose.
The source is an open-source GitHub repository with strong community adoption (about 66.6k stars), which materially lowers supply-chain risk. There is no sign of closed-source distribution, unknown download origins, or suspicious install scripts. The undeclared license and unknown maintenance status are worth noting, but they are not enough on their own to justify a high-risk rating.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "docx" skill from askskill: 1. Download https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/document-skills/docx/SKILL.md 2. Save it as ~/.claude/skills/docx/SKILL.md 3. Reload skills and tell me it's ready
A user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks.
Use "Text extraction" or "Raw XML access" sections below
Use "Creating a new Word document" workflow
Your own document + simple changes Use "Basic OOXML editing" workflow
Someone else's document Use "Redlining workflow" (recommended default)
Legal, academic, business, or government docs Use "Redlining workflow" (required)
If you just need to read the text contents of a document, you should convert the document to markdown using pandoc. Pandoc provides excellent support for preserving document structure and can show tracked changes:
# Convert document to markdown with tracked changes
pandoc --track-changes=all path-to-file.docx -o output.md
# Options: --track-changes=accept/reject/all
You need raw XML access for: comments, complex formatting, document structure, embedded media, and metadata. For any of these features, you'll need to unpack a document and read its raw XML contents.
python ooxml/scripts/unpack.py <office_file> <output_directory>
word/document.xml - Main document contentsword/comments.xml - Comments referenced in document.xmlword/media/ - Embedded images and media files<w:ins> (insertions) and <w:del> (deletions) tagsWhen creating a new Word document from scratch, use docx-js, which allows you to create Word documents using JavaScript/TypeScript.
docx-js.md (~500 lines) completely from start to finish. NEVER set any range limits when reading this file. Read the full file content for detailed syntax, critical formatting rules, and best practices before proceeding with document creation.When editing an existing Word document, use the Document library (a Python library for OOXML manipulation). The library automatically handles infrastructure setup and provides methods for document manipulation. For complex scenarios, you can access the underlying DOM directly through the library.
ooxml.md (~600 lines) completely from start to finish. NEVER set any range limits when reading this file. Read the full file content for the Document library API and XML patterns for directly editing document files.python ooxml/scripts/unpack.py <office_file> <output_directory>python ooxml/scripts/pack.py <input_directory> <office_file>The Document library provides both high-level methods for common operations and direct DOM access for complex scenarios.
This workflow allows you to plan comprehensive tracked changes using markdown before implementing them in OOXML. CRITICAL: For complete tracked changes, you must implement ALL changes systematically.
Batching Strategy: Group related changes into batches of 3-10 changes. This makes debugging manageable while maintaining efficiency. Test each batch before moving to the next.
…
Automate Visme tasks through Rube MCP to speed up design workflows.
Automate Codereadr workflows via Rube MCP using current tool schemas first.
Automate MX Technologies tasks via Rube MCP, searching tool schemas first.
Automate Nango workflows via Rube MCP using current tool schemas first.
Automate Zoho Mail sending, searching, and organization through Rube MCP.
Automate Zyte API workflows for web scraping and structured data extraction.
Create, edit, and polish professional Word documents and .docx files.
Read and edit Word documents, comments, tracked changes, and reply threads.
Use Claude to read, rewrite, generate, and summarize LibreOffice Writer documents.
Read, create, and edit Office and PDF documents through Markdown.
Create, edit, analyze, and visualize spreadsheets with formulas and formatting.
Manipulate PDFs, Excel, Word, and PowerPoint for extraction, forms, formulas, and revisions.