@@ -13,13 +13,13 @@ This plugin integrates [hindsight-embed](https://vectorize.io/hindsight/cli), a
1313``` bash
1414# 1. Configure your LLM provider
1515export OPENAI_API_KEY=" sk-your-key"
16- clawdbot config set ' agents.defaults.models."openai/gpt-4o-mini"' ' {}'
16+ openclaw config set ' agents.defaults.models."openai/gpt-4o-mini"' ' {}'
1717
1818# 2. Install and enable the plugin
19- clawdbot plugins install @vectorize-io/hindsight-openclaw
19+ openclaw plugins install @vectorize-io/hindsight-openclaw
2020
2121# 3. Start OpenClaw
22- clawdbot gateway
22+ openclaw gateway
2323```
2424
2525That's it! The plugin will automatically start capturing and recalling memories.
@@ -118,7 +118,7 @@ Think of hooks as "forced automation" - they always run.
118118### Prerequisites
119119
120120- **Node.js** 22+
121- - **OpenClaw** (Clawdbot) with plugin support
121+ - **OpenClaw** with plugin support
122122- **uv/uvx** for running `hindsight-embed`
123123- **LLM API key** (OpenAI, Anthropic, etc.)
124124
@@ -127,21 +127,21 @@ Think of hooks as "forced automation" - they always run.
127127```bash
128128# 1. Configure your LLM provider
129129export OPENAI_API_KEY="sk-your-key"
130- clawdbot config set 'agents.defaults.models."openai/gpt-4o-mini"' '{ }'
130+ openclaw config set 'agents.defaults.models."openai/gpt-4o-mini"' '{ }'
131131
132132# 2. Install and enable the plugin
133- clawdbot plugins install @vectorize-io/hindsight-openclaw
133+ openclaw plugins install @vectorize-io/hindsight-openclaw
134134
135135# 3. Start OpenClaw
136- clawdbot gateway
136+ openclaw gateway
137137```
138138
139139On first start, `uvx` will automatically download `hindsight-embed` (no manual installation needed).
140140
141141
142142## Configuration
143143
144- Optional settings in `~/.clawdbot/clawdbot .json`:
144+ Optional settings in `~/.openclaw/openclaw .json`:
145145
146146```json
147147{
@@ -178,14 +178,14 @@ The plugin auto-detects your configured provider and API key:
178178Configure with:
179179```bash
180180export OPENAI_API_KEY="sk-your-key"
181- clawdbot config set 'agents.defaults.models."openai/gpt-4o-mini"' '{}'
181+ openclaw config set 'agents.defaults.models."openai/gpt-4o-mini"' '{}'
182182```
183183
184184## Verification
185185
186186**Check if plugin is loaded:**
187187```bash
188- clawdbot plugins list | grep hindsight
188+ openclaw plugins list | grep hindsight
189189# Should show: ✓ enabled │ Hindsight Memory │ ...
190190```
191191
@@ -262,10 +262,10 @@ uvx hindsight-embed@latest entity graph openclaw
262262**Plugin not loading?**
263263```bash
264264# Check plugin installation
265- clawdbot plugins list | grep -i hindsight
265+ openclaw plugins list | grep -i hindsight
266266
267267# Reinstall if needed
268- clawdbot plugins install @vectorize-io/hindsight-openclaw
268+ openclaw plugins install @vectorize-io/hindsight-openclaw
269269```
270270
271271**Daemon not starting?**
@@ -293,7 +293,7 @@ echo $OPENAI_API_KEY
293293**Memories not being stored?**
294294```bash
295295# Check gateway logs for auto-capture
296- tail -f /tmp/clawdbot/clawdbot -*.log | grep Hindsight
296+ tail -f /tmp/openclaw/openclaw -*.log | grep Hindsight
297297
298298# Should see:
299299# [Hindsight Hook ] agent_end triggered
0 commit comments