一键导入
read-document
Convert any document to markdown using Canonizr
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert any document to markdown using Canonizr
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | read-document |
| description | Convert any document to markdown using Canonizr |
Read any document using the Canonizr pipeline. Supports PDFs, images, office files, and more.
Convert a document to markdown:
canonizr convert document.pdf
This writes the markdown to document.pdf.md and prints a job summary (JSON) to stdout. If the output file already exists, the conversion is skipped — so it's safe to run repeatedly.
To overwrite an existing output:
canonizr convert document.pdf -f
To get the markdown directly to stdout (for piping):
canonizr convert document.pdf -o -
The job JSON includes a completeness field ("full" or "partial") and a warnings array describing any issues (e.g. images that could not be captioned).
Check if the Canonizr pipeline is running:
canonizr health
If the pipeline is not running then your user may not have started it. If you have docker permissions then you can start the service with:
canonizr up
And stop it with:
canonizr down