Skip to main content

vault-ask

CI License: MIT Python 3.9+ Zero dependencies

Ask your Obsidian vault with fail-closed citation validation.

A small, dependency-free question-answering tool over a folder of Markdown notes. It finds relevant notes, asks your LLM to answer only from those excerpts, and fails closed unless the output contains an exact [[wikilink]] copied from the selected source set.

$ vault-ask "what did I decide about the pricing model?"
Q: what did I decide about the pricing model?

Flat 49 EUR/month, no per-seat pricing, decided after the churn analysis.
[[Decisions/2026-Pricing|2026-Pricing]]

Notes consulted:
- [[Decisions/2026-Pricing|2026-Pricing]]
- [[Meetings/2026-01-pricing-review|2026-01-pricing-review]]

When the model emits the fixed refusal, returns no citation, or cites an unselected note, the validator returns the canonical refusal instead:

$ vault-ask "what is my bank account number?"
Q: what is my bank account number?

No note in the vault answers this question.

Why

A second brain is only useful if knowledge comes back out. Many "chat with your notes" tools require a vector database and an indexing pipeline. vault-ask instead uses no index or database: it runs ripgrep over your vault, ranks notes by term rarity, and hands focused excerpts to whatever LLM you already use.

How it works

  1. Candidate searchripgrep scans the whole vault in milliseconds.
  2. IDF ranking — notes are scored by the rarity of the query terms they contain, so a rare, specific word (a project codename) outweighs a word that appears in hundreds of notes. No embeddings, no index, no warm-up.
  3. Focused excerpts — only the headings and matching lines of the top notes are sent to the model (notes can be long).
  4. Constrained prompt — the model is instructed to cite its claims, avoid outside knowledge, and emit a fixed refusal when evidence is insufficient.
  5. Fail-closed output check — a non-refusal answer is accepted only when it contains at least one exact citation from the selected notes. Unknown or missing citations produce the fixed refusal.

This is a mechanical provenance check, not semantic entailment verification. A valid citation proves which selected note was referenced; it does not prove that the note supports every sentence in the answer.

In JSON output, the backward-compatible grounded field now means that exact selected-source citation validation passed. It does not mean semantic entailment was evaluated. Arbitrary paraphrases of refusal cannot be detected mechanically when they also contain a valid selected-source citation.

Nothing leaves your machine except what your own LLM command chooses to send.

Install

Requires Python 3.9+ and ripgrep (rg) on your PATH.

# pip (installs the `vault-ask` command)
pip install git+https://github.com/guillaumevele/vault-ask.git

Or run it as a single file, no install:

git clone https://github.com/guillaumevele/vault-ask.git
cd vault-ask
python3 vault_ask.py "your question"

No dependencies beyond the Python standard library and ripgrep.

Configure your LLM

vault-ask shells out to whatever LLM command you set in VAULT_ASK_LLM. The prompt is piped on stdin by default, or substituted for {prompt} if the command contains that placeholder.

# Local model via Ollama (prompt on stdin):
export VAULT_ASK_LLM='ollama run llama3.1'

# Simon Willison's `llm` CLI (any provider it supports):
export VAULT_ASK_LLM='llm -m gpt-4o-mini'

# A CLI that takes the prompt as an argument — use the {prompt} placeholder:
export VAULT_ASK_LLM='your-llm-cli --prompt {prompt}'

Point it at your vault once:

export OBSIDIAN_VAULT="$HOME/Obsidian/MyVault"

Usage

vault-ask "what did I decide about X?"
vault-ask --vault ~/notes "when is the contract renewal?"
vault-ask --limit 8 --json "summarize my pricing decisions"

No LLM? Use --sources-only to just rank the most relevant notes — a smart grep for your vault that needs no model at all:

vault-ask --sources-only "pricing model"
# Most relevant notes for: pricing model
# - [[Decisions/2026-pricing|2026-pricing]]
# - [[Meetings/2026-01-pricing-review|2026-01-pricing-review]]
Flag Default Description
--vault $OBSIDIAN_VAULT or . path to the vault
--limit 5 max notes to consult
--llm $VAULT_ASK_LLM LLM command (overrides env)
--sources-only off rank relevant notes, no LLM call
--json off raw structured output
--version print version

What it's good at — and what it isn't

Good at: factual lookups where the words of your question point at a note — decisions, numbers, names, "what did I say about …" — with selected-source citation validation and explicit abstention states.

Not good at: abstract questions whose vocabulary differs from your notes (you ask "my funding strategy", the note says "tax credit"). Keyword retrieval can miss semantically related notes, and an allowed citation can still accompany an unsupported claim. Semantic recall and entailment verification are outside this zero-dependency tool's current scope.

Tests

python3 -m unittest discover -s tests

Related

voice-to-vault is the other half of the loop: it routes your voice captures into the Obsidian vault that vault-ask then answers questions about. One files your thoughts, the other brings them back.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vault_ask-0.2.0.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vault_ask-0.2.0-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file vault_ask-0.2.0.tar.gz.

File metadata

  • Download URL: vault_ask-0.2.0.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for vault_ask-0.2.0.tar.gz
Algorithm Hash digest
SHA256 be96e35680bc5c96f7b386ea12fb434411676a9a8f3c77a5010ecc1acc01d2df
MD5 1ab80ac679cdb8a0e526e49ca3b37240
BLAKE2b-256 bee4cf3d5324d44cf9add98ff98b45f6aa6b03a8c900686cff19996efdbdf3cc

See more details on using hashes here.

File details

Details for the file vault_ask-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: vault_ask-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for vault_ask-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 86c6db9eb9a30862edbb291e7c9a46e6b45de5bc80940d3feda57926b0325138
MD5 1bf19e456ecd8e12090c224c7c75f093
BLAKE2b-256 482501ed6b584dbdb74822891e91c95189f87e9760738ab3402da89b28dd5439

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page