@agenr/agenr-plugin 1.7.3 → 1.8.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.
@@ -1,17 +1,11 @@
1
1
  {
2
2
  "id": "agenr",
3
3
  "name": "agenr",
4
- "version": "1.7.3",
4
+ "version": "1.8.0",
5
5
  "description": "agenr memory plugin for OpenClaw",
6
6
  "kind": "memory",
7
7
  "contracts": {
8
- "tools": [
9
- "agenr_store",
10
- "agenr_recall",
11
- "agenr_retire",
12
- "agenr_update",
13
- "agenr_trace"
14
- ]
8
+ "tools": ["agenr_store", "agenr_recall", "agenr_retire", "agenr_update", "agenr_trace"]
15
9
  },
16
10
  "uiHints": {
17
11
  "dbPath": {
@@ -37,6 +31,10 @@
37
31
  "storeNudge": {
38
32
  "label": "Store nudge",
39
33
  "help": "Optional mid-session reminder settings for prompting durable memory storage after several turns of memory silence."
34
+ },
35
+ "memoryPolicy": {
36
+ "label": "Memory policy",
37
+ "help": "Optional runtime overrides for claim-aware read behavior such as slot-policy classes."
40
38
  }
41
39
  },
42
40
  "configSchema": {
@@ -86,6 +84,31 @@
86
84
  "description": "Maximum nudges injected during one session lifetime. Defaults to 5."
87
85
  }
88
86
  }
87
+ },
88
+ "memoryPolicy": {
89
+ "type": "object",
90
+ "additionalProperties": false,
91
+ "description": "Optional runtime overrides for claim-aware read behavior exposed by the OpenClaw adapter.",
92
+ "properties": {
93
+ "slotPolicies": {
94
+ "type": "object",
95
+ "additionalProperties": false,
96
+ "description": "Claim-slot policy overrides keyed by canonical claim-key attribute head.",
97
+ "properties": {
98
+ "attributeHeads": {
99
+ "type": "object",
100
+ "description": "Map canonical attribute heads such as `integration` or `preference` to `exclusive` or `multivalued` read-time slot behavior.",
101
+ "propertyNames": {
102
+ "pattern": "^[A-Za-z0-9][A-Za-z0-9_-]*$"
103
+ },
104
+ "additionalProperties": {
105
+ "type": "string",
106
+ "enum": ["exclusive", "multivalued"]
107
+ }
108
+ }
109
+ }
110
+ }
111
+ }
89
112
  }
90
113
  }
91
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenr/agenr-plugin",
3
- "version": "1.7.3",
3
+ "version": "1.8.0",
4
4
  "description": "agenr memory plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "exports": {
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@libsql/client": "^0.17.2",
25
- "openclaw": "^2026.3.24"
25
+ "openclaw": "^2026.4.9"
26
26
  },
27
27
  "engines": {
28
28
  "node": ">=24"