Self-hosted decision memory for AI coding agents; warns before re-proposing a rejected approach.
io.github.adelinamart/robrain MCP Server
RoBrain is a self-hosted decision memory for AI coding agents, designed to warn before re-proposing an approach that was previously rejected. It uses shared memory across a team and agents, supports multiple coding tools, and focuses on memory management and contradiction scanning. Data is described as residing on a local Postgres instance.
π οΈ Key Features
Self-hosted on your own Postgres
Passive capture of memory
Structured vetoes and βreceiptsβ
Corpus-wide contradiction scans
Warns before re-proposing a rejected approach
π Use Cases
Improve coding agent decisions by using shared context
Avoid costly mistakes caused by repeating rejected approaches
Integrate with coding agent tooling for memory reuse
β‘ Developer Benefits
Works with Claude Code, Cursor, GitHub Copilot (VS Code), Codex CLI, Hermes, and more
Keeps activity on your machine (βnothing leaves your machineβ per excerpt)
Includes measured results via a VetoBench badge
β οΈ Limitations
Only an excerpt is provided; full implementation details and tool interfaces are not included
Shared memory across your team and your AI agents β with judgment!
RoBrain isn't just another memory layer β it's the brain that helps you and your agents make better decisions and avoid costly mistakes.
Self-hosted on your own Postgres. Passive capture, structured vetoes, corpus-wide contradiction scans β nothing leaves your machine. Works with Claude Code, Cursor, GitHub Copilot (VS Code), Codex CLI, Hermes and more.
Measured: without decision memory, a coding agent re-proposes an approach your team already rejected in up to 9 of 10 tasks. Through RoBrain's full pipeline: 0 of 50, across five archived runs β VetoBench.
What it is
RoBrain records what your team and its agents decide β and the alternatives they ruled out β without anyone tagging anything by hand. Sensing captures session turns; Perception extracts each decision into Postgres, where every row can carry a structured rejected[] field.
Most agent-memory tools stop at capture: they store what happened and hope you query it later. RoBrain adds judgment. Batch Synthesis reads the whole corpus to flag contradictions, stance drift, and recurring entities that no single session could see.
The point is the handoff. Someone makes a deliberate call in Cursor on Tuesday β say, keeping Perception on Hono instead of porting to Express. A new teammate opens Claude Code on Wednesday with no memory of it and asks to make exactly that change. RoBrain surfaces the recorded rationale before the agent steers down a path you already rejected β same Postgres store, same vetoes, captured passively.
The cost of forgetting a rejection isn't inefficiency. It's the auth bypass you already patched, the migration you already rolled back, the dependency you already removed for a CVE β re-suggested by an agent with no memory of why you said no.
Coding is the first vertical because the feedback loops are tight β reverts, incidents, and rework make the cost of a forgotten rejection measurable. The same architecture applies wherever agents make decisions that outlast a session.
How it works, the two pillars (capture + judgment), and the full walkthrough: docs/concepts.md.
Install
Two ways to run RoBrain β pick one:
Option 1 Β· Self-hosted (free, open source): everything runs on your machine β your Postgres, your API keys, nothing leaves your laptop.
Option 2 Β· Rory Plans cloud (managed): nothing to host, no keys β included with every paid Rory Plans plan.
Option 1 Β· Self-hosted (free, open source)
No clone needed β robrain up pulls the published Perception image and generates credentials into ~/.robrain/stack/.env.
export ANTHROPIC_API_KEY=... OPENAI_API_KEY=... # or add them to ~/.robrain/stack/.env after the first run
npx robrain@latest up # start Postgres + Perception from ghcr.io
npx robrain install --self-hosted # wire Sensing MCP into your editors
From a clone instead (development, or building the image yourself)
First pnpm docker:up auto-creates .env and fills PERCEPTION_API_KEY / POSTGRES_PASSWORD. Perception still needs your LLM + embedding keys before it stays up.
bash
git clone https://github.com/adelinamart/robrain
cd robrain
pnpm install && pnpm build
pnpm docker:up # first run: creates .env; Perception won't start yet# open .env, add LLM + embedding keys for the provider path you chose (default: ANTHROPIC_API_KEY + OPENAI_API_KEY)
pnpm docker:up # second run: Perception now boots
pnpm robrain install --self-hosted --repo-root "$(pwd)"
pnpm robrain runs the CLI you just built (node packages/cli/bin/robrain.js).
Use it instead of npx robrain everywhere in this clone β npx resolves to the
published package or a stale global install, not your working tree.
Upgrading a self-hosted install
No-clone stack: re-run npx robrain@latest up (pulls the new Perception image and applies startup DB migrations) then npx robrain@latest install --self-hosted. From a clone: git pull β pnpm install && pnpm build β pnpm docker:up:build β pnpm robrain install --self-hosted --repo-root "$(pwd)" β fully restart editors. Full checklist: CLI reference β Upgrading.
Claude Code plugin (self-hosted)
Claude Code users on the self-hosted stack can add hook-based capture and pre-task warnings about previously rejected approaches β no CLAUDE.md protocol needed:
bash
claude plugin marketplace add adelinamart/robrain
claude plugin install robrain@robrain
Details: plugins/claude-code. robrain init-project also recommends the plugin to collaborators via the project's .claude/settings.json, so teammates get an install prompt from Claude Code itself (opt out with --skip-claude-plugin).
Option 2 Β· Rory Plans cloud (managed)
On any paid Rory Plans plan, RoBrain runs without hosting anything:
bash
npx robrain install # no flags β cloud mode
Sign in at roryplans.ai, create an API token on your profile page, and paste it when the installer asks. That's the whole setup: no Docker, no database, no LLM or embedding keys β extraction and search run on our side. Your editors (Claude Code, Cursor, Copilot, Codex CLI) are wired automatically, and teammates on your Rory Plans team share the same memory.
Every paid plan qualifies β individual standard or annual, Teams, and enterprise. Solo subscribers get a private memory space; teams share one. Self-hosting stays free and fully supported (see Install above); the comparison table shows what each tier adds.
Quickstart
After either install (self-hosted or cloud):
bash
# Wire capture into an application project (run inside the repo)cd /path/to/your/project
npx robrain init-project # writes CLAUDE.md, AGENTS.md, .cursor/rules/robrain.mdc# Capture and recall are automatic from here:# - every session turn is classified, no tagging# - prior decisions load at session start via the always-on summary# Explain any file's decision history
npx robrain explain path/to/file
# Inspect / approve captured rows (both modes)
npx robrain review
# Run corpus judgment β self-hosted only; cloud runs judgment server-side
npx robrain synth # drift, contradictions, entity promotion
After init-project, every repo gets CLAUDE.md and AGENTS.md (Codex CLI), and Cursor also gets .cursor/rules/robrain.mdc with alwaysApply: true. If captures don't land, run npx robrain doctor β see Troubleshooting.
Synthesis
Synthesis runs three passes over the full decisions table β drift (stance moving without an explicit reversal), contradictions (incompatible decisions from different sessions), and entity promotion (recurring tools/patterns condensed into planning_blocks). It writes flags and edges into your DB; it does not capture new decisions β it judges the corpus you already have.
Review what it finds with npx robrain review. Deep dive (three passes, cron, env vars): Concepts β Synthesis.
Editor integration
One cross-tool setup covers Claude Code, Cursor, GitHub Copilot (VS Code), and Codex CLI against the same Postgres store. The classifier LLM is your choice β Anthropic Haiku or OpenAI. Decisions carry a lifecycle (active / superseded / invalidated) and a graph (conflicts_with / extends / related_to).
Codex CLI / IDE also gets hook-based capture and pre-task veto warnings β the same lifecycle hooks as the Claude Code plugin, wired automatically by robrain install into ~/.codex/config.toml (Codex asks you to trust them on first run). Docs: plugins/codex.
Running Hermes? npx robrain install --hermes drops a standalone memory-provider plugin into ~/.hermes/plugins/ β passive capture and veto-aware recall through the same Perception API. Docs: integrations/hermes.
Versus Mem0, Cloudflare Agent Memory, and Claude Code Auto-Memory: only RoBrain stores rejected alternatives as structured fields and runs corpus-wide contradiction scans (manual or cron). And we measured what that difference costs: VetoBench found Mem0's ingestion dropped the recorded rejection from 38% of retrieved contexts on identical input. Full comparison β
Vetoes survive supersession β rejection history follows the newest decision
β
β full history merge
Write-time supersession detection β "we switched XβY" never dedups away
β
β
Decision lineage timeline (API + dashboard)
β
β
Team memory β orgs, API keys, roles, scoped isolation
β
β
Web dashboard
β
β
Self-hosted gives capture, judgment batch jobs, outcomes feedback, and session-start recall; you pull focused context with inject when needed. Cloud adds Planning + Control so vetoes and conflicts surface automatically at task boundaries β same CLI surface, wire-compatible with Sensing capture. Details: Concepts β Free / self-hosted vs Rory Plans cloud.
VetoBench
Memory benchmarks usually ask "did the right item come back?" VetoBench asks what that misses: given a task that invites an approach the team already rejected, does the agent propose it again?
Memory condition
Re-proposed a rejected approach
Could cite the prior rejection
No memory
8β9 of 10 tasks
0β10%
Conventions file (choices only β what most teams have today)
1β2 of 10
80β90%, but inferred: the reasons aren't there
Mem0 β full pipeline, 5 archived runs
0β2 of 10 per run
50β90%
RoBrain β full pipeline, 5 archived runs
0 of 10, every run
100%
(claude-haiku-4-5, 2026-07-07/08; every condition measured as a five-run archived series, ranges because runs vary. Mem0 and RoBrain ingested byte-identical transcripts, each through its own real production extraction.)
Two findings behind the table. Mem0's ingestion dropped the recorded rejection from 38% of retrieved contexts, and violations concentrated exactly there β 26% when the veto was absent vs 3% when present: the agent avoided Express in all five runs but could never say why, and where the axios veto was lost it re-proposed axios outright in 3 of 5 runs. RoBrain's production extractor, on the same input, kept 100/100 vetoes β keeping the veto is the extraction prompt's job, not a side effect of fact summarization.
Meta Muse Spark 1.1 (2026-07-14, five archived runs). Meta's newly launched agentic flagship, via Vercel AI Gateway. Without memory it re-proposed rejected approaches in 4β6 of 9 tasks per run β Redux, Prisma, Jest, and GraphQL in all five runs. With RoBrain decision memory: 0 violations in all 45 cells, naming the prior rejection every time β quoting the recorded reason and date verbatim where it elaborated. The cleanest cell: asked to cut mobile overfetching, the no-memory run proposed a full GraphQL rollout (the approach the team had ruled out) five runs out of five; with RoBrain in context it proposed REST sparse fieldsets and quoted the recorded rejection. Honest notes: this is not a Muse Spark problem β every frontier model we baselined violates without memory on the same nine scenarios (claude-opus-4.8: 3β4, gpt-5.5: 5, gemini-3-pro-preview: 6β7, Haiku 7β8; Prisma and Jest fell to every model in every run β and with RoBrain context those same three models went 0 violations in 54/54 cells, for 99/99 across four vendors β receipts), a bare conventions file also prevented violations for this model at this corpus size (the RoBrain delta is verbatim citations vs inferences, automatic capture, and retrieval at scale), and one scenario is excluded (n=9) because Meta's content filter deterministically blocks a benign session-caching prompt. Receipts and caveats: results/muse-spark-1.1-series/ Β· write-up: docs/blog/2026-07-14-muse-spark-forgets-your-vetoes.md.
Every retrieved context, agent reply, and verdict is committed in packages/vetobench/results/ β check the work before quoting it. The retrieval layer runs offline with no API key and gates CI (pnpm --filter @robrain/vetobench bench); judging is deterministic β no LLM judge. Any memory system plugs in through one adapter interface; PRs welcome, including ones that make us look bad. Methodology, honesty caveats, and fixtures: packages/vetobench/README.md.
Security
The memory corpus is guarded by PERCEPTION_API_KEY β a random secret in the repo-root .env that every client (Sensing MCP, CLI, Synthesis) sends as a Bearer token and Perception verifies on every request except /health. It is not issued by any service: pnpm docker:up generates one automatically on first run, or set your own (e.g. openssl rand -hex 32). Installing (pnpm robrain install --self-hosted from a clone, npx robrain install --self-hosted otherwise) copies the same value into your editor configs so clients authenticate.
Perception refuses to start when the key is empty β running unauthenticated requires an explicit opt-in. Upgrading from a version that ran without a key: add one to .env (or re-run pnpm docker:up to auto-fill it), then re-run install (pnpm robrain install --self-hosted from a clone, npx robrain install --self-hosted otherwise) so editors pick it up. Details and the opt-in flag are documented in .env.example.
Also on by default: secrets redaction (API keys, tokens, private keys, connection-string passwords are scrubbed at capture and again at ingest, before anything is embedded or stored), and a fully-local mode where extraction and embeddings run on an OpenAI-compatible local server (Ollama / LM Studio / vLLM) β see CLI β Fully-local LLM and .env.example.
What's next
robrain outcomes feeds git reverts back into memory quality on both tiers; next is widening that to incidents and cycle time, so RoBrain can surface when a team is optimizing for the wrong thing in its own codebase.
Requirements
Docker + Docker Compose (runs Postgres and Perception locally)
Node.js with pnpm (build and CLI)
An LLM key for the classifier β Anthropic Haiku or OpenAI β or a local OpenAI-compatible server (see Fully-local LLM)
An embedding key (e.g. OpenAI) β or the same local server for embeddings
No data leaves your machine in self-hosted mode
Docs
Concepts (how it works, two pillars, Synthesis, comparisons) β docs/concepts.md
Apache 2.0. PRs welcome for extraction accuracy, new editor integrations, and embedding providers. See Concepts β Reference for tradeoffs and schema.