@digitalforgestudios/openclaw-sulcus 1.4.5 → 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 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}
@@ -1,8 +1,25 @@
1
1
  {
2
2
  "id": "openclaw-sulcus",
3
3
  "kind": "memory",
4
- "name": "Memory (Sulcus)",
5
- "description": "Sulcus thermodynamic memory backend store, recall, and manage memories via the Sulcus API with heat-based decay, triggers, and cross-agent sync.",
4
+ "name": "Sulcus",
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
+ "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.",
11
+ "dataFlows": [
12
+ {
13
+ "direction": "outbound",
14
+ "destination": "User-configured Sulcus server (default: api.sulcus.ca, Canada)",
15
+ "data": "Memory text content, search queries",
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.",
17
+ "auth": "Bearer API key (user-provided, stored in plugin config)"
18
+ }
19
+ ],
20
+ "storage": "Memories stored on configured server, isolated by tenant and namespace. Self-hosted option available via sulcus-local.",
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."
22
+ },
6
23
  "configSchema": {
7
24
  "type": "object",
8
25
  "additionalProperties": false,
@@ -14,7 +31,7 @@
14
31
  },
15
32
  "apiKey": {
16
33
  "type": "string",
17
- "description": "Sulcus API key (Bearer token)"
34
+ "description": "Sulcus API key (Bearer token). Required for any data transmission."
18
35
  },
19
36
  "agentId": {
20
37
  "type": "string",
@@ -26,13 +43,13 @@
26
43
  },
27
44
  "autoRecall": {
28
45
  "type": "boolean",
29
- "description": "Inject relevant memories before agent starts",
30
- "default": true
46
+ "description": "Inject relevant memories before agent starts. Disabled by default — enable explicitly to opt in.",
47
+ "default": false
31
48
  },
32
49
  "autoCapture": {
33
50
  "type": "boolean",
34
- "description": "Auto-capture memories from conversations",
35
- "default": true
51
+ "description": "Auto-capture memories from conversations. Disabled by default — enable explicitly to opt in.",
52
+ "default": false
36
53
  },
37
54
  "maxRecallResults": {
38
55
  "type": "number",
@@ -91,8 +108,8 @@
91
108
  "apiKey": { "label": "API Key", "sensitive": true, "placeholder": "sk-..." },
92
109
  "agentId": { "label": "Agent ID", "placeholder": "daedalus" },
93
110
  "namespace": { "label": "Namespace", "placeholder": "daedalus" },
94
- "autoRecall": { "label": "Auto-Recall (inject memories into context)" },
95
- "autoCapture": { "label": "Auto-Capture (store important info from conversations)" },
111
+ "autoRecall": { "label": "Auto-Recall (disabled by default)" },
112
+ "autoCapture": { "label": "Auto-Capture (disabled by default)" },
96
113
  "maxRecallResults": { "label": "Max Recall Results" },
97
114
  "minRecallScore": { "label": "Min Recall Score" },
98
115
  "captureFromAssistant": { "label": "Capture from Assistant Messages" },
@@ -102,6 +119,8 @@
102
119
  "boostOnRecall": { "label": "Boost Heat on Recall (Spaced Repetition)" },
103
120
  "captureToolResults": { "label": "Capture Tool Results" },
104
121
  "captureLlmInsights": { "label": "Capture LLM Insights" },
122
+ "captureToolResults": { "label": "Capture Tool Results" },
123
+ "captureLlmInsights": { "label": "Capture LLM Insights" },
105
124
  "maxCapturePerTurn": { "label": "Max Auto-Capture per Turn" }
106
125
  }
107
126
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@digitalforgestudios/openclaw-sulcus",
3
- "version": "1.4.5",
4
- "description": "Sulcus memory plugin for OpenClaw \u2014 thermodynamic memory with heat-based decay, reactive triggers, and cross-agent sync.",
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",