@bamdra/bamdra-openclaw-memory 0.3.15 → 0.3.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamdra/bamdra-openclaw-memory",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Unified topic-aware memory plugin for OpenClaw with durable SQLite recall and bounded context growth.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.bamdra.com",
@@ -59,8 +59,8 @@
59
59
  }
60
60
  },
61
61
  "dependencies": {
62
- "@bamdra/bamdra-user-bind": "^0.1.10",
63
- "@bamdra/bamdra-memory-vector": "^0.1.10"
62
+ "@bamdra/bamdra-user-bind": "^0.1.11",
63
+ "@bamdra/bamdra-memory-vector": "^0.1.11"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/node": "^24.5.2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamdra/bamdra-openclaw-memory",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Unified topic-aware memory plugin for OpenClaw with durable SQLite recall and bounded context growth.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.bamdra.com",
@@ -59,8 +59,8 @@
59
59
  }
60
60
  },
61
61
  "dependencies": {
62
- "@bamdra/bamdra-user-bind": "^0.1.10",
63
- "@bamdra/bamdra-memory-vector": "^0.1.10"
62
+ "@bamdra/bamdra-user-bind": "^0.1.11",
63
+ "@bamdra/bamdra-memory-vector": "^0.1.11"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/node": "^24.5.2"
@@ -11,6 +11,8 @@ This skill is an optional behavior layer. It improves tool judgment, but the run
11
11
 
12
12
  Treat `bamdra-user-bind` as the primary user personalization layer. In practice it should cover most of what a per-user `USER.md` file would normally do: preferred address, long-lived preferences, role, personality notes, and other stable profile traits for the current bound user.
13
13
 
14
+ Workspace-level `USER.md` files should stay thin and avoid repeating per-user address preferences. Use the bound profile as the source of truth for greeting style and default address.
15
+
14
16
  ## Operating Goal
15
17
 
16
18
  Make memory feel natural:
@@ -21,6 +23,7 @@ Make memory feel natural:
21
23
  - avoid leaking unrelated memory into the current answer
22
24
  - avoid narrating internal storage mechanics unless the user asks
23
25
  - personalize tone and defaults from the bound user profile when that improves the response
26
+ - prefer the bound profile over workspace notes for address, nickname, and stable personal style
24
27
 
25
28
  ## Decision Policy
26
29