agentsclimarketplace

Markdown converter

Skill notque/vexjoy-agent/skills/research/markdown-converter

Convert PDF, Office, HTML, data, media, ZIP to Markdown.From its SKILL.md

Install
npx -y skills add notque/vexjoy-agent --skill markdown-converter

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.9 KB, 340 tokens by cl100k_base, as published. Nobody here has run it

Markdown Converter

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.

Formats

InputNotes
PDF, .docx, .pptx, .xlsx, .xlsDocument structure preserved
HTML, CSV, JSON, XMLStructured Markdown
ImagesEXIF metadata + OCR text
AudioEXIF metadata + speech transcription
ZIP, EPubIterates contents, converts each

Options

FlagEffect
-o FILEWrite output to FILE
-x .EXTExtension hint for stdin input
-m MIMEMIME-type hint
-c CHARSETCharset hint, e.g. UTF-8

Error handling

Garbled or empty text from a scanned PDF

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.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.