@remnic/plugin-openclaw 1.0.16 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/openclaw.plugin.json +26 -1
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Part of [Remnic](https://github.com/joshuaswarren/remnic), the universal memory
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
openclaw plugins install
|
|
10
|
+
openclaw plugins install clawhub:@remnic/plugin-openclaw
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Or ask your OpenClaw agent:
|
|
@@ -91,7 +91,7 @@ This plugin hooks into the OpenClaw gateway lifecycle:
|
|
|
91
91
|
- **Tools** -- registers `memory_search`, `memory_get`, `memory_stats`, and other agent tools
|
|
92
92
|
- **Commands** -- provides CLI commands for memory management
|
|
93
93
|
|
|
94
|
-
All memory processing uses [`@remnic/core`](https://www.npmjs.com/package/@remnic/core).
|
|
94
|
+
All memory processing uses [`@remnic/core`](https://www.npmjs.com/package/@remnic/core). Memory files stay on your local filesystem as plain markdown files. When the plugin is configured to use OpenAI or an OpenAI-compatible endpoint, conversation and memory excerpts may be sent to that configured model provider for extraction, consolidation, summarization, and embeddings. Use `modelSource: "gateway"` or local LLM settings when those operations should stay on your own OpenClaw/local model path.
|
|
95
95
|
|
|
96
96
|
## Slot Selection
|
|
97
97
|
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-remnic",
|
|
3
|
+
"name": "Remnic OpenClaw Plugin",
|
|
4
|
+
"version": "1.0.19",
|
|
3
5
|
"kind": "memory",
|
|
4
6
|
"description": "Local semantic memory for OpenClaw. Requires plugins.slots.memory set to this plugin id for hooks to fire.",
|
|
7
|
+
"providerAuthEnvVars": {
|
|
8
|
+
"openai": [
|
|
9
|
+
"OPENAI_API_KEY"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"providerAuthChoices": [
|
|
13
|
+
{
|
|
14
|
+
"provider": "openai",
|
|
15
|
+
"method": "api-key",
|
|
16
|
+
"choiceId": "remnic-openai-api-key",
|
|
17
|
+
"choiceLabel": "OpenAI API key for Remnic memory extraction",
|
|
18
|
+
"choiceHint": "Remnic sends memory extraction, consolidation, and embedding requests to OpenAI or the configured OpenAI-compatible endpoint unless you route those tasks through OpenClaw gateway/local LLM settings.",
|
|
19
|
+
"groupId": "remnic-memory",
|
|
20
|
+
"groupLabel": "Remnic memory",
|
|
21
|
+
"optionKey": "openaiApiKey",
|
|
22
|
+
"cliFlag": "--openai-api-key",
|
|
23
|
+
"cliOption": "--openai-api-key <key>",
|
|
24
|
+
"cliDescription": "OpenAI API key used by Remnic memory extraction, consolidation, and embedding flows.",
|
|
25
|
+
"onboardingScopes": [
|
|
26
|
+
"text-inference"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
],
|
|
5
30
|
"supports": {
|
|
6
31
|
"memorySlot": true,
|
|
7
32
|
"dreamingSlot": true,
|
|
@@ -68,7 +93,7 @@
|
|
|
68
93
|
"properties": {
|
|
69
94
|
"openaiApiKey": {
|
|
70
95
|
"type": "string",
|
|
71
|
-
"description": "OpenAI API key (or set OPENAI_API_KEY env var)"
|
|
96
|
+
"description": "OpenAI API key (or set OPENAI_API_KEY env var). Remnic may send conversation and memory content to OpenAI or the configured OpenAI-compatible endpoint for extraction, consolidation, summarization, and embeddings."
|
|
72
97
|
},
|
|
73
98
|
"openaiBaseUrl": {
|
|
74
99
|
"type": "string",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/plugin-openclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "OpenClaw adapter for Remnic memory — thin wrapper delegating to @remnic/core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,7 +21,17 @@
|
|
|
21
21
|
"plugin": "./openclaw.plugin.json",
|
|
22
22
|
"extensions": [
|
|
23
23
|
"./dist/index.js"
|
|
24
|
-
]
|
|
24
|
+
],
|
|
25
|
+
"compat": {
|
|
26
|
+
"pluginApi": ">=2026.4.8"
|
|
27
|
+
},
|
|
28
|
+
"build": {
|
|
29
|
+
"openclawVersion": "2026.5.2",
|
|
30
|
+
"pluginSdkVersion": "2026.5.2"
|
|
31
|
+
},
|
|
32
|
+
"install": {
|
|
33
|
+
"minHostVersion": ">=2026.4.8"
|
|
34
|
+
}
|
|
25
35
|
},
|
|
26
36
|
"dependencies": {
|
|
27
37
|
"openai": "^6.0.0",
|