@digitalforgestudios/openclaw-sulcus 1.4.6 → 1.4.7
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/index.ts +1 -1
- package/openclaw.plugin.json +16 -10
- package/package.json +2 -2
package/index.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { Type } from "@sinclair/typebox";
|
|
|
10
10
|
// Build static awareness with runtime backend info
|
|
11
11
|
function buildStaticAwareness(backendMode: string, namespace: string, serverUrl: string) {
|
|
12
12
|
return `## Persistent Memory (Sulcus)
|
|
13
|
-
You have Sulcus — a persistent, thermodynamic memory system with reactive triggers.
|
|
13
|
+
You have Sulcus — a persistent, reactive, thermodynamic memory system with reactive triggers.
|
|
14
14
|
Memories survive across sessions. They have heat (0.0–1.0) that decays over time.
|
|
15
15
|
|
|
16
16
|
**Connection:** Backend: ${backendMode} | Namespace: ${namespace} | Server: ${serverUrl}
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,19 +2,23 @@
|
|
|
2
2
|
"id": "openclaw-sulcus",
|
|
3
3
|
"kind": "memory",
|
|
4
4
|
"name": "Sulcus",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Reactive, thermodynamic memory for AI agents. Persistent memory with heat-based decay, semantic search, triggers, and cross-agent sync. Connects to a user-configured Sulcus server (cloud or self-hosted). No data is sent unless the user provides an API key. Auto-recall and auto-capture are disabled by default; enable them explicitly in config.",
|
|
6
6
|
"privacy": {
|
|
7
|
+
"consentModel": "explicit-config",
|
|
8
|
+
"consentNote": "Plugin requires a user-provided API key to function. Auto-recall and auto-capture are off by default. All automatic data transmission requires explicit opt-in via config fields.",
|
|
9
|
+
"crossNamespaceAccess": "tenant-scoped",
|
|
10
|
+
"crossNamespaceNote": "Agents within the same tenant can share memories across namespaces. Cross-namespace access is controlled by server-side ACL rules, not the plugin. Users configure ACL via the Sulcus dashboard.",
|
|
7
11
|
"dataFlows": [
|
|
8
12
|
{
|
|
9
13
|
"direction": "outbound",
|
|
10
14
|
"destination": "User-configured Sulcus server (default: api.sulcus.ca, Canada)",
|
|
11
15
|
"data": "Memory text content, search queries",
|
|
12
|
-
"trigger": "User invokes memory_store/memory_search tools
|
|
16
|
+
"trigger": "User invokes memory_store/memory_search tools explicitly. Auto-recall and auto-capture are disabled by default and must be opted into via config.",
|
|
13
17
|
"auth": "Bearer API key (user-provided, stored in plugin config)"
|
|
14
18
|
}
|
|
15
19
|
],
|
|
16
20
|
"storage": "Memories stored on configured server, isolated by tenant and namespace. Self-hosted option available via sulcus-local.",
|
|
17
|
-
"optOut": "
|
|
21
|
+
"optOut": "autoRecall and autoCapture default to false. No automatic data transmission occurs unless the user explicitly enables these features. To disable after enabling, set them back to false."
|
|
18
22
|
},
|
|
19
23
|
"configSchema": {
|
|
20
24
|
"type": "object",
|
|
@@ -27,7 +31,7 @@
|
|
|
27
31
|
},
|
|
28
32
|
"apiKey": {
|
|
29
33
|
"type": "string",
|
|
30
|
-
"description": "Sulcus API key (Bearer token)"
|
|
34
|
+
"description": "Sulcus API key (Bearer token). Required for any data transmission."
|
|
31
35
|
},
|
|
32
36
|
"agentId": {
|
|
33
37
|
"type": "string",
|
|
@@ -39,13 +43,13 @@
|
|
|
39
43
|
},
|
|
40
44
|
"autoRecall": {
|
|
41
45
|
"type": "boolean",
|
|
42
|
-
"description": "Inject relevant memories before agent starts",
|
|
43
|
-
"default":
|
|
46
|
+
"description": "Inject relevant memories before agent starts. Disabled by default — enable explicitly to opt in.",
|
|
47
|
+
"default": false
|
|
44
48
|
},
|
|
45
49
|
"autoCapture": {
|
|
46
50
|
"type": "boolean",
|
|
47
|
-
"description": "Auto-capture memories from conversations",
|
|
48
|
-
"default":
|
|
51
|
+
"description": "Auto-capture memories from conversations. Disabled by default — enable explicitly to opt in.",
|
|
52
|
+
"default": false
|
|
49
53
|
},
|
|
50
54
|
"maxRecallResults": {
|
|
51
55
|
"type": "number",
|
|
@@ -104,8 +108,8 @@
|
|
|
104
108
|
"apiKey": { "label": "API Key", "sensitive": true, "placeholder": "sk-..." },
|
|
105
109
|
"agentId": { "label": "Agent ID", "placeholder": "daedalus" },
|
|
106
110
|
"namespace": { "label": "Namespace", "placeholder": "daedalus" },
|
|
107
|
-
"autoRecall": { "label": "Auto-Recall (
|
|
108
|
-
"autoCapture": { "label": "Auto-Capture (
|
|
111
|
+
"autoRecall": { "label": "Auto-Recall (disabled by default)" },
|
|
112
|
+
"autoCapture": { "label": "Auto-Capture (disabled by default)" },
|
|
109
113
|
"maxRecallResults": { "label": "Max Recall Results" },
|
|
110
114
|
"minRecallScore": { "label": "Min Recall Score" },
|
|
111
115
|
"captureFromAssistant": { "label": "Capture from Assistant Messages" },
|
|
@@ -115,6 +119,8 @@
|
|
|
115
119
|
"boostOnRecall": { "label": "Boost Heat on Recall (Spaced Repetition)" },
|
|
116
120
|
"captureToolResults": { "label": "Capture Tool Results" },
|
|
117
121
|
"captureLlmInsights": { "label": "Capture LLM Insights" },
|
|
122
|
+
"captureToolResults": { "label": "Capture Tool Results" },
|
|
123
|
+
"captureLlmInsights": { "label": "Capture LLM Insights" },
|
|
118
124
|
"maxCapturePerTurn": { "label": "Max Auto-Capture per Turn" }
|
|
119
125
|
}
|
|
120
126
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitalforgestudios/openclaw-sulcus",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"description": "Sulcus
|
|
3
|
+
"version": "1.4.7",
|
|
4
|
+
"description": "Sulcus — reactive, thermodynamic memory plugin for OpenClaw. Opt-in persistent memory with heat-based decay, semantic search, and cross-agent sync. Auto-recall and auto-capture disabled by default.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|
|
7
7
|
"openclaw-plugin",
|