docx

Installation
SKILL.md

Word Document (DOCX) Processing Skill

When working with Word documents, follow these guidelines:

1. Reading & Extracting from DOCX

Extract text content:

# Using pandoc
pandoc document.docx -t plain -o output.txt

# Using python-docx
python3 -c "
import docx
doc = docx.Document('document.docx')
for para in doc.paragraphs:
    print(para.text)
"
Installs
5
GitHub Stars
7
First Seen
Mar 1, 2026
docx — thechandanbhagat/claude-skills