---
name: DOCX
slug: docx-3
category: Automation
description: DOCX extracts paragraph text from .docx files using python-docx. Use it when you need plain text from a Microsoft Word document or when the input path ends with .docx.
github: "https://github.com/axoviq-ai/synthadoc/tree/main/synthadoc/skills/docx"
language: Python
stars: 1012
forks: 122
install: "npx degit https://github.com/axoviq-ai/synthadoc/tree/main/synthadoc/skills/docx ~/.claude/skills/docx"
installs_to: ~/.claude/skills/docx
source_path: synthadoc/skills/docx/SKILL.md
collection_size: 10
category_size: 1523
collection_url: "https://dirskills.com/collections/axoviq-ai/synthadoc"
added: 2026-08-21T05:14:31.230Z
last_synced: 2026-08-21T05:14:31.230Z
canonical_url: "https://dirskills.com/skills/docx-3"
---

# DOCX

DOCX extracts paragraph text from .docx files using python-docx. Use it when you need plain text from a Microsoft Word document or when the input path ends with .docx.

**Install:**

```bash
npx degit https://github.com/axoviq-ai/synthadoc/tree/main/synthadoc/skills/docx ~/.claude/skills/docx
```

## README

# DOCX Skill

Extracts paragraph text from `.docx` files using `python-docx`.

## Setup

```bash
pip install python-docx
```

## Standalone usage

```python
import asyncio
from synthadoc.skills.docx.scripts.main import DocxSkill

skill = DocxSkill()

async def main():
    result = await skill.extract("/path/to/document.docx")
    print(result.text)      # all paragraphs joined as plain text

asyncio.run(main())
```

## When this skill is used

- Source path ends with `.docx`
- User intent contains: `word document`, `docx`
