jervis-llm
v0.2.0
Published
Universal local LLM lifecycle CLI
Readme
jervis-llm
Universal local LLM lifecycle CLI.
Quick start
- Install dependencies:
npm install- Build the CLI:
npm run build- Run environment checks:
jervis-llm doctor
jervis-llm --doctor
jlm --doctor- Get recommendations and run-fit:
jervis-llm recommend --profile coding
jervis-llm can-run qwen2.5-coder:7b --provider ollama- Install, run, inspect running models, and stop:
jervis-llm install qwen2.5-coder:7b --provider ollama
jervis-llm run qwen2.5-coder:7b --provider ollama
jervis-llm running
jervis-llm stop qwen2.5-coder:7b --provider ollama
jervis-llm stop --all --provider ollamaGlobal install and usage
You can install the CLI globally and use it from anywhere:
npm install -g jervis-llm
# Full name
jervis-llm --doctor
jervis-llm recommend --profile coding
# Or with the short alias
jlm --doctor
jlm recommend --profile codingIf you are developing locally, use npm run dev -- ... as above.
Examples:
npm run dev -- doctor
npm run dev -- running
npm run dev -- stop --all --provider ollamaDocumentation site
- Start docs locally:
npm run docs:dev
- Build docs:
npm run docs:build
- Preview built docs:
npm run docs:preview
Docs source lives in docs/.
Common command patterns
# List installed models
jervis-llm models
# List currently running models
jervis-llm running
# Check if a specific model can run on this machine
jervis-llm can-run qwen3.6:27b --provider ollama
# Stop one running model or all running models
jervis-llm stop qwen3.6:27b --provider ollama
jervis-llm stop --all --provider ollamaDocumentation
Full documentation available at the Jervis LLM Docs:
License
MIT © Kerolos Zakaria
