@digitalforgestudios/openclaw-sulcus 6.1.0 → 6.6.1
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 +0 -0
- package/bin/configure.mjs +0 -0
- package/index.js +5051 -0
- package/index.ts +971 -19
- package/openclaw.plugin.json +0 -0
- package/package.json +7 -2
- package/wasm/sulcus_wasm.js +0 -0
- package/wasm/sulcus_wasm_bg.wasm +0 -0
package/openclaw.plugin.json
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitalforgestudios/openclaw-sulcus",
|
|
3
|
-
"version": "6.1
|
|
4
|
-
"description": "Sulcus
|
|
3
|
+
"version": "6.6.1",
|
|
4
|
+
"description": "Sulcus \u2014 thermodynamic memory + Apache AGE knowledge graph for OpenClaw agents. v6.0: Multi-signal recall (semantic + hot-context + entity-graph + profile), configurable guardrails (outputGuard + toolGuard), token budget enforcement, context rebuild post-compaction, sulcus.toml config layer, SIRU training data logging, session-scoped memory, batch heat-boost. SIU v2 pipeline (SIVU/SICU/SILU/SITU/SIRU). Interaction-based decay. Curator sleep-cycle. Cross-agent sync.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|
|
7
7
|
"openclaw-plugin",
|
|
@@ -59,5 +59,10 @@
|
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"openclaw": ">=2026.3.0"
|
|
62
|
+
},
|
|
63
|
+
"main": "index.js",
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "npx esbuild index.ts --bundle --platform=node --target=node18 --outfile=index.js --external:openclaw --external:koffi --external:@sinclair/typebox --format=cjs",
|
|
66
|
+
"prepublishOnly": "npm run build"
|
|
62
67
|
}
|
|
63
68
|
}
|
package/wasm/sulcus_wasm.js
CHANGED
|
File without changes
|
package/wasm/sulcus_wasm_bg.wasm
CHANGED
|
File without changes
|