You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix: rename openclawd to openclaw
* fix: rename openclawd to openclaw
* Revise OpenClaw documentation and remove dev section
Updated the description of local memory for OpenClaw agents and removed the development section along with requirements and links.
Copy file name to clipboardExpand all lines: hindsight-docs/docs/sdks/integrations/openclaw.md
+35-67Lines changed: 35 additions & 67 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
sidebar_position: 4
3
3
---
4
4
5
-
# OpenClawd
5
+
# OpenClaw
6
6
7
-
Local-first, persistent memory for [OpenClawd](https://openclawd.ai) agents using [Hindsight](https://vectorize.io/hindsight).
7
+
Local, long term memory for [OpenClaw](https://openclaw.ai) agents using [Hindsight](https://vectorize.io/hindsight).
8
8
9
9
This plugin integrates [hindsight-embed](https://vectorize.io/hindsight/cli), a standalone daemon that bundles Hindsight's memory engine (API + PostgreSQL) into a single command. Everything runs locally on your machine, reuses the LLM you're already paying for, and costs nothing extra. The plugin automatically manages the daemon lifecycle and provides hooks for seamless memory capture and recall.
"text": "Nicolò Boschi attended an OpenAI devday last year and found it cool. | When: 2025-01-30 | Involving: Nicolò Boschi",
61
+
"type": "world"
56
62
}
57
-
}
58
63
]
59
64
</hindsight_memories>
60
65
```
61
66
62
67
The agent sees past context automatically without needing to remember to remember. This approach trades token cost for reliability - but for conversational agents, spending 500 tokens on auto-injected context is better than ignoring 10,000 stored facts because the model didn't call a tool.
63
68
64
-
## Understanding OpenClawd Concepts
69
+
## Understanding OpenClaw Concepts
65
70
66
71
### Plugins
67
-
Extensions that add functionality to OpenClawd. This Hindsight plugin:
72
+
Extensions that add functionality to OpenClaw. This Hindsight plugin:
68
73
- Runs a background service (manages `hindsight-embed` daemon)
69
74
- Registers hooks (automatic event handlers)
70
75
@@ -79,7 +84,7 @@ Think of hooks as "forced automation" - they always run.
79
84
80
85
```
81
86
┌─────────────────────────────────────────┐
82
-
│ OpenClawd Gateway │
87
+
│ OpenClaw Gateway │
83
88
│ │
84
89
│ ┌───────────────────────────────────┐ │
85
90
│ │ Hindsight Plugin │ │
@@ -95,11 +100,11 @@ Think of hooks as "forced automation" - they always run.
95
100
uvx hindsight-embed
96
101
• Daemon on port 8889
97
102
• PostgreSQL (pg0://hindsight-embed)
98
-
• Bank: 'openclawd' (isolated within shared database)
103
+
• Bank: 'openclaw' (isolated within shared database)
99
104
• Fact extraction
100
105
```
101
106
102
-
**Database Architecture:** All banks share a single pg0 database instance (`pg0://hindsight-embed`). Bank isolation happens within the database via separate tables/schemas per bank ID. The 'openclawd' bank is automatically created when the plugin stores its first memory.
107
+
**Database Architecture:** All banks share a single pg0 database instance (`pg0://hindsight-embed`). Bank isolation happens within the database via separate tables/schemas per bank ID. The 'openclaw' bank is automatically created when the plugin stores its first memory.
103
108
104
109
**Local-First Design:**
105
110
- **Your data stays local**: All conversations, facts, and relationships stored in PostgreSQL on your machine
@@ -113,7 +118,7 @@ Think of hooks as "forced automation" - they always run.
0 commit comments