Melious
CLI

Image generation

Turn a prompt into a file on disk — and, on a capable terminal, an image drawn inline right after the command.

melious image "a sunset over the Swiss Alps, oil painting style"

Files land in the current directory as melious-{timestamp}.{ext}. On a supported terminal (Kitty, iTerm2, Windows Terminal with Sixel) the image also renders inline. Everywhere else, you get the path.

Flags

FlagTypeDefaultDescription
--modelstringflux-1-schnellImage model
--sizestring1024x1024Dimensions, e.g. 1792x1024
--qualitystringstandardstandard or hd
--stylestringvividvivid or natural
-n, --countint1How many images to generate
-o, --outputstring.Output directory (created if missing)
--seedintSeed for reproducibility
--stepsintInference steps (model-dependent)
--guidancefloatGuidance scale (model-dependent)
--negativestringNegative prompt

Examples

A batch of four:

melious image -n 4 "cyberpunk cityscape at night"

Drop renders into a folder:

melious image -o ./renders "abstract geometric patterns"

HD with a specific model:

melious image --model flux-1-dev --quality hd "portrait of a cat reading a book"

Reproduce a specific result:

melious image --seed 42 "minimalist logo design"

Squeeze more control out of the sampler:

melious image --steps 50 --guidance 7.5 --negative "blurry, low quality" "a serene mountain lake"

Inline preview

TerminalProtocol
KittyKitty graphics
iTerm2iTerm2 inline images
Windows TerminalSixel (if enabled)

If we can't detect a supported protocol, we save the file and print the path. That's the one case where the CLI goes quiet — the image still exists, we're not drawing it for you.

Machine-readable output

--json returns metadata (model, dimensions, paths) without the image bytes — useful when you're calling melious image from a script and only want to know where the files ended up:

melious image --json "a red circle"

On this page