Install
openclaw skills install pptx-analysisAnalyze the structure and content of PowerPoint (.pptx) presentations using MinerU. Returns structured Markdown with slide content, headings, and layout preserved. Features: structural analysis of PPTX files. Quick analysis (flash-extract) without token. Full analysis with token for detailed inspection. Identifies slide structure, text blocks, and content hierarchy. Use when you need to: analyze a PowerPoint presentation, understand slide structure, inspect .pptx content and layout, get an overview of a presentation. Use when asked: 'how do I analyze this PowerPoint', 'what is inside this pptx', 'I want to understand these slides', 'can my agent analyze PowerPoint files', 'break down this presentation for me'. Built on MinerU by OpenDataLab (Shanghai AI Lab), an open-source document intelligence engine. Ideal for content reviewers, presentation auditors, and automated quality checks on slide decks.
openclaw skills install pptx-analysisAnalyze and extract structured content from PowerPoint (.pptx) presentations using MinerU. Returns Markdown with slide content and layout preserved.
npm install -g mineru-open-api
# or via Go (macOS/Linux):
go install github.com/opendatalab/MinerU-Ecosystem/cli/mineru-open-api@latest
# Quick analysis, no token required
mineru-open-api flash-extract slides.pptx
# Save to directory
mineru-open-api flash-extract slides.pptx -o ./out/
# Full analysis with token (tables, formulas, multi-format)
mineru-open-api extract slides.pptx -o ./out/
# With language hint
mineru-open-api flash-extract slides.pptx --language en
No token needed for flash-extract. Token required for extract:
mineru-open-api auth # Interactive token setup
export MINERU_TOKEN="your-token" # Or via environment variable
Create token at: https://mineru.net/apiManage/token
flash-extract: quick, no token, max 10 MB / 20 pages, Markdown output onlyextract: token required, full features (tables, formulas, multi-format output)--language (default: ch, use en for English).ppt (legacy format), use ppt-extract skill instead-o <dir> to save to a file or directory