원클릭으로
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