用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/notque/vexjoy-agent --skill markdown-converter命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | markdown-converter |
| description | Convert PDF, Office, HTML, data, media, ZIP to Markdown. |
| user_invocable | false |
| agent | python-general-engineer |
| allowed-tools | ["Bash","Read"] |
| routing | {"triggers":["convert to markdown","markitdown","extract text from PDF","PDF to markdown","docx to markdown","ingest document","read this PDF","read this document","extract text from document","convert PDF","convert document","pptx to markdown","xlsx to markdown"],"category":"research","pairs_with":["research-pipeline","enterprise-search"]} |
Convert a file to Markdown with markitdown, zero install:
uvx 'markitdown[all]' input.pdf -o output.md # to file
uvx 'markitdown[all]' input.docx # to stdout
cat blob | uvx 'markitdown[all]' -x .pdf # stdin, with extension hint
When uvx is missing, run pipx run 'markitdown[all]' … with the same arguments. First run downloads dependencies; later runs hit the cache. Output preserves headings, tables, lists, and links.
For video transcripts, use the video-transcript skill.
| Input | Notes |
|---|---|
| PDF, .docx, .pptx, .xlsx, .xls | Document structure preserved |
| HTML, CSV, JSON, XML | Structured Markdown |
| Images | EXIF metadata + OCR text |
| Audio | EXIF metadata + speech transcription |
| ZIP, EPub | Iterates contents, converts each |
| Flag | Effect |
|---|---|
-o FILE | Write output to FILE |
-x .EXT | Extension hint for stdin input |
-m MIME | MIME-type hint |
-c CHARSET | Charset hint, e.g. UTF-8 |
Cause: page is an image; the base extractor reads text layers only.
Solution: render pages to images (pdftoppm), then convert the images so OCR runs.