← All skills
Tencent SkillHub · AI

BrainDB

Persistent, semantic memory for AI agents. Gives your AI long-term recall that survives compaction and session resets — 98% accuracy, 20ms latency.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Persistent, semantic memory for AI agents. Gives your AI long-term recall that survives compaction and session resets — 98% accuracy, 20ms latency.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, auto-capture.js, config.json, docker-compose.yml, embedder.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.5.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

BrainDB

Persistent, semantic memory for AI agents. Built for OpenClaw.

What It Does

Your AI forgets everything between sessions. BrainDB fixes that. It gives your assistant a memory system that automatically captures important context from conversations and recalls it when relevant — who you are, what you're working on, what you've told it before. Memories persist across compaction, session resets, and restarts. How it works: You say something → OpenClaw captures important facts → BrainDB stores them You ask something → OpenClaw recalls relevant memories → AI has context No commands. No manual saving. It just works.

Install

Requires Docker and ~4 GB RAM. openclaw plugin install braindb Or manually: git clone https://github.com/Chair4ce/braindb.git ~/.openclaw/plugins/braindb cd ~/.openclaw/plugins/braindb bash install.sh First run: 3–5 minutes (downloads embedding model). After that: ~10 seconds. What the installer does: Backs up your existing memory files to ~/.openclaw/braindb-backup/ Builds and starts 3 Docker containers (Neo4j, embedder, gateway) Patches your OpenClaw config (~/.openclaw/openclaw.json) to enable the plugin Optionally offers to migrate existing workspace files into BrainDB Review install.sh before running if you want to understand each step.

What You Get

768-dim semantic search — finds conceptually related memories, not just keyword matches 4 memory types — episodic (events), semantic (facts), procedural (skills), association (links) Tiered ranking — semantic similarity always beats keyword match Auto-dedup — won't store near-duplicate memories Hebbian reinforcement — memories strengthen with use, decay without it Query expansion — understands colloquial phrases 98% recall accuracy on a 50-test benchmark suite 12–20 ms average query latency

Security & Privacy

Core operation is fully local: Gateway binds to localhost only — not exposed to your network Neo4j and embedder are not accessible from the host (isolated Docker network) Neo4j password is auto-generated (24-char random) Optional API key authentication via BRAINDB_API_KEY Containers run as non-root users All embedding, search, and storage runs locally — no external API calls during normal operation What the installer reads/writes: Reads your OpenClaw config (~/.openclaw/openclaw.json) to add the plugin entry Reads workspace files during optional migration (preview with --scan first) Writes .env with generated Neo4j credentials Creates Docker volumes for persistent storage Migration privacy notice: Default migration (--no-swarm): Fully local. File contents never leave your machine. Migration with swarm: Sends file contents to Google's Gemini API for intelligent fact extraction. This is opt-in only — you must have swarm installed and explicitly allow it. Use --no-swarm to guarantee local-only processing. Always run node migrate.cjs --scan or --dry-run first to see exactly what would be processed.

Migrating Existing Memories

Already have MEMORY.md, daily notes, or other workspace files? Import them: node migrate.cjs --scan /path/to/workspace # Preview files (no data sent anywhere) node migrate.cjs --dry-run /path/to/workspace # Extract facts locally, don't encode node migrate.cjs --no-swarm /path/to/workspace # Import, fully local node migrate.cjs /path/to/workspace # Import (uses swarm if available) Your files are never modified. BrainDB copies facts from them — it doesn't replace anything.

Failover

BrainDB fails gracefully: Gateway down: OpenClaw works normally — the memory block is simply absent from prompts. Your AI still has MEMORY.md and workspace files. Neo4j down: Gateway returns empty results. No errors, just no memories. Embedder down: Falls back to text-only search (less accurate but functional). Your workspace files are the safety net. BrainDB is additive — remove it and you're back to defaults with zero data loss.

Uninstall

openclaw plugin remove braindb The uninstaller exports all memories (JSON + readable markdown), stops containers, removes the plugin config from OpenClaw, and leaves your workspace files untouched. Docker volumes are preserved until you explicitly delete them.

Performance

MetricValueRecall accuracy98% (50-test suite)Avg latency12–20 msCold query~60 msCapacity10K+ memoriesStorage~3 GBRAM~2.5 GB

Links

Documentation OpenClaw MIT — Oaiken LLC

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts2 Config
  • SKILL.md Primary doc
  • README.md Docs
  • auto-capture.js Scripts
  • embedder.py Scripts
  • config.json Config
  • docker-compose.yml Config