@karmaniverous/jeeves-watcher-openclaw 0.13.0 → 0.13.2
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/cli.js +8 -3
- package/dist/index.js +13 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -15307,14 +15307,14 @@ const SECTION_ORDER = [
|
|
|
15307
15307
|
* Core library version, inlined at build time.
|
|
15308
15308
|
*
|
|
15309
15309
|
* @remarks
|
|
15310
|
-
* The `0.4.
|
|
15310
|
+
* The `0.4.5` placeholder is replaced by
|
|
15311
15311
|
* `@rollup/plugin-replace` during the build with the actual version
|
|
15312
15312
|
* from `package.json`. This ensures the correct version survives
|
|
15313
15313
|
* when consumers bundle core into their own dist (where runtime
|
|
15314
15314
|
* `import.meta.url`-based resolution would find the wrong package.json).
|
|
15315
15315
|
*/
|
|
15316
15316
|
/** The core library version from package.json (inlined at build time). */
|
|
15317
|
-
const CORE_VERSION = '0.4.
|
|
15317
|
+
const CORE_VERSION = '0.4.5';
|
|
15318
15318
|
|
|
15319
15319
|
/**
|
|
15320
15320
|
* Workspace and config root initialization.
|
|
@@ -16315,12 +16315,17 @@ object({
|
|
|
16315
16315
|
.optional(),
|
|
16316
16316
|
/**
|
|
16317
16317
|
* Returns command + args for launching the service process.
|
|
16318
|
-
* Consumed by `
|
|
16318
|
+
* Consumed by `service install`.
|
|
16319
16319
|
*/
|
|
16320
16320
|
startCommand: _function({
|
|
16321
16321
|
input: [string()],
|
|
16322
16322
|
output: array(string()),
|
|
16323
16323
|
}),
|
|
16324
|
+
/** In-process service entry point for the CLI `start` command. */
|
|
16325
|
+
run: _function({
|
|
16326
|
+
input: [string()],
|
|
16327
|
+
output: promise(_void()),
|
|
16328
|
+
}),
|
|
16324
16329
|
/** TOOLS.md section name (e.g., 'Watcher'). */
|
|
16325
16330
|
sectionId: string().min(1, 'sectionId must be a non-empty string'),
|
|
16326
16331
|
/** Refresh interval in seconds (must be a prime number). */
|
package/dist/index.js
CHANGED
|
@@ -15478,14 +15478,14 @@ const PLATFORM_COMPONENTS = [
|
|
|
15478
15478
|
* Core library version, inlined at build time.
|
|
15479
15479
|
*
|
|
15480
15480
|
* @remarks
|
|
15481
|
-
* The `0.4.
|
|
15481
|
+
* The `0.4.5` placeholder is replaced by
|
|
15482
15482
|
* `@rollup/plugin-replace` during the build with the actual version
|
|
15483
15483
|
* from `package.json`. This ensures the correct version survives
|
|
15484
15484
|
* when consumers bundle core into their own dist (where runtime
|
|
15485
15485
|
* `import.meta.url`-based resolution would find the wrong package.json).
|
|
15486
15486
|
*/
|
|
15487
15487
|
/** The core library version from package.json (inlined at build time). */
|
|
15488
|
-
const CORE_VERSION = '0.4.
|
|
15488
|
+
const CORE_VERSION = '0.4.5';
|
|
15489
15489
|
|
|
15490
15490
|
/**
|
|
15491
15491
|
* Workspace and config root initialization.
|
|
@@ -16159,12 +16159,17 @@ const jeevesComponentDescriptorSchema = object({
|
|
|
16159
16159
|
.optional(),
|
|
16160
16160
|
/**
|
|
16161
16161
|
* Returns command + args for launching the service process.
|
|
16162
|
-
* Consumed by `
|
|
16162
|
+
* Consumed by `service install`.
|
|
16163
16163
|
*/
|
|
16164
16164
|
startCommand: _function({
|
|
16165
16165
|
input: [string()],
|
|
16166
16166
|
output: array(string()),
|
|
16167
16167
|
}),
|
|
16168
|
+
/** In-process service entry point for the CLI `start` command. */
|
|
16169
|
+
run: _function({
|
|
16170
|
+
input: [string()],
|
|
16171
|
+
output: promise(_void()),
|
|
16172
|
+
}),
|
|
16168
16173
|
/** TOOLS.md section name (e.g., 'Watcher'). */
|
|
16169
16174
|
sectionId: string().min(1, 'sectionId must be a non-empty string'),
|
|
16170
16175
|
/** Refresh interval in seconds (must be a prime number). */
|
|
@@ -17923,6 +17928,11 @@ function createWatcherComponent(options) {
|
|
|
17923
17928
|
'-c',
|
|
17924
17929
|
configPath,
|
|
17925
17930
|
],
|
|
17931
|
+
// Plugin-side descriptor is only used by ComponentWriter for managed
|
|
17932
|
+
// content. The real run callback lives in the service descriptor.
|
|
17933
|
+
run: () => {
|
|
17934
|
+
return Promise.reject(new Error('run() is not available on the plugin-side descriptor'));
|
|
17935
|
+
},
|
|
17926
17936
|
sectionId: 'Watcher',
|
|
17927
17937
|
refreshIntervalSeconds: 71,
|
|
17928
17938
|
generateToolsContent: getContent,
|
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.13.
|
|
5
|
+
"version": "0.13.2",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-watcher-openclaw",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
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",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"hideCredit": true
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@karmaniverous/jeeves": "^0.4.
|
|
60
|
+
"@karmaniverous/jeeves": "^0.4.6"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@dotenvx/dotenvx": "^1.59.1",
|