Tools & Ecosystem April 15, 2026

GBrain: Garry Tan's OpenClaw Memory System (And Whether You Need It)

Garry Tan โ€” president and CEO of Y Combinator โ€” just open-sourced the memory system powering his personal OpenClaw and Hermes agent deployments. It's called GBrain, and it's one of the more impressive agent memory setups published publicly. Here's what it does and how to think about it for your own setup.

What GBrain Is

GBrain is a structured memory and knowledge brain for AI agents. Garry describes the production numbers that motivated it:

"17,888 pages, 4,383 people, 723 companies, 21 cron jobs running autonomously, built in 12 days. The agent ingests meetings, emails, tweets, voice calls, and original ideas while you sleep."

In practical terms: GBrain is a local database + skill system that lets your OpenClaw agent index, search, and enrich your personal knowledge base โ€” contacts, companies, notes, meetings, ideas โ€” using hybrid semantic search (vector + keyword).

Key technical specs:

What It Actually Does

The core loop GBrain enables:

  1. Your agent ingests raw inputs โ€” meeting notes, emails, voice call transcripts, tweets, ideas โ€” and stores them in the local PGLite database
  2. Every person or company the agent encounters gets automatically enriched (LinkedIn, Clearbit-style data pulls)
  3. Overnight cron jobs consolidate memory, fix broken citations, and surface cross-connections between entries
  4. You query it conversationally: "what themes show up across my notes?" or "what do I know about [person]?"

The hybrid search means results are genuinely good โ€” not just keyword matches. The example from the repo: searching for a PG essay concept returns results ranked by semantic similarity (0.94, 0.87, 0.81) across 12ms.

How Installation Works

GBrain is designed to be installed by your agent, not by you. The entire install flow is:

Retrieve and follow the instructions at:
https://raw.githubusercontent.com/garrytan/gbrain/master/INSTALL_FOR_AGENTS.md

Paste that into your OpenClaw agent. It clones the repo, installs GBrain, sets up the database, loads all 25 skills, and configures the recurring cron jobs. You answer a few questions about API keys. That's it.

Manual install is also documented for those who prefer it:

git clone https://github.com/garrytan/gbrain.git
cd gbrain
bun install && bun link
gbrain init       # local brain, ready in 2 seconds
gbrain import ~/notes/  # index your markdown
gbrain query "what themes show up across my notes?"

GBrain vs. OpenClaw's Built-In Memory

OpenClaw has its own memory system โ€” memory.md, the workspace compiler, and optional LanceDB/vector memory. GBrain sits on top of that and adds structured relational data (people, companies, meetings as actual records), hybrid search, and automated enrichment pipelines.

Feature OpenClaw Built-In Memory GBrain
Setup time Minutes (just markdown) ~30 min (agent-driven)
Storage Flat markdown files Embedded Postgres (PGLite)
Search Keyword / LanceDB vector (optional) Hybrid vector + BM25
People/company records โŒ โœ… (with auto-enrichment)
Overnight consolidation โŒ (manual) โœ… (21 cron jobs)
No server required โœ… โœ… (PGLite is embedded)
Bun required โŒ โœ…

Who Should Install GBrain

Good fit if you:

Skip it for now if:

The Bigger Picture

GBrain is notable beyond the feature list. It's the first time a major tech figure has published the actual production agent brain they run daily โ€” with real numbers and a working install path. The "21 cron jobs running autonomously" detail signals where serious agent operators are heading: not chat sessions, but persistent autonomous systems doing continuous background work.

That's the same direction ClawReady setups are built for. If you're using OpenClaw for serious business operations, GBrain is worth watching โ€” even if you don't install it today.

GitHub: garrytan/gbrain


Want a production-grade OpenClaw setup like this?

ClawReady builds the full stack โ€” gateway, memory architecture, channels, cron jobs, SOUL.md โ€” so your agent is doing real work from day one. Starting at $99.

Book a Free Call โ†’