/install doc2mdyc
Doc2md
Overview
This skill provides a packaged doc2md CLI for converting local PDF, DOCX, and PPTX files into Markdown through the doc2md platform API.
Use this skill when the user needs a ready-to-run command-line workflow instead of writing custom conversion code.
Bundled Files
- Windows binary:
scripts/doc2md-cli.exe - Linux binary:
scripts/doc2md-cli
Both binaries are statically linked and do not require an extra runtime.
Prerequisites
- A valid doc2md bearer token
- Network access to the doc2md API service
- Input files in PDF, DOCX, or PPTX format
Configuration can be provided with either:
- Environment variables:
DOC2MD_API_BASE_URL,DOC2MD_BEARER_TOKEN - Config file:
~/.doc2md/config.json
Environment variables take precedence over the config file.
Usage
Windows PowerShell
$env:DOC2MD_BEARER_TOKEN = 'your-jwt'
$env:DOC2MD_API_BASE_URL = 'http://192.168.99.85:5173'
.\scripts\doc2md-cli.exe -output-dir .\converted .\document.pdf
Linux
export DOC2MD_BEARER_TOKEN='your-jwt'
export DOC2MD_API_BASE_URL='http://192.168.99.85:5173'
./scripts/doc2md-cli -output-dir ./converted ./document.pdf
Common Commands
# Convert one folder recursively
./scripts/doc2md-cli -output-dir ./converted ./docs/
# Convert multiple inputs in parallel
./scripts/doc2md-cli -output-dir ./converted -concurrency 4 ./doc1.pdf ./doc2.docx ./folder/
Flags
| Flag | Default | Description |
|---|---|---|
-output-dir |
required | Directory that receives extracted results |
-converter |
mineru |
Backend converter: mineru or marker |
-recursive |
true |
Scan directories recursively |
-keep-zip |
false |
Keep result_clean.zip after extraction |
-overwrite |
true |
Overwrite existing output directories |
-concurrency |
1 |
Number of files processed in parallel |
-poll-interval |
5s |
Job polling interval |
-job-timeout |
24h |
Per-file timeout |
-http-timeout |
2m |
Per-request HTTP timeout |
Output Behavior
- Each input document is written to its own subdirectory under
-output-dir - The CLI prints timestamped progress and per-file status to stdout
Ctrl+Ccancels remaining work gracefully- The process exits non-zero when any conversion fails
Config File Example
{
"apiBaseUrl": "http://192.168.99.85:5173",
"bearerToken": "your-jwt"
}
Save this file as ~/.doc2md/config.json when environment variables are not convenient.
Troubleshooting
- Authentication failure: verify
DOC2MD_BEARER_TOKEN - Connection failure: verify
DOC2MD_API_BASE_URLand service reachability - Empty output directory: confirm the input file type is supported and the API job completed successfully
- Existing output overwritten unexpectedly: pass a safer output directory or adjust
-overwrite
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install doc2mdyc - After installation, invoke the skill by name or use
/doc2mdyc - Provide required inputs per the skill's parameter spec and get structured output
What is Doc2md?
Use when the user wants to convert local PDF, DOCX, or PPTX files into Markdown with the packaged doc2md CLI, especially for batch conversion, recursive fold... It is an AI Agent Skill for Claude Code / OpenClaw, with 39 downloads so far.
How do I install Doc2md?
Run "/install doc2mdyc" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Doc2md free?
Yes, Doc2md is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Doc2md support?
Doc2md is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Doc2md?
It is built and maintained by Yance (@yance-dev); the current version is v1.0.0.