gguf-runner: a minimal GGUF CLI
My personal blog [Unofficial]
February 17, 2026
I’ve been playing with local LLMs again.
Not in the “let’s build a platform” way. More in the “I want a tiny tool I can keep in ~/bin and forget about” way.
So I built gguf-runner : a small Rust CLI to run GGUF models locally, CPU-only , with a focus on low memory overhead and a clean “pipes and scripts” workflow.
Repo: https://github.com/apimeister/gguf-runner
Memory first: GGUF + mmap
The core idea behind gguf-runner is simple:
Discussion in the ATmosphere