Tools
Agentbrain
๐ง Brain-inspired cognitive architecture plugin for AI agents โ persistent memory, evolving personality, neurochemistry-driven mood, learning from mistakes. Fully local on OpenClaw.
Install
npm install
#
Configuration Example
{
"plugins": {
"entries": {
"agentbrain": {
"enabled": true,
"config": {
"brainDir": "~/.openclaw/data/agentbrain",
"maxRecallResults": 10,
"maxInjectionTokens": 250,
"enableReflection": true,
"enableEmotions": true,
"enableSkillTracking": true
}
}
}
}
}
README
<p align="center">
<img src="docs/assets/banner.png" alt="AgentBrain โ brain-inspired cognitive architecture for AI agents" width="100%">
</p>
# ๐ง AgentBrain
> **Give your AI agent a brain.** Persistent memory, a personality that evolves, neurochemistry-driven moods, and the ability to learn from its mistakes โ all running locally, with zero extra token cost.
[]()
[]()
[]()
[]()
---
## Why AgentBrain?
Most AI agents are amnesiacs. Every conversation starts from zero โ they forget who you are, repeat mistakes you already corrected, and respond with the same flat tone whether you just shipped a release or lost a week of work.
AgentBrain fixes that. It sits between the incoming message and your agent, quietly doing what a brain does: recalling what matters, reading the emotional context, learning from corrections, and shaping how the agent responds โ then injecting a compact (~200 token) cognitive briefing into the prompt.
```text
Without AgentBrain With AgentBrain
โโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโ
"Who are you again?" โ "Welcome back โ last time we were
debugging the deploy script."
repeats corrected bug โ "Skipping that approach, you told me
it breaks the build."
flat, stateless tone โ mood + trust adapt to how the
relationship has actually gone
```
---
## Overview
AgentBrain is a plugin for [OpenClaw](https://openclaw.ai) that gives any agent real cognitive continuity:
- **Persistent memory** โ episodic, semantic, and procedural recall via semantic vector search
- **Evolving personality** โ traits like warmth and directness shift based on how interactions go
- **Emotional awareness** โ tracks mood, trust, and relationship depth over time
- **Neurochemistry** โ dopamine / serotonin / cortisol / oxytocin give mood real momentum instead of resetting every turn
- **Learning from corrections** โ remembers "don't do X" permanently, so mistakes aren't repeated
- **Proactive behavior** โ surfaces suggestions based on patterns it has observed
- **Structured knowledge** โ extracts facts, entities, and relationships into a queryable graph
Everything runs locally on SQLite. No external API calls, no added token cost beyond the small in-prompt briefing.
---
## Quick Start
### Installation
```bash
openclaw plugins install agentbrain
```
### Configuration
Add to your `openclaw.json`:
```json
{
"plugins": {
"entries": {
"agentbrain": {
"enabled": true,
"config": {
"brainDir": "~/.openclaw/data/agentbrain",
"maxRecallResults": 10,
"maxInjectionTokens": 250,
"enableReflection": true,
"enableEmotions": true,
"enableSkillTracking": true
}
}
}
}
}
```
That's it. AgentBrain hooks into OpenClaw's plugin lifecycle automatically.
---
## How It Works
AgentBrain registers three hooks in OpenClaw:
| Hook | What it does |
|------|-------------|
| `before_prompt_build` | Recalls relevant memories, generates style directives, injects ~200 tokens of brain context |
| `message_received` | Classifies message, processes emotion, detects skills |
| `message_sent` | Consolidates memory, extracts knowledge, detects corrections, tracks rewards |
### On every incoming message:
1. **Classify** โ intent, urgency, topic, tone
2. **Recall** โ find relevant memories via embedding similarity (3-tier: local model โ cache โ TF-IDF)
3. **Emotion** โ update mood, detect sentiment, track relationship
4. **Lessons** โ check if past corrections apply to this context
5. **Style** โ generate personality-driven directives (e.g., "be direct", "warn about risks")
6. **Inject** โ append brain context to the agent's prompt (~200 tokens)
### After every response:
1. **Consolidate** โ store new memories (deduplicated by content hash)
2. **Extract** โ structured facts and entities from the conversation
3. **Learn** โ detect if user corrected the agent, store as lesson
4. **Reflect** โ evaluate task outcome, adjust personality traits
5. **Persist** โ write all state to SQLite
---
## Architecture
AgentBrain is organized into modules inspired by neuroscience:
```mermaid
flowchart TB
IN([Incoming message]) --> THAL[Thalamus<br/>classify]
THAL --> HIP[Hippocampus<br/>recall memory]
THAL --> AMY[Amygdala<br/>emotion + threat]
AMY <--> NEU[Neurochemistry<br/>DA / 5HT / COR / OXT]
HIP --> PFC[Prefrontal<br/>planning]
AMY --> STYLE[PersonalityInfluence<br/>style directives]
PFC --> STYLE
STYLE --> INJ[[Inject ~200 tokens<br/>into agent prompt]]
INJ --> OUT([Agent responds])
OUT --> CONS[Hippocampus<br/>consolidate]
OUT --> KNOW[KnowledgeExtractor<br/>facts + entities]
OUT --> LESS[LessonLearner<br/>corrections]
OUT --> REFL[Cingulate<br/>reflect + evolve traits]
CONS & KNOW & LESS & REFL --> DB[(SQLite brain.db)]
```
<details>
<summary>Module map (ASCII)</summary>
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ AgentBrain โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โ
โ Core Cognition โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โHippocampusโ โPrefrontal โ โ Amygdala โ โ
โ โ Memory โ โ Planning โ โ Emotions โ โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โCerebellum โ โ Basal โ โ Cingulate โ โ
โ โ Skills โ โ Ganglia โ โReflection โ โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โ
โ Smart Modules (v0.3+) โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โ Vector โ โ Knowledge โ โ Lesson โ โ
โ โ Memory โ โ Extractor โ โ Learner โ โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โPersonalityโ โ Proactive โ โ Embedding โ โ
โ โ Influence โ โ Engine โ โ Engine โ โ
โ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโ โ
โ โ
โ Storage: SQLite (brain.db) โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ memories โ facts โ entities โ lessons โ ... โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
</details>
### Module Reference
| Module | Purpose |
|--------|---------|
| **Thalamus** | Message classification (intent, urgency, topic) |
| **Hippocampus** | Memory formation, deduplication, vector recall |
| **Amygdala** | Emotion processing, threat detection, relationship tracking |
| **Prefrontal Cortex** | Planning, working memory, goal management |
| **Cerebellum** | Skill proficiency tracking, habit detection |
| **Basal Ganglia** | Reward processing, motivation ranking |
| **Anterior Cingulate** | Self-reflection, personality trait evolution |
| **Temporal Lobe** | Language comprehension, semantic extraction |
| **Parietal Lobe** | Attention allocation, sensory integration |
| **Insula** | User state modeling (frustration, satisfaction) |
| **Neurochemistry** | Dopamine/serotonin/cortisol/oxytocin modulate mood with momentum + amygdala hijack on threats |
| **VectorMemory** | Embedding-based semantic recall with 3-tier fallback |
| **EmbeddingEngine** | Local embeddings via Transformers.js (all-MiniLM-L6-v2) |
| **KnowledgeExtractor** | Structured fact/entity extraction with supersession |
| **LessonLearner** | Correction detection, lesson storage, reinforcement |
| **PersonalityInfluence** | Trait-to-directive translation, context-aware styling |
| **ProactiveEngine** | Pattern-based action suggestions |
---
## Storage
All state lives in a single SQLite file (`brain.db`):
| Table | Purpose |
|-------|---------|
| `memories` | Episodic, semantic, procedural memories (UNIQUE on content hash) |
| `facts` | Structured knowledge (subject โ relation โ object) |
| `entities` | Extracted entities (people, tools, addresses) |
| `lessons` | Learned corrections with confidence scores |
| `patterns` | Behavioral patterns for proactive suggestions |
| `relationships` | Per-user trust, depth, interaction history |
| `personality` | Evolving trait values |
| `reflections` | Task outcomes and self-assessments |
| `skills` | Proficiency tracking per skill category |
### Why SQLite?
- **No duplicates** โ UNIQUE constraints at the database level
- **Fast queries** โ indexed columns, no regex parsing
- **Atomic writes** โ no corrupted half-written files
- **Single file** โ easy backup, easy migration
- **Zero config** โ no external database server needed
---
## Memory Recall
AgentBrain uses a 3-tier fallback for memory retrieval:
1. **Transformers.js** โ local `all-MiniLM-L6-v2` model (384 dims, ~22MB, downloads on first use)
2. **OpenClaw embedding cache** โ reuses host's cached embeddings if available
3. **TF-IDF** โ lightweight keyword-based fallback when embeddings unavailable
Recall is boosted by:
- Recency (recently accessed memories score higher)
- Confidence (high-confidence memories prioritized)
- Topic match (memories tagged with current topic get a boost)
---
## Personality System
Traits are defined on a 0-100 scale and evolve based on interactions:
| Trait | Effect on outp
... (truncated)
tools
Comments
Sign in to leave a comment