This is your install + operating protocol. Claude Code reads ./CLAUDE.md automatically.
Everyone else (Codex, Cursor, OpenClaw, Aider, Continue, or an LLM fetching via URL):
start here.
- Clone:
git clone https://github.com/garrytan/gbrain ~/gbrain && cd ~/gbrain - Install:
bun install - Init the brain:
gbrain init(defaults to PGLite, zero-config). For 1000+ files or multi-machine sync, init suggests Postgres + pgvector via Supabase. - Read
./INSTALL_FOR_AGENTS.mdfor the full 9-step flow (API keys, identity, cron, verification).
./AGENTS.md(this file) — install + operating protocol../CLAUDE.md— architecture reference, key files, trust boundaries, test layout../docs/architecture/brains-and-sources.md— the two-axis mental model (brain = which DB, source = which repo in the DB). Every query routes on both axes. Read before writing anything that touches brain ops../skills/conventions/brain-routing.md— agent-facing decision table: when to switch brain, when to switch source, how cross-brain federation works (latent-space only; the agent decides)../skills/RESOLVER.md— skill dispatcher. Read before any task.
GBrain distinguishes trusted local CLI callers (OperationContext.remote = false,
set by src/cli.ts) from untrusted agent-facing callers (remote = true, set by
src/mcp/server.ts). Security-sensitive operations like file_upload tighten filesystem
confinement when remote = true and default to strict behavior when unset. If you are
writing or reviewing an operation, consult src/core/operations.ts for the contract.
- Configure:
docs/ENGINES.md,docs/guides/live-sync.md,docs/mcp/DEPLOY.md. - Debug:
docs/GBRAIN_VERIFY.md,docs/guides/minions-fix.md,gbrain doctor --fix. - Migrate:
docs/UPGRADING_DOWNSTREAM_AGENTS.md,skills/migrations/,gbrain apply-migrations. - Eval retrieval changes: capture is off by default. To benchmark a
retrieval change against real captured queries, set
GBRAIN_CONTRIBUTOR_MODE=1, thengbrain eval export --since 7d > base.ndjsonandgbrain eval replay --against base.ndjson. For public benchmark coverage (LongMemEval, ground-truth scoring),gbrain eval longmemeval <dataset.jsonl>(v0.28.8) runs against an isolated in-memory PGLite per question — your~/.gbrainis never opened. Full guide:docs/eval-bench.md. - Everything else:
./llms.txtis the full documentation map../llms-full.txtis the same map with core docs inlined for single-fetch ingestion.
Easiest path: bun run ci:local runs the full CI gate inside Docker (gitleaks,
unit tests with DATABASE_URL unset, then all 29 E2E files sequentially against a
fresh pgvector container) and tears down. Use bun run ci:local:diff for the
diff-aware subset during fast iteration on a focused branch. Requires Docker
(Docker Desktop / OrbStack / Colima) and gitleaks (brew install gitleaks).
Manual path: bun test plus the E2E lifecycle described in ./CLAUDE.md (spin
up the test Postgres container, run bun run test:e2e, tear it down).
Ship via the /ship skill, not by hand.
Never commit real names of people, companies, or funds into public artifacts. See the
Privacy rule in ./CLAUDE.md. GBrain pages reference real contacts; public docs must
use generic placeholders (alice-example, acme-example, fund-a).
If you are a fork, regenerate llms.txt + llms-full.txt with your own URL base before
publishing: LLMS_REPO_BASE=https://raw.githubusercontent.com/your-org/your-fork/main bun run build:llms.