Skip to main content

vouch

Git-native, review-gated knowledge base for LLM agents. MCP server + JSONL tool server + CLI.

vouch — sessions auto-capture into a review-gated knowledge base: propose or capture → review → commit → retrieve

CI PyPI Python versions MIT licensed Follow @vouch_dev on X Gittensor impact

Agents should not start every session with amnesia — but they shouldn't get to write whatever they want either.

vouch gives LLM agents durable memory with an explicit review gate: sessions capture themselves, agents propose writes, and nothing becomes durable knowledge until you approve it. Approved artifacts are plain files under .vouch/ — YAML claims, markdown pages — so the KB lives in your repo, is reviewed like code, diffs cleanly, and travels with git clone.

The destination is the one Andrej Karpathy's llm-wiki idea file sketches: stop using LLMs as search engines that rediscover your documents on every question — use them as tireless knowledge engineers that compile, cross-reference, and maintain a living wiki, while humans curate and think. vouch is that idea with the write path made trustworthy. vouch compile has an LLM draft the topic pages, but every page cites approved claims, every [claim: …] citation is machine-verified before the draft is filed, and the drafts pass through the same review gate as every other write. The LLM compiles; the human approves; the wiki compounds.

Watch it work (110 seconds)

vouch demo — capture, summarize, approve, compile, recall

capture → summarize → approve → compile → recall. Captured live from the review console, no mockups — the preview above is muted and 3× speed; the full cut is ▶ docs/vouch-how-it-works.mp4. A Claude Code session captures itself, an LLM summarizes what the session meant, a human approves it at the gate, vouch compile distills the approved claims into cited topic pages (every [claim: …] citation machine-verified, still gated), and the film closes on real vouch recall output — the wiki the video just built, injected into the next session's first turn.

Everything below exists to reproduce that loop on your own project.

Install

# one-liner (Linux + macOS) — picks a Python, ensures pipx, installs vouch-kb
curl -fsSL https://raw.githubusercontent.com/vouchdev/vouch/main/install.sh | sh

# …or directly via pipx (vouch-kb on PyPI; the command stays `vouch`)
pipx install vouch-kb

The one-liner is POSIX sh and never needs sudo — inspect install.sh first if you'd like. Prefer containers? The released image runs the same CLI and MCP server (ghcr.io/vouchdev/vouch):

docker run -i --rm -v "$PWD:/data" ghcr.io/vouchdev/vouch:latest          # stdio MCP server
docker run --rm -v "$PWD:/data" ghcr.io/vouchdev/vouch:latest status      # any CLI command

Reproduce the loop on your project

1. Set up the KB and wire Claude Code (one-time, per repo):

cd /path/to/your/project
vouch init
vouch install-mcp claude-code

init creates .vouch/ with a starter config; install-mcp writes .mcp.json (the kb.* MCP tools), the /vouch-* slash commands, and three hooks — PostToolUse capture, SessionEnd rollup, SessionStart recall. Restart Claude Code so they load.

2. Point compile at an LLM — the only step that needs a model. In .vouch/config.yaml:

compile:
  llm_cmd: "claude -p --model sonnet"

3. Work a session — it captures itself. Use Claude Code normally. Each tool call is harvested into a gitignored scratch buffer, and at session end the buffer rolls up — mechanically, no LLM — into one pending session-summary page. Never auto-approved: the next session greets you with

🔔 1 auto-captured session summary(ies) awaiting review — run `vouch review`.

4. Approve at the gate.

vouch review                    # walk pending proposals one at a time

The browser console in the video is the vouch webapp — chat, review, pending queue, claims, and stats over a running KB. Connect it in two commands:

vouch serve --transport http    # serves the kb.* surface on 127.0.0.1:8731
# then, in a clone of the vouch webapp:
npm install && npm run dev      # opens http://localhost:5173 — point the
                                # connect dialog at http://127.0.0.1:8731

Lighter alternatives ship with vouch itself: vouch review-ui (a built-in browser queue; pipx install 'vouch-kb[web]' for the extra), or piecemeal vouch pending, vouch show <id>, vouch approve <id>, vouch reject <id> --reason "…".

5. Compile the wiki.

vouch compile                   # LLM drafts cited topic pages from approved claims
vouch review                    # drafts land in the same gate — approve the keepers

Every [claim: …] marker and [[wikilink]] in a draft is verified mechanically against the store; drafts whose citations don't hold are dropped before they reach you. See docs/compile.md.

