@joshuaswarren/openclaw-engram 9.3.14 → 9.3.16
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 +33 -1
- package/package.json +3 -3
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-engram",
|
|
3
|
+
"name": "Remnic OpenClaw Plugin",
|
|
4
|
+
"version": "9.3.16",
|
|
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",
|
|
@@ -645,6 +670,13 @@
|
|
|
645
670
|
"default": 2000,
|
|
646
671
|
"description": "Maximum time to wait for a reset-triggered flush before returning control to OpenClaw."
|
|
647
672
|
},
|
|
673
|
+
"initGateTimeoutMs": {
|
|
674
|
+
"type": "integer",
|
|
675
|
+
"minimum": 1000,
|
|
676
|
+
"maximum": 120000,
|
|
677
|
+
"default": 30000,
|
|
678
|
+
"description": "Maximum time Remnic waits for cold-start initialization during recall; also registered as the OpenClaw before_prompt_build hook timeout on SDKs that support per-hook options."
|
|
679
|
+
},
|
|
648
680
|
"flushOnResetEnabled": {
|
|
649
681
|
"type": "boolean",
|
|
650
682
|
"default": true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joshuaswarren/openclaw-engram",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.16",
|
|
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/plugin-openclaw": "^1.0.
|
|
35
|
-
"@remnic/core": "^1.1.
|
|
34
|
+
"@remnic/plugin-openclaw": "^1.0.20",
|
|
35
|
+
"@remnic/core": "^1.1.8"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"openclaw": ">=2026.4.8"
|