QVAC33 downloadsChat with your vault, fully local. Semantic search and cited answers via a local QVAC companion. Nothing leaves your machine.
Chat with your vault, fully local. An Obsidian plugin that runs AI entirely on your machine: semantic search, cited answers, missing-link suggestions, inline writing commands, OCR over your images, and an optional model fine-tuned on your own notes. Nothing leaves your computer.
It runs entirely on your machine, and can even fine-tune a small model on your vault so the assistant learns your knowledge and your writing style. Your notes never become someone else's training data.
A single panel with four tabs: Chat . AI Search . Connect . Train.
| Chat | Ask questions, get answers grounded in your notes with clickable citations. |
| AI Search | Find notes by meaning, not keywords (Obsidian's built-in search is keyword-only). |
| Connect | Finds notes that belong together but are not linked yet, lets an LLM judge which deserve a real link, and writes the [[wikilink]] for you (per-note while you read, or a whole-vault scan). Turns a pile of notes into a graph. |
| Train (optional) | Fine-tune a small model on your notes so chat answers from memory and in your voice. Runs on your machine; the plugin is fully usable without it. |
Plus: inline writing commands (summarize / rewrite / fix grammar / expand, with review-before-apply) and opt-in OCR so the text inside your screenshots becomes searchable.
This plugin is a thin client. The AI runs in a separate QVAC companion process on your computer, and the plugin talks to it over 127.0.0.1 (localhost) only. Same shape as plugins that use a local Ollama server.
Disclosures (please read):
~/.qvac-obsidian/ so it can connect securely to the local server. The companion stores its index and models under ~/.qvac-obsidian/ and ~/.qvac/.The companion is a small local daemon that runs @qvac/sdk (Apache-2.0), the local AI engine from Tether's QVAC. One daemon serves all your vaults. Its source is in companion/.
Run it (any desktop OS with Node 20+):
npx qvac-obsidian-companion
That starts the daemon and writes its connection token to ~/.qvac-obsidian/; the plugin connects automatically. Leave it running while you use Obsidian; quit it (Ctrl+C) to go offline.
Prefer a global install, or running from source:
npm install -g qvac-obsidian-companion && qvac-obsidian-companion # global
cd companion && npm install && node server.js # from a clone of this repo
100% local. No vault content, queries, or telemetry are sent anywhere. Open source, no obfuscation, no analytics, no account. Your notes are yours. The whole point of this plugin is that your second brain never becomes someone else's training data.
The plugin source is at the repo root (src/, manifest.json, styles.css); the companion is in companion/; dev helpers and demo vaults are in dev/.
npm install && npm run build # builds main.js
npm test # plugin unit tests
./dev/run-dev.sh "/path/to/Vault" # build + install into a vault + start the companion
MIT (plugin). The companion depends on @qvac/sdk (Apache-2.0).