@joshuaswarren/openclaw-engram 9.3.18 → 9.3.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/openclaw.plugin.json +8 -8
- package/package.json +3 -3
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-engram",
|
|
3
3
|
"name": "Remnic OpenClaw Plugin",
|
|
4
|
-
"version": "9.3.
|
|
4
|
+
"version": "9.3.19",
|
|
5
5
|
"kind": "memory",
|
|
6
6
|
"description": "Local semantic memory for OpenClaw with bundled Remnic core runtime. Requires plugins.slots.memory set to this plugin id for hooks to fire.",
|
|
7
7
|
"setup": {
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"provider": "openai",
|
|
29
29
|
"method": "api-key",
|
|
30
30
|
"choiceId": "remnic-openai-api-key",
|
|
31
|
-
"choiceLabel": "
|
|
32
|
-
"choiceHint": "
|
|
31
|
+
"choiceLabel": "OpenAI API key for Remnic memory extraction",
|
|
32
|
+
"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.",
|
|
33
33
|
"groupId": "remnic-memory",
|
|
34
34
|
"groupLabel": "Remnic memory",
|
|
35
35
|
"optionKey": "openaiApiKey",
|
|
36
36
|
"cliFlag": "--openai-api-key",
|
|
37
37
|
"cliOption": "--openai-api-key <key>",
|
|
38
|
-
"cliDescription": "
|
|
38
|
+
"cliDescription": "OpenAI API key used by Remnic memory extraction, consolidation, and embedding flows.",
|
|
39
39
|
"onboardingScopes": [
|
|
40
40
|
"text-inference"
|
|
41
41
|
]
|
|
@@ -90,13 +90,13 @@
|
|
|
90
90
|
"commands.list"
|
|
91
91
|
],
|
|
92
92
|
"memoryCapabilities": [
|
|
93
|
-
"openclaw-
|
|
93
|
+
"openclaw-engram"
|
|
94
94
|
],
|
|
95
95
|
"memoryPromptSections": [
|
|
96
96
|
"engram-memory"
|
|
97
97
|
],
|
|
98
98
|
"services": [
|
|
99
|
-
"openclaw-
|
|
99
|
+
"openclaw-engram"
|
|
100
100
|
],
|
|
101
101
|
"tools": [
|
|
102
102
|
"compounding_promote_candidate",
|
|
@@ -2922,8 +2922,8 @@
|
|
|
2922
2922
|
"plugin",
|
|
2923
2923
|
"gateway"
|
|
2924
2924
|
],
|
|
2925
|
-
"default": "
|
|
2926
|
-
"description": "LLM source: 'gateway' delegates to a gateway agent's model chain (agents.list[])
|
|
2925
|
+
"default": "plugin",
|
|
2926
|
+
"description": "LLM source: 'plugin' uses Engram's own openai/localLlm config; 'gateway' delegates to a gateway agent's model chain (agents.list[])."
|
|
2927
2927
|
},
|
|
2928
2928
|
"gatewayAgentId": {
|
|
2929
2929
|
"type": "string",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joshuaswarren/openclaw-engram",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.19",
|
|
4
4
|
"description": "Deprecated compatibility shim for Engram installs. Re-exports @remnic/plugin-openclaw and forwards engram-access to @remnic/core.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
]
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@remnic/
|
|
35
|
-
"@remnic/
|
|
34
|
+
"@remnic/plugin-openclaw": "^1.0.33",
|
|
35
|
+
"@remnic/core": "^1.1.10"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"openclaw": ">=2026.4.8"
|