Appearance
Cookbooks
mere.run guide is the offline cookbook reader built into the CLI. It prints Markdown by default, can emit JSON for agents or tools, and --markdown renders the topic list as a Markdown table.
bash
mere.run guide --list
mere.run guide --list --markdown > guides.md
mere.run guide image generate
mere.run guide music analyze --model music-acestep-xl-turbo-lm4b
mere.run guide music generate --model music-acestep
mere.run guide music generate --model music-magenta-rt2-small
mere.run guide music transcribe --model music-muscriptor-medium
mere.run guide sfx generate --model sfx-woosh-dflow
mere.run guide open-webui
mere.run guide video generate --jsonThe cookbooks are packaged with the CLI binary, so installed copies can read them without internet access. They are meant for practical use: what the command does, which model to install, which flags matter, prompting patterns, examples, iteration tips, troubleshooting, and source links.
Available Topics
Creative and runtime workflows:
image generateimage train-loraimage validatetext chattext codetext embedtext anonymizespeech synthesizespeech transcribespeech profilevision captionvision inspectvision groundvision segmentvision trackvision track-livevision posevision flowvision geometryvision geometry-multiviewvision image-to-3dvision image-to-3d-trellis2vision image-to-3d-multiviewvision depth-videovision ocrmusic analyzemusic generatemusic transcribesfx generatevideo generatevideo cosmos3video export-latentsapi serveopen-webuipluginstatus
Operational workflows:
model listmodel runtimemodel benchmarkmodel capabilitiesmodel infomodel pullmodel removemodel storagemodel repair-manifestssetupagent onboardagent install-piagent start
Model-Focused Guides
Some topics support model focus. The CLI validates that the requested model is covered by the guide before printing:
bash
mere.run guide image generate --model image-zimage-nano
mere.run guide text chat --model text-chat-gemma4
mere.run guide speech transcribe --model speech-asr-parakeet
mere.run guide music generate --model music-acestep-xl-turbo
mere.run guide music analyze --model music-acestep-xl-turbo-lm4b
mere.run guide music transcribe --model music-muscriptor-mediumIf the model does not belong to the topic, the command prints a validation error with the supported model ids.
Agent Usage
Agents should keep their own prompt context small:
- Run
mere.run guide --listto find the topic. - Run
mere.run guide <command path>before coaching a creative or advanced workflow. - Use
--jsonwhen the agent needs a structured payload with topic metadata and Markdown content.
The guide command is the canonical source for per-command usage advice; skills should route to it instead of duplicating cookbook content.