Convert PDF files to editable Word (.docx) format using MinerU.
> ⚠️ Token required. flash-extract does not support DOCX output. You must configure a token via mineru-open-api auth before using this skill.
>
> ⚠️ Output to file required. DOCX is a binary format and cannot be streamed to stdout — you must always specify -o .
npm install -g mineru-open-api
# or via Go (macOS/Linux):
go install github.com/opendatalab/MinerU-Ecosystem/cli/mineru-open-api@latest
Token required — create one at https://mineru.net/apiManage/token:
mineru-open-api auth # Interactive token setup
export MINERU_TOKEN="your-token" # Or via environment variable
# Convert PDF to DOCX (token required, -o is mandatory)
mineru-open-api extract report.pdf -f docx -o ./out/
# From URL
mineru-open-api extract https://example.com/report.pdf -f docx -o ./out/
# With language hint
mineru-open-api extract report.pdf -f docx --language en -o ./out/
# With VLM model for better layout accuracy (complex PDFs)
mineru-open-api extract report.pdf -f docx --model vlm -o ./out/
# Batch convert multiple PDFs
mineru-open-api extract *.pdf -f docx -o ./out/
-f docxmineru-open-api auth or MINERU_TOKEN env)-o is mandatory — DOCX cannot stream to stdout--language (default: ch, use en for English)--pages (e.g. 1-10)extract *.pdf -f docx -o ./out/flash-extract does NOT support DOCX output — always use extract with token-o flag is required--model vlm for PDFs with complex layouts, tables, or mixed content--model pipeline if you need guaranteed fidelity with no hallucination risk共 1 个版本