@karmaniverous/jeeves-server-openclaw 0.6.1 → 0.6.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 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.4` placeholder is replaced by
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.4';
15317
+ const CORE_VERSION = '0.4.5';
15318
15318
 
15319
15319
  /**
15320
15320
  * Workspace and config root initialization.
@@ -16413,6 +16413,8 @@ const PLUGIN_ID = 'jeeves-server-openclaw';
16413
16413
  * @packageDocumentation
16414
16414
  */
16415
16415
  const distDir = resolve(dirname(fileURLToPath(import.meta.url)));
16416
+ // Type assertion: core's bundled .d.ts doesn't fully resolve the Command
16417
+ // return type for eslint, but the runtime value is a Commander instance.
16416
16418
  const program = createPluginCli({
16417
16419
  pluginId: PLUGIN_ID,
16418
16420
  distDir,
package/dist/index.js CHANGED
@@ -15488,14 +15488,14 @@ const PLATFORM_COMPONENTS = [
15488
15488
  * Core library version, inlined at build time.
15489
15489
  *
15490
15490
  * @remarks
15491
- * The `0.4.4` placeholder is replaced by
15491
+ * The `0.4.5` placeholder is replaced by
15492
15492
  * `@rollup/plugin-replace` during the build with the actual version
15493
15493
  * from `package.json`. This ensures the correct version survives
15494
15494
  * when consumers bundle core into their own dist (where runtime
15495
15495
  * `import.meta.url`-based resolution would find the wrong package.json).
15496
15496
  */
15497
15497
  /** The core library version from package.json (inlined at build time). */
15498
- const CORE_VERSION = '0.4.4';
15498
+ const CORE_VERSION = '0.4.5';
15499
15499
 
15500
15500
  /**
15501
15501
  * Workspace and config root initialization.
@@ -2,7 +2,7 @@
2
2
  "id": "jeeves-server-openclaw",
3
3
  "name": "Jeeves Server",
4
4
  "description": "File browsing, document sharing, export, and event gateway tools for jeeves-server.",
5
- "version": "0.6.1",
5
+ "version": "0.6.2",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-server"
8
8
  ],
@@ -40,4 +40,4 @@
40
40
  "placeholder": "j:/config"
41
41
  }
42
42
  }
43
- }
43
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-server-openclaw",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -85,7 +85,7 @@
85
85
  },
86
86
  "hooks": {
87
87
  "after:bump": [
88
- "node -e \"const f='openclaw.plugin.json';const j=JSON.parse(require('fs').readFileSync(f,'utf8'));j.version='${version}';require('fs').writeFileSync(f,JSON.stringify(j,null,2)+'\\n')\""
88
+ "node -e \"const f='openclaw.plugin.json';const j=JSON.parse(require('fs').readFileSync(f,'utf8'));j.version='${version}';require('fs').writeFileSync(f,JSON.stringify(j,null,2)+'')\""
89
89
  ],
90
90
  "after:init": [
91
91
  "npm run lint",
@@ -115,6 +115,7 @@
115
115
  "hideCredit": true
116
116
  },
117
117
  "dependencies": {
118
- "@karmaniverous/jeeves": "^0.4.5"
118
+ "@karmaniverous/jeeves": "^0.4.6",
119
+ "zod": "^4.3.0"
119
120
  }
120
121
  }