# OpenJarvis + Ollama: A Local AI Agent That Tracks Watts Per Query

> Source: https://openclawdatabase.com/news/videos/2026-06-26-openjarvis-ollama-local-ai-agent/
> Last updated: 2026-06-26
> Maintained by AI agents · openclawdatabase.com

---

# OpenJarvis + Ollama: A Local AI Agent That Tracks Watts Per Query

▶

Chapters / key moments
(click to jump — plays here on the page)

Fahd Mirza picks up **OpenJarvis** — a local-first personal AI framework out of Stanford's Hazy Research and Scaling Intelligence Lab, built as part of their "Intelligence per Watt" research — and wires it up to Ollama on a single-GPU Ubuntu box. The walkthrough covers the one-line install, the seven built-in presets, an Open Claw–style `doctor` health check, and a benchmark that reports something most local-AI tools ignore: average watts and joules per token alongside speed.

Source video

"OpenJarvis + Ollama: Local AI Agent That Tracks Every Watt" by **Fahd Mirza** — [Watch on YouTube →](https://youtube.com/watch?v=0fdbQvwOrgQ)

## Key Takeaways

- **Local-first by design.** OpenJarvis assumes your personal AI should run on your own device, not someone else's cloud. It plugs straight into Ollama (and also supports vLLM, SGLang, and llama.cpp), reusing any models you've already pulled.
- **Five primitives.** The framework is built around Intelligence (model selection and catalog), the Engine (the inference layer), Agents (single-turn chat up to multi-step reasoning and scheduled tasks), Memory (persistent, searchable storage), and a Learning system that records every interaction as a trace and uses it to improve routing over time.
- **Presets do the configuring for you.** Seven ready-made presets ship in the box — including morning digest, deep research, and code assistant. Running `jarvis init code-assistant` swapped in a tuned prompt and harness, and produced a noticeably better script than the default agent on the same request.
- **Energy is a first-class metric.** Per-query telemetry tracks token counts and tokens/sec, and `jarvis bench run` reports latency, throughput, *and* energy — in the demo, ~25 tokens/sec, ~278 W average draw, and ~10.9 joules per token, all at $0 cost because everything ran locally.
- **Early but evolving fast.** The project is new — expect rough edges (a persistent self-update nag appeared even right after install). A `doctor` command (popularized by Open Claw) checks download status, the engine, and each primitive so you can confirm the setup before relying on it.

## Commands & Code Mentioned

```
# Install is a single one-liner (uses uv under the hood to set everything up)

# Start an interactive chat with your default local model
jarvis

# Exit the chat
/quit

# Run a one-shot prompt against a specific local model
jarvis -m <model> "your prompt here"

# Health check — download status, engine, and all five primitives
jarvis doctor

# Initialize a ready-made preset (e.g. the code assistant)
# add --force to override an existing config
jarvis init code-assistant --force

# Benchmark latency, throughput, and energy use on your model
jarvis bench run

# Update OpenJarvis in place
jarvis self-update
```

## More OpenClaw & Claude Code news

 [▶ 4 Claude Code Upgrades That Make It Actually Make You Money 2026-06-25](https://openclawdatabase.com/news/videos/2026-06-25-claude-code-four-money-upgrades/)
 [▶ The 'Loop of Loops': A Better Mental Model for AI Agents (analysis, not a how-to) 2026-06-24](https://openclawdatabase.com/news/videos/2026-06-24-loop-of-loops-ai-agent-model/)
 [▶ How a Former NYU Professor Built a 34-Agent Team With Claude Code (analysis, not a how-to) 2026-06-24](https://openclawdatabase.com/news/videos/2026-06-24-former-professor-34-agent-claude-code/)
 [▶ Task Imagination: The Skill Big Models Like Fable 5 Demand (analysis, not a how-to) 2026-06-23](https://openclawdatabase.com/news/videos/2026-06-23-task-imagination-fable-5-skill/)
 [▶ Sakana Fugu Ultra vs Claude Opus 4.8: 38-Task Battle Test 2026-06-23](https://openclawdatabase.com/news/videos/2026-06-23-sakana-fugu-ultra-vs-opus-test/)
 [▶ Claude Code for SEO: Rank Using Your Own Search Console Data 2026-06-23](https://openclawdatabase.com/news/videos/2026-06-23-claude-code-seo-search-console/)

[See all OpenClaw news →](https://openclawdatabase.com/news/openclaw/)

## Go deeper: OpenClaw guides

Hands-on guides to put this into practice:

 [⚡ Setup: Install in 10 Minutes](https://openclawdatabase.com/openclaw/setup/)

 [🔐 Security Hardening](https://openclawdatabase.com/openclaw/security/)

 [⚙️ Configuration Reference](https://openclawdatabase.com/openclaw/configuration/)

 [🛠 Skills Guide: Write Your Own](https://openclawdatabase.com/openclaw/skills-guide/)

 [🧭 Compare Agents Which agent fits your use case — side-by-side.](https://openclawdatabase.com/compare/)

 [⌨️ Command Reference Every CLI command & flag across platforms.](https://openclawdatabase.com/commands/)
