@joshuaswarren/openclaw-engram 9.3.18 → 9.3.20
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 +6 -34
- 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.20",
|
|
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
|
]
|
|
@@ -70,34 +70,6 @@
|
|
|
70
70
|
"beforeReset": true
|
|
71
71
|
},
|
|
72
72
|
"contracts": {
|
|
73
|
-
"commands": [
|
|
74
|
-
"remnic"
|
|
75
|
-
],
|
|
76
|
-
"hooks": [
|
|
77
|
-
"before_prompt_build",
|
|
78
|
-
"before_agent_start",
|
|
79
|
-
"agent_end",
|
|
80
|
-
"before_compaction",
|
|
81
|
-
"after_compaction",
|
|
82
|
-
"before_reset",
|
|
83
|
-
"session_start",
|
|
84
|
-
"session_end",
|
|
85
|
-
"before_tool_call",
|
|
86
|
-
"after_tool_call",
|
|
87
|
-
"llm_output",
|
|
88
|
-
"subagent_spawning",
|
|
89
|
-
"subagent_ended",
|
|
90
|
-
"commands.list"
|
|
91
|
-
],
|
|
92
|
-
"memoryCapabilities": [
|
|
93
|
-
"openclaw-remnic"
|
|
94
|
-
],
|
|
95
|
-
"memoryPromptSections": [
|
|
96
|
-
"engram-memory"
|
|
97
|
-
],
|
|
98
|
-
"services": [
|
|
99
|
-
"openclaw-remnic"
|
|
100
|
-
],
|
|
101
73
|
"tools": [
|
|
102
74
|
"compounding_promote_candidate",
|
|
103
75
|
"compounding_weekly_synthesize",
|
|
@@ -2922,8 +2894,8 @@
|
|
|
2922
2894
|
"plugin",
|
|
2923
2895
|
"gateway"
|
|
2924
2896
|
],
|
|
2925
|
-
"default": "
|
|
2926
|
-
"description": "LLM source: 'gateway' delegates to a gateway agent's model chain (agents.list[])
|
|
2897
|
+
"default": "plugin",
|
|
2898
|
+
"description": "LLM source: 'plugin' uses Engram's own openai/localLlm config; 'gateway' delegates to a gateway agent's model chain (agents.list[])."
|
|
2927
2899
|
},
|
|
2928
2900
|
"gatewayAgentId": {
|
|
2929
2901
|
"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.20",
|
|
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/core": "^1.1.
|
|
35
|
-
"@remnic/plugin-openclaw": "^1.0.
|
|
34
|
+
"@remnic/core": "^1.1.11",
|
|
35
|
+
"@remnic/plugin-openclaw": "^1.0.34"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"openclaw": ">=2026.4.8"
|