@karmaniverous/jeeves-watcher-openclaw 0.3.6 → 0.3.7
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 +11 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -110,7 +110,11 @@ function buildVirtualRules(workspace) {
|
|
|
110
110
|
{
|
|
111
111
|
type: 'object',
|
|
112
112
|
properties: {
|
|
113
|
-
|
|
113
|
+
domains: {
|
|
114
|
+
type: 'array',
|
|
115
|
+
items: { type: 'string' },
|
|
116
|
+
set: ['memory'],
|
|
117
|
+
},
|
|
114
118
|
kind: { type: 'string', set: 'long-term' },
|
|
115
119
|
},
|
|
116
120
|
},
|
|
@@ -132,7 +136,11 @@ function buildVirtualRules(workspace) {
|
|
|
132
136
|
{
|
|
133
137
|
type: 'object',
|
|
134
138
|
properties: {
|
|
135
|
-
|
|
139
|
+
domains: {
|
|
140
|
+
type: 'array',
|
|
141
|
+
items: { type: 'string' },
|
|
142
|
+
set: ['memory'],
|
|
143
|
+
},
|
|
136
144
|
kind: { type: 'string', set: 'daily-log' },
|
|
137
145
|
},
|
|
138
146
|
},
|
|
@@ -208,7 +216,7 @@ function createMemoryTools(api, baseUrl) {
|
|
|
208
216
|
const body = {
|
|
209
217
|
query: params.query,
|
|
210
218
|
filter: {
|
|
211
|
-
must: [{ key: '
|
|
219
|
+
must: [{ key: 'domains', match: { value: 'memory' } }],
|
|
212
220
|
},
|
|
213
221
|
};
|
|
214
222
|
if (params.maxResults !== undefined)
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "jeeves-watcher-openclaw",
|
|
3
3
|
"name": "Jeeves Watcher",
|
|
4
4
|
"description": "Semantic search, metadata enrichment, and instance administration for a jeeves-watcher deployment.",
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.7",
|
|
6
6
|
"kind": "memory",
|
|
7
7
|
"skills": [
|
|
8
8
|
"dist/skills/jeeves-watcher"
|
package/package.json
CHANGED