@karmaniverous/jeeves-meta-openclaw 0.9.0 → 0.9.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 +8 -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
|
@@ -15477,14 +15477,14 @@ const PLATFORM_COMPONENTS = [
|
|
|
15477
15477
|
* Core library version, inlined at build time.
|
|
15478
15478
|
*
|
|
15479
15479
|
* @remarks
|
|
15480
|
-
* The `0.4.
|
|
15480
|
+
* The `0.4.5` placeholder is replaced by
|
|
15481
15481
|
* `@rollup/plugin-replace` during the build with the actual version
|
|
15482
15482
|
* from `package.json`. This ensures the correct version survives
|
|
15483
15483
|
* when consumers bundle core into their own dist (where runtime
|
|
15484
15484
|
* `import.meta.url`-based resolution would find the wrong package.json).
|
|
15485
15485
|
*/
|
|
15486
15486
|
/** The core library version from package.json (inlined at build time). */
|
|
15487
|
-
const CORE_VERSION = '0.4.
|
|
15487
|
+
const CORE_VERSION = '0.4.5';
|
|
15488
15488
|
|
|
15489
15489
|
/**
|
|
15490
15490
|
* Workspace and config root initialization.
|
|
@@ -16158,12 +16158,17 @@ const jeevesComponentDescriptorSchema = object({
|
|
|
16158
16158
|
.optional(),
|
|
16159
16159
|
/**
|
|
16160
16160
|
* Returns command + args for launching the service process.
|
|
16161
|
-
* Consumed by `
|
|
16161
|
+
* Consumed by `service install`.
|
|
16162
16162
|
*/
|
|
16163
16163
|
startCommand: _function({
|
|
16164
16164
|
input: [string()],
|
|
16165
16165
|
output: array(string()),
|
|
16166
16166
|
}),
|
|
16167
|
+
/** In-process service entry point for the CLI `start` command. */
|
|
16168
|
+
run: _function({
|
|
16169
|
+
input: [string()],
|
|
16170
|
+
output: promise(_void()),
|
|
16171
|
+
}),
|
|
16167
16172
|
/** TOOLS.md section name (e.g., 'Watcher'). */
|
|
16168
16173
|
sectionId: string().min(1, 'sectionId must be a non-empty string'),
|
|
16169
16174
|
/** Refresh interval in seconds (must be a prime number). */
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-meta-openclaw",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"author": "Jason Williscroft",
|
|
5
5
|
"description": "OpenClaw plugin for jeeves-meta — synthesis tools and virtual rule registration",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -120,6 +120,6 @@
|
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
"dependencies": {
|
|
123
|
-
"@karmaniverous/jeeves": "^0.4.
|
|
123
|
+
"@karmaniverous/jeeves": "^0.4.6"
|
|
124
124
|
}
|
|
125
125
|
}
|