@karmaniverous/jeeves-server-openclaw 0.7.2 → 0.7.3

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
@@ -15403,14 +15403,14 @@ const SECTION_ORDER = [
15403
15403
  * Core library version, inlined at build time.
15404
15404
  *
15405
15405
  * @remarks
15406
- * The `0.5.3` placeholder is replaced by
15406
+ * The `0.5.4` placeholder is replaced by
15407
15407
  * `@rollup/plugin-replace` during the build with the actual version
15408
15408
  * from `package.json`. This ensures the correct version survives
15409
15409
  * when consumers bundle core into their own dist (where runtime
15410
15410
  * `import.meta.url`-based resolution would find the wrong package.json).
15411
15411
  */
15412
15412
  /** The core library version from package.json (inlined at build time). */
15413
- const CORE_VERSION = '0.5.3';
15413
+ const CORE_VERSION = '0.5.4';
15414
15414
 
15415
15415
  /**
15416
15416
  * Workspace and config root initialization.
@@ -16599,7 +16599,7 @@ function createPluginCli(options) {
16599
16599
  throw new Error(`Plugin dist directory not found: ${distDir}. Ensure the plugin is built before installing.`);
16600
16600
  }
16601
16601
  console.log(`Copying dist to ${extensionsDir}...`);
16602
- copyDistFiles(distDir, extensionsDir);
16602
+ copyDistFiles(distDir, join(extensionsDir, 'dist'));
16603
16603
  // Copy package.json and openclaw.plugin.json from package root
16604
16604
  for (const file of ['package.json', 'openclaw.plugin.json']) {
16605
16605
  const src = join(pkgRoot, file);
package/dist/index.js CHANGED
@@ -15490,14 +15490,14 @@ const PLATFORM_COMPONENTS = [
15490
15490
  * Core library version, inlined at build time.
15491
15491
  *
15492
15492
  * @remarks
15493
- * The `0.5.3` placeholder is replaced by
15493
+ * The `0.5.4` placeholder is replaced by
15494
15494
  * `@rollup/plugin-replace` during the build with the actual version
15495
15495
  * from `package.json`. This ensures the correct version survives
15496
15496
  * when consumers bundle core into their own dist (where runtime
15497
15497
  * `import.meta.url`-based resolution would find the wrong package.json).
15498
15498
  */
15499
15499
  /** The core library version from package.json (inlined at build time). */
15500
- const CORE_VERSION = '0.5.3';
15500
+ const CORE_VERSION = '0.5.4';
15501
15501
 
15502
15502
  /**
15503
15503
  * 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.7.2",
5
+ "version": "0.7.3",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-server"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-server-openclaw",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -115,7 +115,6 @@
115
115
  "hideCredit": true
116
116
  },
117
117
  "dependencies": {
118
- "@karmaniverous/jeeves": "^0.5.4",
119
118
  "zod": "^4.3.6"
120
119
  }
121
120
  }