@ngo-a/native-memory-citations 2026.6.8 → 2026.6.9

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.
@@ -26,16 +26,171 @@
26
26
  "maxFileBytes": {
27
27
  "type": "number",
28
28
  "description": "Per-file size cap in bytes. Files larger than this are skipped. Default 1048576."
29
+ },
30
+ "mode": {
31
+ "anyOf": [
32
+ {
33
+ "type": "string",
34
+ "const": "bounded"
35
+ },
36
+ {
37
+ "type": "string",
38
+ "const": "enhanced"
39
+ }
40
+ ],
41
+ "description": "Operating mode. bounded is default and preserves 2026.6.x behavior; enhanced enables explicitly configured pillars."
42
+ },
43
+ "dreaming": {
44
+ "type": "object",
45
+ "properties": {
46
+ "autoEnable": {
47
+ "type": "boolean",
48
+ "description": "In enhanced mode, allow the dreaming guard to enable OpenClaw dreaming."
49
+ },
50
+ "enforce": {
51
+ "type": "boolean",
52
+ "description": "In enhanced mode, warn when dreaming-dependent features run without host dreaming."
53
+ },
54
+ "blockToolsWhenOff": {
55
+ "type": "boolean",
56
+ "description": "In enhanced mode, make dreaming-dependent tools fail hard when dreaming is off."
57
+ }
58
+ },
59
+ "additionalProperties": false
60
+ },
61
+ "graph": {
62
+ "type": "object",
63
+ "properties": {
64
+ "enabled": {
65
+ "type": "boolean",
66
+ "description": "Enable the local zero-LLM graph sidecar tools. Default false."
67
+ },
68
+ "edgeTypes": {
69
+ "type": "array",
70
+ "items": {
71
+ "anyOf": [
72
+ {
73
+ "type": "string",
74
+ "const": "works_at"
75
+ },
76
+ {
77
+ "type": "string",
78
+ "const": "invested_in"
79
+ },
80
+ {
81
+ "type": "string",
82
+ "const": "founded"
83
+ },
84
+ {
85
+ "type": "string",
86
+ "const": "advises"
87
+ },
88
+ {
89
+ "type": "string",
90
+ "const": "attended"
91
+ },
92
+ {
93
+ "type": "string",
94
+ "const": "mentions"
95
+ }
96
+ ]
97
+ },
98
+ "description": "Typed graph edges to extract."
99
+ },
100
+ "maxDepth": {
101
+ "type": "number",
102
+ "description": "Maximum traversal depth for native_memory_graph. Default 3."
103
+ }
104
+ },
105
+ "additionalProperties": false
106
+ },
107
+ "recall": {
108
+ "type": "object",
109
+ "properties": {
110
+ "semantic": {
111
+ "type": "boolean",
112
+ "description": "Enhanced mode placeholder for host semantic recall fusion. Default false."
113
+ },
114
+ "rerank": {
115
+ "type": "boolean",
116
+ "description": "Enhanced mode placeholder for reranking fused candidates. Default false."
117
+ },
118
+ "snapshotFirst": {
119
+ "type": "boolean",
120
+ "description": "Enhanced mode placeholder for tier-0 snapshot recall. Default false."
121
+ },
122
+ "intentClassifier": {
123
+ "type": "boolean",
124
+ "description": "Enhanced mode placeholder for intent classification. Default false."
125
+ }
126
+ },
127
+ "additionalProperties": false
128
+ },
129
+ "injection": {
130
+ "type": "object",
131
+ "properties": {
132
+ "enabled": {
133
+ "type": "boolean",
134
+ "description": "Enhanced mode placeholder for snapshot prompt injection. Default false."
135
+ },
136
+ "tokenCap": {
137
+ "type": "number",
138
+ "description": "Maximum injected snapshot budget. Default 1300."
139
+ }
140
+ },
141
+ "additionalProperties": false
142
+ },
143
+ "observations": {
144
+ "type": "object",
145
+ "properties": {
146
+ "enabled": {
147
+ "type": "boolean",
148
+ "description": "Enhanced mode placeholder for observation tagging. Default false."
149
+ },
150
+ "model": {
151
+ "type": "string",
152
+ "description": "Optional host model profile for future observation extraction. When omitted, use the host configured summarization or fast model."
153
+ },
154
+ "extraction": {
155
+ "type": "boolean",
156
+ "description": "When false, observation tagging uses raw append fallback. Default true."
157
+ },
158
+ "maxBytes": {
159
+ "type": "number",
160
+ "description": "Maximum retained observations.jsonl size in bytes. Default 1048576."
161
+ }
162
+ },
163
+ "additionalProperties": false
164
+ },
165
+ "wikiBridge": {
166
+ "type": "object",
167
+ "properties": {
168
+ "enabled": {
169
+ "type": "boolean",
170
+ "description": "Enable optional memory-wiki bridge when present. Default false."
171
+ }
172
+ },
173
+ "additionalProperties": false
29
174
  }
30
175
  },
31
176
  "additionalProperties": false
32
177
  },
33
- "version": "2026.6.8",
178
+ "version": "2026.6.9",
34
179
  "contracts": {
35
180
  "tools": [
36
181
  "native_memory_search",
37
182
  "native_memory_fetch",
38
- "native_memory_answer"
183
+ "native_memory_answer",
184
+ "native_memory_graph",
185
+ "native_memory_extract"
39
186
  ]
187
+ },
188
+ "toolMetadata": {
189
+ "native_memory_graph": {
190
+ "optional": true
191
+ },
192
+ "native_memory_extract": {
193
+ "optional": true
194
+ }
40
195
  }
41
196
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngo-a/native-memory-citations",
3
- "version": "2026.6.8",
3
+ "version": "2026.6.9",
4
4
  "type": "module",
5
5
  "description": "Native OpenClaw plugin for cited local memory search and retrieval.",
6
6
  "license": "MIT",
@@ -30,8 +30,8 @@
30
30
  "./dist/index.js"
31
31
  ],
32
32
  "compat": {
33
- "pluginApi": ">=2026.5.17",
34
- "minGatewayVersion": "2026.5.17"
33
+ "pluginApi": ">=2026.6.8",
34
+ "minGatewayVersion": "2026.6.8"
35
35
  },
36
36
  "build": {
37
37
  "openclawVersion": "2026.6.8",
@@ -53,10 +53,8 @@
53
53
  "plugin:build": "npm run build && openclaw plugins build --entry ./dist/index.js",
54
54
  "plugin:build:check": "npm run build && openclaw plugins build --entry ./dist/index.js --check",
55
55
  "plugin:validate": "npm run plugin:build && openclaw plugins validate --entry ./dist/index.js",
56
- "test": "vitest run --dir src --no-file-parallelism"
57
- },
58
- "dependencies": {
59
- "typebox": "1.1.39"
56
+ "test": "vitest run --dir src --no-file-parallelism",
57
+ "test:stress": "vitest run src/bounded-invariants.test.ts src/stress-soak.test.ts --no-file-parallelism"
60
58
  },
61
59
  "devDependencies": {
62
60
  "@types/node": "^22.19.0",
@@ -65,6 +63,6 @@
65
63
  "vitest": "^3.2.0"
66
64
  },
67
65
  "peerDependencies": {
68
- "openclaw": ">=2026.5.17"
66
+ "openclaw": ">=2026.6.8"
69
67
  }
70
68
  }