# DOCX Analysis Conversion

> Extract, analyze, edit, and convert Microsoft Word (.docx) documents to structured Markdown, JSON, or clean text preserving tables, headers, and bullet lists.

- Skill: `pedroiff0/docx-analysis-conversion` (Agent Skill)
- Install (CLI): `npx skillmds@latest add pedroiff0/docx-analysis-conversion`
- Raw SKILL.md: https://api.skillmd.com/api/skills/pedroiff0/docx-analysis-conversion/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- License: MIT
- Author: pedroiff0 (https://skillmd.com/u/pedroiff0)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/pedroiff0/docx-analysis-conversion

---


# DOCX Analysis & Markdown Conversion

Extract structured content, metadata, and tables from Word (`.docx`) documents for AI processing and analysis.

## When to Use

- Analyzing business reports, contracts, or documentation provided in `.docx` format.
- Converting `.docx` to Markdown while maintaining headers and table structures.
- Generating new `.docx` files programmatically from Markdown source.

## Recommended Tools

```bash
# Convert DOCX to clean GitHub Flavored Markdown using pandoc
pandoc -f docx -t gfm input.docx -o output.md --extract-media=./media
```

