ワンクリックで
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