@digitalforgestudios/openclaw-sulcus 3.12.0 → 4.2.0
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/hooks.defaults.json +10 -1
- package/index.ts +837 -516
- package/openclaw.plugin.json +86 -21
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -51,19 +51,24 @@
|
|
|
51
51
|
},
|
|
52
52
|
"autoRecall": {
|
|
53
53
|
"type": "boolean",
|
|
54
|
-
"description": "Inject relevant memories before agent starts. Disabled by default — enable explicitly to opt in.",
|
|
54
|
+
"description": "Inject relevant memories before agent starts (prependContext SDK path). Disabled by default — enable explicitly to opt in.",
|
|
55
55
|
"default": false
|
|
56
56
|
},
|
|
57
57
|
"autoCapture": {
|
|
58
58
|
"type": "boolean",
|
|
59
|
-
"description": "Auto-capture memories from conversations. Disabled by default — enable explicitly to opt in.",
|
|
59
|
+
"description": "Auto-capture memories from conversations via SIVU quality gate. Disabled by default — enable explicitly to opt in.",
|
|
60
60
|
"default": false
|
|
61
61
|
},
|
|
62
62
|
"maxRecallResults": {
|
|
63
63
|
"type": "number",
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "Maximum memories injected into context per turn (1-20)",
|
|
65
65
|
"default": 5
|
|
66
66
|
},
|
|
67
|
+
"profileFrequency": {
|
|
68
|
+
"type": "number",
|
|
69
|
+
"description": "Inject full user profile (preferences + facts) every N turns (1-500)",
|
|
70
|
+
"default": 10
|
|
71
|
+
},
|
|
67
72
|
"minRecallScore": {
|
|
68
73
|
"type": "number",
|
|
69
74
|
"description": "Min relevance score for auto-recall (0-1)",
|
|
@@ -120,23 +125,83 @@
|
|
|
120
125
|
}
|
|
121
126
|
},
|
|
122
127
|
"uiHints": {
|
|
123
|
-
"serverUrl": {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
"
|
|
140
|
-
|
|
128
|
+
"serverUrl": {
|
|
129
|
+
"label": "Sulcus Server URL",
|
|
130
|
+
"placeholder": "https://api.sulcus.ca",
|
|
131
|
+
"help": "Your Sulcus server URL. Leave empty for local-only mode."
|
|
132
|
+
},
|
|
133
|
+
"apiKey": {
|
|
134
|
+
"label": "API Key",
|
|
135
|
+
"sensitive": true,
|
|
136
|
+
"placeholder": "sk-...",
|
|
137
|
+
"help": "Your Sulcus API key (from sulcus.ca dashboard)"
|
|
138
|
+
},
|
|
139
|
+
"agentId": {
|
|
140
|
+
"label": "Agent ID",
|
|
141
|
+
"placeholder": "icarus",
|
|
142
|
+
"help": "Agent identifier for memory namespacing"
|
|
143
|
+
},
|
|
144
|
+
"namespace": {
|
|
145
|
+
"label": "Namespace",
|
|
146
|
+
"placeholder": "icarus",
|
|
147
|
+
"help": "Memory namespace (defaults to agentId)"
|
|
148
|
+
},
|
|
149
|
+
"autoRecall": {
|
|
150
|
+
"label": "Auto-Recall",
|
|
151
|
+
"help": "Inject relevant memories before every AI turn (uses prependContext SDK path)"
|
|
152
|
+
},
|
|
153
|
+
"autoCapture": {
|
|
154
|
+
"label": "Auto-Capture",
|
|
155
|
+
"help": "Automatically store important information from conversations (quality-gated by SIVU)"
|
|
156
|
+
},
|
|
157
|
+
"maxRecallResults": {
|
|
158
|
+
"label": "Max Recall Results",
|
|
159
|
+
"placeholder": "5",
|
|
160
|
+
"help": "Maximum memories injected into context per turn",
|
|
161
|
+
"advanced": true
|
|
162
|
+
},
|
|
163
|
+
"profileFrequency": {
|
|
164
|
+
"label": "Profile Injection Frequency",
|
|
165
|
+
"placeholder": "10",
|
|
166
|
+
"help": "Inject full user profile (preferences + facts) every N turns",
|
|
167
|
+
"advanced": true
|
|
168
|
+
},
|
|
169
|
+
"minRecallScore": {
|
|
170
|
+
"label": "Min Recall Score",
|
|
171
|
+
"advanced": true,
|
|
172
|
+
"help": "Minimum relevance score for auto-recall (0.0–1.0)"
|
|
173
|
+
},
|
|
174
|
+
"captureFromAssistant": {
|
|
175
|
+
"label": "Capture from Assistant Messages",
|
|
176
|
+
"advanced": true
|
|
177
|
+
},
|
|
178
|
+
"captureOnCompaction": {
|
|
179
|
+
"label": "Preserve Memories on Compaction",
|
|
180
|
+
"advanced": true
|
|
181
|
+
},
|
|
182
|
+
"captureOnReset": {
|
|
183
|
+
"label": "Capture Summary on Session Reset",
|
|
184
|
+
"advanced": true
|
|
185
|
+
},
|
|
186
|
+
"trackSessions": {
|
|
187
|
+
"label": "Track Session Start/End",
|
|
188
|
+
"advanced": true
|
|
189
|
+
},
|
|
190
|
+
"boostOnRecall": {
|
|
191
|
+
"label": "Boost Heat on Recall (Spaced Repetition)",
|
|
192
|
+
"advanced": true
|
|
193
|
+
},
|
|
194
|
+
"captureToolResults": {
|
|
195
|
+
"label": "Capture Tool Results",
|
|
196
|
+
"advanced": true
|
|
197
|
+
},
|
|
198
|
+
"captureLlmInsights": {
|
|
199
|
+
"label": "Capture LLM Insights",
|
|
200
|
+
"advanced": true
|
|
201
|
+
},
|
|
202
|
+
"maxCapturePerTurn": {
|
|
203
|
+
"label": "Max Auto-Capture per Turn",
|
|
204
|
+
"advanced": true
|
|
205
|
+
}
|
|
141
206
|
}
|
|
142
207
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitalforgestudios/openclaw-sulcus",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Sulcus — thermodynamic memory + Apache AGE knowledge graph for OpenClaw agents. SIU v2 pipeline auto-classifies and scores memories. Interaction-based decay (3 modes). Curator sleep-cycle. Relevance-weighted recall. Cross-agent sync.",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "Sulcus — thermodynamic memory + Apache AGE knowledge graph for OpenClaw agents. v4: registerMemoryRuntime, prependContext recall, registerMemoryPromptSection, registerService lifecycle, uiHints, provider-filtered auto-capture. SIU v2 pipeline auto-classifies and scores memories. Interaction-based decay (3 modes). Curator sleep-cycle. Relevance-weighted recall. Cross-agent sync.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|
|
7
7
|
"openclaw-plugin",
|