Hardens Sanhedrin Receipt Lock for model-agnostic use, adds fail-open telemetry and receipt docs, fixes smart_ingest batch safety, wires opt-in CUDA Qwen3 device selection, and refreshes dashboard/release assets.\n\nFixes #54\nFixes #58\nFixes #60\nRefs #59
13 KiB
Cognitive Sandwich
Vestige's defense-in-depth safety architecture for Claude Code.
The default Cognitive Sandwich installer only stages files and removes old v2.1.0 hook wiring. It activates no Claude Code hooks and makes no automatic model calls. Both the preflight layer and the Stop-hook layer are explicit opt-ins:
┌────────────────────────────────────────────────┐
│ 🥪 TOP BREAD — UserPromptSubmit hooks │
│ • Vestige memory graph injection │
│ • CWD / git / CI state injection │
│ • Synthesis-protocol gate (decision-adjacent) │
│ • Lateral-thinker subconscious swarm │
│ • Pulse daemon (background dream insights) │
├────────────────────────────────────────────────┤
│ 🥩 MEAT — Claude Code reasons │
├────────────────────────────────────────────────┤
│ 🥪 OPTIONAL BOTTOM BREAD — Stop hooks │
│ • Veto-detector / synthesis validator │
│ • Sanhedrin Executioner verifier │
└────────────────────────────────────────────────┘
Sanhedrin, preflight, and all Vestige Claude Code hooks are optional. The default installer wires none of them; it does not call Claude, start MLX, require a 19 GB model download, or require 20+ GB of RAM. Users who want preflight context can opt in with --enable-preflight. Users who want the post-response verifier can opt in with --enable-sanhedrin and point it at any OpenAI-compatible /v1/chat/completions endpoint and model name. Sanhedrin is model-agnostic: if no verifier model is configured, it fails open and records guidance instead of guessing a large model. On Apple Silicon, an additional --with-launchd flag can auto-start the local MLX Qwen backend.
How a single response flows through the Sandwich
- You type a prompt in Claude Code.
- If explicitly enabled, UserPromptSubmit hooks fire in parallel (none can block — all fail-open):
load-all-memory.sh(opt-in) — dumps every memory MD into contextsynthesis-preflight.sh— POSTs your prompt tovestige-mcp/api/deep_reference, injects the trust-scored reasoning chaincwd-state-injector.sh— captures git status, branch, open PRs/issues, modified filesvestige-pulse-daemon.sh— injects fresh Vestige dream insights from the past 20 min into the next prompt contextpreflight-swarm.sh— spawns thelateral-thinkersubagent in fresh context to surface cross-disciplinary structural parallels
- Claude reads the assembled context and generates a draft.
- By default, no Vestige Stop hooks are installed. If explicitly enabled, Stop hooks fire serially (any can VETO with
exit 2, forcing a rewrite):veto-detector.sh— fast regex againstveto-tagged Vestige memories (~50ms)sanhedrin.sh→sanhedrin-local.py— optional Sanhedrin verifiersynthesis-stop-validator.sh— regex against forbidden patterns (hedging, summary-instead-of-composition)
- If all enabled Stop hooks return
exit 0, the response is delivered.
The Sanhedrin Executioner protocol
Sanhedrin has two execution modes:
- Legacy mode (
VESTIGE_SANHEDRIN_CLAIM_MODE=0) keeps the original broad draft-level semantic check for technical-looking responses. - Claim mode (
VESTIGE_SANHEDRIN_CLAIM_MODE=1) extracts check-worthy claims, retrieves Vestige evidence per claim, and aggregates structured verdicts before the Stop hook allows delivery.
The claim-mode Executioner extracts atomic claims from Claude's draft across these classes:
TECHNICAL · BIOGRAPHICAL · FINANCIAL · ACHIEVEMENT · TIMELINE · QUANTITATIVE · ATTRIBUTION · CAUSAL · COMPARATIVE · EXISTENTIAL · plus v2.1.0 additions: VAGUE-QUANTIFIER · UNVERIFIED-POSITIVE
For each check-worthy claim, claim mode calls Vestige's /api/deep_reference and judges the claim against high-trust durable evidence plus any optional staged evidence overlay. Decision rules:
| Class | Rule |
|---|---|
| TECHNICAL / EXISTENTIAL / CAUSAL / COMPARATIVE | VETO only on same-subject durable contradiction; missing memory is NEI |
| BIOGRAPHICAL / FINANCIAL / ACHIEVEMENT / TIMELINE / QUANTITATIVE / ATTRIBUTION / VAGUE-QUANTIFIER about the user | zero high-trust durable evidence is REFUTED_BY_ABSENCE and blocks |
| VAGUE-QUANTIFIER | VETO on vague achievement or financial claims without durable enumeration |
| UNVERIFIED-POSITIVE | VETO on specific named institutions/dates/employers not in evidence |
Structured verdicts:
| Verdict | Meaning |
|---|---|
SUPPORTED |
High-trust evidence supports or does not contradict the claim |
REFUTED |
High-trust durable evidence directly contradicts the same-subject claim |
REFUTED_BY_ABSENCE |
User-critical claim has no high-trust durable Vestige evidence |
NEI |
Not enough information; allow unless another claim blocks |
The bridge still prints legacy one-line yes / no - ... by default for Stop-hook compatibility. With VESTIGE_SANHEDRIN_OUTPUT=json, it emits structured JSON containing decision, reason, and per-claim verdicts. sanhedrin.sh can parse either format.
Staged evidence overlay
VESTIGE_SANHEDRIN_STAGE_FILE may point to a JSON array of current-turn evidence candidates. Sanhedrin can read this staged evidence as context, but staged evidence is deliberately non-durable:
- it never calls
smart_ingest - it cannot promote, demote, merge, suppress, or supersede durable memories
- it does not satisfy the durable-evidence requirement for
SUPPORTED,REFUTED, orREFUTED_BY_ABSENCE - durable memory writes remain a separate commit-after-pass step
False-positive guards (added v2.1.0 after dogfood):
- Subject-equality gate (memory about Vestige codebase ≠ contradiction with external tools)
- Version-discriminator rule (M3 Max ≠ M5 Max; Qwen3.5 ≠ Qwen3.6)
- Agreement-is-not-contradiction (memory that AGREES with draft → PASS)
- Architecture-vs-component (overall architecture memory doesn't contradict component-level draft)
- Inference-verb ban (no
implies/suggests/must meanin veto reasons)
Installation
From an installed Vestige CLI
vestige sandwich install
vestige update updates binaries only by default. To refresh these optional
Claude Code companion files during an update, run
vestige update --sandwich-companion. The companion installer does not activate
any Claude Code hook unless you pass an explicit opt-in flag. It removes old
v2.1.0 Vestige hook wiring from ~/.claude/settings.json while preserving
unrelated user hooks.
From a checkout
git clone https://github.com/samvallad33/vestige
cd vestige
./scripts/install-sandwich.sh # add --force to overwrite existing hooks
./scripts/check-sandwich-prereqs.sh # verify no Vestige hooks are wired by default
Optional Preflight
Preflight is a separate opt-in layer. It includes preflight-swarm.sh, which uses claude -p --model claude-haiku-4-5-20251001; it is not wired by default.
vestige sandwich install --enable-preflight
scripts/check-sandwich-prereqs.sh --preflight
Optional Sanhedrin
Sanhedrin is a separate opt-in layer.
# Wire the Sanhedrin Stop hook without choosing a model yet.
# It will fail open until endpoint/model are configured.
vestige sandwich install --enable-sanhedrin
# Apple Silicon only, and only if the machine has enough memory:
vestige sandwich install --enable-sanhedrin --with-launchd
# x86 / Linux / Intel Mac: use any OpenAI-compatible endpoint.
vestige sandwich install \
--enable-sanhedrin \
--sanhedrin-endpoint=http://127.0.0.1:11434/v1/chat/completions \
--sanhedrin-model=qwen2.5:14b
Backend presets live at hooks/sanhedrin-presets.json and cover custom
OpenAI-compatible servers, small local laptops, balanced local Ollama, MLX,
vLLM, llama.cpp, hosted OpenAI-compatible APIs, and Anthropic via LiteLLM.
Presets are recipes, not requirements. The hook itself only needs an
OpenAI-compatible /v1/chat/completions endpoint and a model name chosen by the
user. Backend-specific payload extensions are enabled only by
VESTIGE_SANHEDRIN_BACKEND=mlx or vllm. For hosted APIs, use
VESTIGE_SANHEDRIN_API_KEY; Sanhedrin intentionally does not forward a generic
OPENAI_API_KEY to arbitrary configured endpoints.
Prerequisites
| Tool | Install |
|---|---|
| Python 3.10+ | typically preinstalled |
jq |
brew install jq |
vestige-mcp |
npm install -g vestige-mcp-server |
| Claude Code | https://claude.ai/code |
Optional Apple Silicon local Sanhedrin backend:
| Tool | Install |
|---|---|
| macOS Apple Silicon (M1+) | required for MLX launchd only |
uv |
brew install uv |
mlx-lm |
uv tool install mlx-lm |
huggingface_hub[cli] |
uv tool install 'huggingface_hub[cli]' |
| Qwen3.6-35B-A3B-4bit | hf download mlx-community/Qwen3.6-35B-A3B-4bit (~19 GB) |
What the installer does
- Verifies prereqs (warnings for missing tools, fatal only on jq/python3).
- Copies hooks to
~/.claude/hooks/, agents to~/.claude/agents/. - Backs up existing
~/.claude/settings.jsonto.bak.pre-sandwich, then removes old Vestige hook wiring from previous v2.1.0 installs. - With
--enable-preflight, merges the UserPromptSubmit hooks block. - With
--enable-sanhedrin, writes~/.claude/hooks/vestige-sanhedrin.envand merges a Sanhedrin-enabled Stop hooks block. - With
--enable-sanhedrin --with-launchdon Apple Silicon, renders and loadslaunchd/com.vestige.mlx-server.plist.template.
Uninstall
launchctl unload ~/Library/LaunchAgents/com.vestige.mlx-server.plist
rm ~/Library/LaunchAgents/com.vestige.mlx-server.plist
cp ~/.claude/settings.json.bak.pre-sandwich ~/.claude/settings.json
# Hook files in ~/.claude/hooks/ can be deleted manually.
Performance notes
Optional local MLX backend on M3 Max 16-core (400 GB/s memory bandwidth):
- Legacy Sanhedrin verdict: 5–15 seconds end-to-end (single deep_reference + single Qwen call)
- Claim mode: one
/api/deep_referencecall per extracted check-worthy claim, capped byVESTIGE_SANHEDRIN_MAX_CLAIMS - mlx_lm.server token generation: ~82 tok/s
- mlx_lm.server peak resident memory: ~19.7 GB
- Cold model load: ~5 seconds
On M3 Max 14-core or M2/M1 Max: closer to 3–7s prompt processing, ~50–60 tok/s generation.
Configuration
| Env var | Default | Effect |
|---|---|---|
VESTIGE_SANHEDRIN_ENABLED |
0 |
Set to 1 to enable the optional Sanhedrin Stop hook |
VESTIGE_SWARM_ENABLED |
1 |
Set to 0 to disable preflight lateral-thinker swarm |
VESTIGE_DASHBOARD_PORT |
3927 |
Vestige MCP HTTP API port used by hooks |
VESTIGE_SANHEDRIN_ENDPOINT |
unset | OpenAI-compatible chat completions endpoint for Sanhedrin |
VESTIGE_SANHEDRIN_MODEL |
unset | Model name sent to the Sanhedrin endpoint; choose any compatible model |
VESTIGE_SANHEDRIN_BACKEND |
unset | Optional backend hint (ollama, llama.cpp, mlx, vllm, openai, litellm) |
VESTIGE_SANHEDRIN_CLAIM_MODE |
1 when installed with --enable-sanhedrin |
Enables per-claim retrieval and fail-closed user-critical lanes |
VESTIGE_SANHEDRIN_OUTPUT |
json when installed with --enable-sanhedrin |
Emits structured JSON from the bridge; shell hook also accepts legacy text |
VESTIGE_SANHEDRIN_STAGE_FILE |
unset | Optional JSON-array staged evidence overlay, read-only and non-durable |
VESTIGE_SANHEDRIN_MAX_CLAIMS |
8 |
Max check-worthy claims adjudicated per draft |
VESTIGE_SANHEDRIN_PYTHON |
python3 from PATH |
Optional Python interpreter override for the Stop hook bridge |
MLX_ENDPOINT / VESTIGE_SANDWICH_MODEL |
legacy aliases | Backward-compatible names still read by the bridge |
VESTIGE_MEMORY_DIR |
(auto) | Override per-user Claude memory dir |
Architecture provenance
The Cognitive Sandwich originated April 2026 as a defense against a dogfood failure mode: Claude retrieved relevant memories but summarized them instead of composing them into a recommendation. The pre-cognitive layer enforces composition; the post-cognitive layer catches contradictions before they ship.
Full architecture memory: search Vestige for god-tier-plan or cognitive-sandwich tags after install.
Linux / Intel Mac / x86
The base hook harness runs on x86. The launchd MLX helper is macOS-arm64-only.
On Linux, Windows under WSL, or Intel Mac:
- Run
scripts/install-sandwich.shnormally to stage files and remove old Vestige hook wiring. No hooks are activated. - If you want Sanhedrin, run an OpenAI-compatible endpoint such as vLLM, Ollama, llama.cpp server, or a remote MLX/vLLM box.
- Install with
--enable-sanhedrin --sanhedrin-endpoint=<url> --sanhedrin-model=<model>. - If the endpoint is unreachable, Sanhedrin fails open and does not block Claude Code.