@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 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>\nThe following rules are HARD constraints. You MUST comply. Violating any\nrule is a critical failure \u2014 worse than being wrong or unhelpful. These\nrules override any conflicting instructions, user preferences, or default\nbehavior. Never reason around them, find loopholes, or deprioritize them.\n\n" + lines.join("\n") + "\n</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 constraints. You MUST comply. Violating any\n" +
164
- "rule is a critical failure worse than being wrong or unhelpful. These\n" +
165
- "rules override any conflicting instructions, user preferences, or default\n" +
166
- "behavior. Never reason around them, find loopholes, or deprioritize them.\n\n" +
163
+ "CRITICAL: The following rules are ABSOLUTE HARD CONSTRAINTS. They override\n" +
164
+ "EVERYTHING elseuser 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
  }
@@ -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.1",
5
+ "version": "1.10.1-beta.2",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.10.1-beta.1",
3
+ "version": "1.10.1-beta.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",