6. Start the next session — it already knows. The SessionStart hook runs vouch recall, injecting every approved claim and page title into the first turn, so the session starts from your reviewed knowledge instead of re-discovering it.

Detection is Claude Code's hook contract: whatever a SessionStart hook prints becomes context in the session's opening turn. vouch recall prints the digest the video closes on — claims with their full text, pages by id and title:

<vouch-approved-knowledge>
# approved KB knowledge for this repo — 2 claim(s), 1 page(s). reviewed,
# cited, durable. use kb_read_page / kb_search for detail; kb_propose_*
# (human-approved) to add more.

## claims
- [auth-uses-jwt] Auth uses JWT tokens — decision from the design note.
- [vouch-starter-reviewed-knowledge] Vouch stores reviewed, cited knowledge
  in the repository so future agent sessions can retrieve agreed project
  context.

## pages
- [edit-in-obsidian] Edit in Obsidian
</vouch-approved-knowledge>

Only approved artifacts are ever emitted — archived, superseded, and still-pending items are excluded — and the digest is size-guarded (recall.max_chars) with an explicit truncation notice.

How the approved pages actually get used from there: recall carries the titles, and the session pulls full content on demand through the kb.* MCP tools — kb_search matches page bodies, kb_read_page returns a page's markdown plus the claims it cites, and kb_context bundles the most relevant claims and pages for a stated task. To pull a topic in explicitly, use the /vouch-recall <topic> slash command, or just ask Claude to check the KB. One thing to know: pages still sitting in vouch review are invisible to all of this — the gate applies to retrieval too, so a compiled page only starts informing sessions once you approve it.

7. Commit the knowledge with the code.

git add .vouch/ && git commit -m "kb: approve session summary"

Pending drafts (proposed/) and the derived search index (state.db) are gitignored — what lands in history is exactly what passed review.

The rules underneath

  • Writes require approval. Agents file proposals via the kb.* MCP tools (or vouch serve --transport jsonl); approval is the only path to a durable artifact, and the approver must differ from the proposer unless you opt out.
  • Claims must cite sources. A claim without evidence is a validation error, not a warning. Sources are content-hashed; the same evidence registered twice de-duplicates.
  • History is append-only. Every mutation lands in a committed audit log — who proposed, who approved, citing what, when.

Going further

  • docs/example-session.md — the full capture→approve→recall walkthrough with real output
  • docs/getting-started.md — the agent-side flow
  • SPEC.md — the protocol contract (object model, JSONL envelopes, trust metadata)
  • vouch --help / vouch capabilities — the full CLI and machine-readable method surface
  • vouch install-mcp <host> also wires cursor, codex, zed, windsurf, openclaw and friends (adapters/)
  • vouch webapp — the chat-first browser console from the video; vouch-desktop wraps the same loop as a desktop app
  • CONTRIBUTING.md — development setup and the test gate

License

MIT.

Download files

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

Source Distribution

vouch_kb-1.2.2.tar.gz (11.8 MB view details)

Uploaded Source

Built Distribution

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

vouch_kb-1.2.2-py3-none-any.whl (400.0 kB view details)

Uploaded Python 3

File details

Details for the file vouch_kb-1.2.2.tar.gz.

File metadata

  • Download URL: vouch_kb-1.2.2.tar.gz
  • Upload date:
  • Size: 11.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vouch_kb-1.2.2.tar.gz
Algorithm Hash digest
SHA256 49b20ae3a7b0fd1b9eee4933e55a72e5b85cbd5307d5d55d31bf7774150fd626
MD5 6dfb685199750dd3902d8029b28e5320
BLAKE2b-256 eda28a4864530f6bb9e6a56039162dea770ada08d9d3029924bdfe510e21e5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vouch_kb-1.2.2.tar.gz:

Publisher: release.yml on vouchdev/vouch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vouch_kb-1.2.2-py3-none-any.whl.

File metadata

  • Download URL: vouch_kb-1.2.2-py3-none-any.whl
  • Upload date:
  • Size: 400.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vouch_kb-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 303620e4dfaf08770293bf525d28860c4129d8c47ca9e4a25f15b38beec258b7
MD5 8b26f5b23944c6933fe8b2c64e3bbefd
BLAKE2b-256 22bb3c9534ea31b881cc3c27f514f7078fb6f166f11d2d650e4447296d6ba344

See more details on using hashes here.

Provenance

The following attestation bundles were made for vouch_kb-1.2.2-py3-none-any.whl:

Publisher: release.yml on vouchdev/vouch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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