Install
$ agentstack add skill-phanghonghao-thu-awesome-skills-any2md ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
any2md — Universal Document to Markdown
Automatically routes to the best backend based on file format and content:
| Format | Backend | Why | |--------|---------|-----| | DOCX with math | /word2md | Correct OMML→LaTeX, no escaping bugs | | DOCX no math | markitdown | General-purpose conversion | | PDF | markitdown | Table-aware extraction | | PDF (high fidelity) | PyMuPDF | --pdf-backend pymupdf | | PPTX / XLSX / HTML / EPUB / etc | markitdown | Broad format support |
When to Use
- User mentions: "any2md", "/any2md", "convert to md", "转 markdown", "万能转 md"
- User has a document of unknown type and wants Markdown output
- User wants one command that handles any format
How to Use
PYTHONIOENCODING=utf-8 python ~/.claude/skills/any2md/any2md.py "" [""]
Arguments
| Arg | Required | Description | |-----|----------|-------------| | input | Yes | Input file path | | output | No | Output .md path (default: stdout) | | --math | No | auto (default) / yes / no — math detection | | --pdf-backend | No | markitdown (default) / pymupdf |
Examples
# Auto-detect format, print to stdout
PYTHONIOENCODING=utf-8 python ~/.claude/skills/any2md/any2md.py "document.docx"
# Convert and save
PYTHONIOENCODING=utf-8 python ~/.claude/skills/any2md/any2md.py "slides.pptx" "slides.md"
# Force math mode for DOCX
PYTHONIOENCODING=utf-8 python ~/.claude/skills/any2md/any2md.py "report.docx" "report.md" --math yes
# PDF with PyMuPDF (high fidelity, no tables)
PYTHONIOENCODING=utf-8 python ~/.claude/skills/any2md/any2md.py "paper.pdf" "paper.md" --pdf-backend pymupdf
Key Features
- Auto math detection: Scans DOCX for
oMathelements; routes toword2mdif found - Math escaping fix: Post-processes markitdown output to fix
\_→_inside$...$ - Image extraction: DOCX with math → word2md extracts images to
images/folder - PDF backends: Choose between table-aware (markitdown) or high-fidelity text (PyMuPDF)
Dependencies
markitdown—pip install markitdownpython-docx— for word2md backend (auto-detected)PyMuPDF(optional) — for--pdf-backend pymupdf
Rules
- Always use
PYTHONIOENCODING=utf-8on Windows - For DOCX with math, this skill auto-routes to word2md — no need to call
/word2mdseparately - For pure PDF reading (no conversion needed), prefer
/pdf-readerwhich has 3 extraction modes - For DOCX to HTML (not Markdown), use
/word2htmlinstead
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: phanghonghao
- Source: phanghonghao/THU-Awesome-Skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.