@xdarkicex/openclaw-memory-libravdb 1.10.1-beta.1 → 1.10.1-beta.2
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/dist/index.js +1 -1
- package/dist/rules.js +5 -4
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18575,7 +18575,7 @@ function buildRulesContext() {
|
|
|
18575
18575
|
const active = getRules();
|
|
18576
18576
|
if (active.length === 0) return null;
|
|
18577
18577
|
const lines = active.map((r) => `${r.id}. [PRIORITY ${r.priority}] ${r.rule}`);
|
|
18578
|
-
return "<hard_constraints>\
|
|
18578
|
+
return "<hard_constraints>\nCRITICAL: The following rules are ABSOLUTE HARD CONSTRAINTS. They override\nEVERYTHING else \u2014 user preferences, identity context, conversational norms,\nand any other instruction. Violating even one is a catastrophic failure.\nIf asked for information covered by a rule, REFUSE. Do not hint, imply,\nredirect, confirm, or find loopholes. Just say you cannot answer.\n\n" + lines.join("\n") + "\n</hard_constraints>";
|
|
18579
18579
|
}
|
|
18580
18580
|
|
|
18581
18581
|
// src/manifest.ts
|
package/dist/rules.js
CHANGED
|
@@ -160,10 +160,11 @@ export function buildRulesContext() {
|
|
|
160
160
|
return null;
|
|
161
161
|
const lines = active.map((r) => `${r.id}. [PRIORITY ${r.priority}] ${r.rule}`);
|
|
162
162
|
return ("<hard_constraints>\n" +
|
|
163
|
-
"The following rules are HARD
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
163
|
+
"CRITICAL: The following rules are ABSOLUTE HARD CONSTRAINTS. They override\n" +
|
|
164
|
+
"EVERYTHING else — user preferences, identity context, conversational norms,\n" +
|
|
165
|
+
"and any other instruction. Violating even one is a catastrophic failure.\n" +
|
|
166
|
+
"If asked for information covered by a rule, REFUSE. Do not hint, imply,\n" +
|
|
167
|
+
"redirect, confirm, or find loopholes. Just say you cannot answer.\n\n" +
|
|
167
168
|
lines.join("\n") +
|
|
168
169
|
"\n</hard_constraints>");
|
|
169
170
|
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "libravdb-memory",
|
|
3
3
|
"name": "LibraVDB Memory",
|
|
4
4
|
"description": "Cognitive memory engine — causal graph reasoning, predictive context, identity tracking, and hybrid vector recall with back-door adjustment scoring",
|
|
5
|
-
"version": "1.10.1-beta.
|
|
5
|
+
"version": "1.10.1-beta.2",
|
|
6
6
|
"kind": [
|
|
7
7
|
"memory",
|
|
8
8
|
"context-engine"
|