Voice
Cogniz Memory
Cogniz Memory plugin for OpenClaw (cloud long-term memory with optional auto recall/capture).
Install
openclaw plugins install @cognizonline/openclaw-cogniz-memory
Configuration Example
{
"plugins": {
"entries": {
"cogniz-memory": {
"enabled": true,
"config": {
"defaultProjectId": "openclaw",
"defaultProjectName": "OpenClaw",
"autoRecall": true,
"autoCapture": false,
"scopeChatTypes": ["direct"]
}
}
}
}
}
README
# Cogniz Memory for OpenClaw
Add long-term memory (store + semantic search) to OpenClaw via the Cogniz Memory Platform.
Includes optional auto-recall (inject relevant memories into the prompt).
## Install
```bash
openclaw plugins install @cognizonline/openclaw-cogniz-memory
openclaw plugins enable cogniz-memory
```
Restart the Gateway after installing/enabling.
## Configure
Put your API key in `~/.openclaw/.env` (recommended):
```bash
COGNIZ_API_KEY=mp_1_...
```
Then enable/configure the plugin:
```jsonc
{
"plugins": {
"entries": {
"cogniz-memory": {
"enabled": true,
"config": {
"defaultProjectId": "openclaw",
"defaultProjectName": "OpenClaw",
"autoRecall": true,
"autoCapture": false,
"scopeChatTypes": ["direct"]
}
}
}
}
}
```
Notes:
- `apiKey` can be omitted when `COGNIZ_API_KEY` is set.
- Keep `scopeChatTypes: ["direct"]` unless you explicitly want group/channel memory.
## Tools
- `cogniz_store_memory`
- `cogniz_search_memories`
- `cogniz_list_projects`
- `cogniz_get_stats`
## Notes
- Auto-recall injects `<relevant-memories>...</relevant-memories>` into prompts.
- Auto-capture is conservative and only stores user messages that match basic "durable memory" heuristics.
voice
Comments
Sign in to leave a comment