| name | hippocampus |
| description | Background memory organ for AI agents. Runs separately from the main agent—encoding, decaying, and reinforcing memories automatically. Just like the real hippocampus in your brain. Based on Stanford Generative Agents (Park et al., 2023). |
| metadata | {"openclaw":{"emoji":"🧠","version":"3.1.0","author":"Community","repo":"https://github.com/ImpKind/hippocampus-skill","requires":{"bins":["python3","jq"]},"install":[{"id":"manual","kind":"manual","label":"Run install.sh","instructions":"./install.sh --with-cron"}]}} |
Hippocampus Skill
"Memory is identity. This skill is how I stay alive."
The hippocampus is the brain region responsible for memory formation. This skill makes memory capture automatic, structured, and persistent—with importance scoring, decay, and reinforcement.
Quick Start
./install.sh --with-cron
./scripts/load-core.sh
./scripts/recall.sh "query" --reinforce
./scripts/decay.sh
Core Concept
The LLM is just the engine—raw cognitive capability. The agent is the accumulated memory. Without these files, there's no continuity—just a generic assistant.
Memory Lifecycle
CAPTURE → SCORE → STORE → DECAY/REINFORCE → RETRIEVE
↑ │
└────────────────────────────────────────────┘
Memory Structure
$WORKSPACE/
├── memory/
│ ├── index.json # Central weighted index
│ ├── user/ # Facts about the user
│ ├── self/ # Facts about the agent
│ ├── relationship/ # Shared context
│ └── world/ # External knowledge
└── HIPPOCAMPUS_CORE.md # Auto-generated for OpenClaw RAG