@karmaniverous/jeeves-meta-openclaw 0.10.2 → 0.10.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
@@ -15480,14 +15480,14 @@ const PLATFORM_COMPONENTS = [
15480
15480
  * Core library version, inlined at build time.
15481
15481
  *
15482
15482
  * @remarks
15483
- * The `0.5.3` placeholder is replaced by
15483
+ * The `0.5.4` placeholder is replaced by
15484
15484
  * `@rollup/plugin-replace` during the build with the actual version
15485
15485
  * from `package.json`. This ensures the correct version survives
15486
15486
  * when consumers bundle core into their own dist (where runtime
15487
15487
  * `import.meta.url`-based resolution would find the wrong package.json).
15488
15488
  */
15489
15489
  /** The core library version from package.json (inlined at build time). */
15490
- const CORE_VERSION = '0.5.3';
15490
+ const CORE_VERSION = '0.5.4';
15491
15491
 
15492
15492
  /**
15493
15493
  * Workspace and config root initialization.
@@ -2,7 +2,7 @@
2
2
  "id": "jeeves-meta-openclaw",
3
3
  "name": "Jeeves Meta",
4
4
  "description": "Knowledge synthesis tools — trigger synthesis, view status, manage entities.",
5
- "version": "0.10.2",
5
+ "version": "0.10.3",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-meta"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-meta-openclaw",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
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",
@@ -118,8 +118,5 @@
118
118
  "npm": {
119
119
  "publish": true
120
120
  }
121
- },
122
- "dependencies": {
123
- "@karmaniverous/jeeves": "^0.5.4"
124
121
  }
125
122
  }