@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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-engram",
3
3
  "name": "Remnic OpenClaw Plugin",
4
- "version": "9.3.18",
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": "Optional OpenAI API key for Remnic plugin-mode extraction",
32
- "choiceHint": "Not needed when Remnic uses the OpenClaw gateway model source. Set only if you intentionally use plugin mode with OpenAI or an OpenAI-compatible endpoint.",
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": "Optional OpenAI API key used by Remnic plugin-mode extraction, consolidation, and embedding flows.",
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": "gateway",
2926
- "description": "LLM source: 'gateway' delegates to a gateway agent's model chain (agents.list[]); 'plugin' uses Engram's own openai/localLlm config."
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.18",
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.9",
35
- "@remnic/plugin-openclaw": "^1.0.32"
34
+ "@remnic/core": "^1.1.11",
35
+ "@remnic/plugin-openclaw": "^1.0.34"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "openclaw": ">=2026.4.8"