@digitalforgestudios/openclaw-sulcus 5.2.0 → 5.3.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/README.md +1 -1
- package/hooks.defaults.json +7 -11
- package/index.ts +145 -1010
- package/openclaw.plugin.json +4 -1
- package/package.json +2 -2
package/README.md
CHANGED
package/hooks.defaults.json
CHANGED
|
@@ -3,14 +3,17 @@
|
|
|
3
3
|
"version": 1,
|
|
4
4
|
"hooks": {
|
|
5
5
|
"before_prompt_build": {
|
|
6
|
-
"action": "
|
|
7
|
-
"enabled": false
|
|
6
|
+
"action": "auto_recall",
|
|
7
|
+
"enabled": false,
|
|
8
|
+
"limit": 5,
|
|
9
|
+
"minScore": 0.3
|
|
8
10
|
},
|
|
9
11
|
"before_agent_start": {
|
|
10
12
|
"action": "auto_recall",
|
|
11
13
|
"enabled": false,
|
|
12
14
|
"limit": 5,
|
|
13
|
-
"minScore": 0.3
|
|
15
|
+
"minScore": 0.3,
|
|
16
|
+
"_deprecated": "Use before_prompt_build instead. Legacy compat only."
|
|
14
17
|
},
|
|
15
18
|
"agent_end": {
|
|
16
19
|
"action": "none",
|
|
@@ -23,11 +26,6 @@
|
|
|
23
26
|
"before_compaction": {
|
|
24
27
|
"action": "pre_compaction_capture",
|
|
25
28
|
"enabled": true
|
|
26
|
-
},
|
|
27
|
-
"llm_output_evaluation": {
|
|
28
|
-
"action": "evaluate_output",
|
|
29
|
-
"enabled": false,
|
|
30
|
-
"description": "Send LLM output to SILU for semantic alignment evaluation against memory. Requires silu_output_evaluation=true on the server per-agent config."
|
|
31
29
|
}
|
|
32
30
|
},
|
|
33
31
|
"tools": {
|
|
@@ -42,8 +40,6 @@
|
|
|
42
40
|
"siu_status": { "enabled": false },
|
|
43
41
|
"siu_retrain": { "enabled": false },
|
|
44
42
|
"trigger_feedback": { "enabled": false },
|
|
45
|
-
"__sulcus_workflow__": { "enabled": true }
|
|
46
|
-
"memory_share": { "enabled": false },
|
|
47
|
-
"memory_cross_recall": { "enabled": false }
|
|
43
|
+
"__sulcus_workflow__": { "enabled": true }
|
|
48
44
|
}
|
|
49
45
|
}
|