@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 CHANGED
@@ -110,7 +110,11 @@ function buildVirtualRules(workspace) {
110
110
  {
111
111
  type: 'object',
112
112
  properties: {
113
- domain: { type: 'string', set: 'memory' },
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
- domain: { type: 'string', set: 'memory' },
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: 'domain', match: { value: 'memory' } }],
219
+ must: [{ key: 'domains', match: { value: 'memory' } }],
212
220
  },
213
221
  };
214
222
  if (params.maxResults !== undefined)
@@ -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.6",
5
+ "version": "0.3.7",
6
6
  "kind": "memory",
7
7
  "skills": [
8
8
  "dist/skills/jeeves-watcher"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-watcher-openclaw",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "author": "Jason Williscroft",
5
5
  "description": "OpenClaw plugin for jeeves-watcher — semantic search and metadata enrichment tools",
6
6
  "license": "BSD-3-Clause",