Convert In Bulk Using The CLI

Model Ready can recursively turn a folder of supported files into Markdown without uploading the folder anywhere. It leaves every source file alone and creates a separate mirrored Markdown folder beside it.

Download the Model Ready CLI

STEP / 01

Set up the CLI once

Open PowerShell, then create a private Python environment and install the download.

py -3.12 -m venv model-ready-cli
.\model-ready-cli\Scripts\python.exe -m pip install "https://mark-it-down-five.vercel.app/downloads/mark_it_down_core-0.1.0-py3-none-any.whl"

STEP / 02

Point it at a folder

Replace the example path with the folder you want to convert.

.\model-ready-cli\Scripts\mark-it-down.exe folder "C:\Users\you\Documents\Client Files"

STEP / 03

Find the Markdown folder

Model Ready preserves the folder structure and writes the results next to the original.

Client FilesClient Files Markdown

WHY IN BULK

  • Let's say you have a bunch of reports and sources as PDFs
  • Instead of letting your LLM waste tokens parsing all of them
  • Convert them all to Markdown first
  • Then give that source to your LLM

USEFUL OPTIONS

--output-dir "D:\\Markdown" puts the mirrored output somewhere specific.

--overwrite explicitly replaces Markdown outputs from an earlier run.

--allow-large raises local size limits for unusually large files while keeping safety checks on.