@karmaniverous/jeeves-watcher-openclaw 0.3.3 → 0.3.4

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/index.js CHANGED
@@ -11,11 +11,7 @@ const DEFAULT_API_URL = 'http://127.0.0.1:3458';
11
11
  const PLUGIN_SOURCE = 'jeeves-watcher-openclaw';
12
12
  /** Normalize a path to forward slashes and lowercase drive letter on Windows. */
13
13
  function normalizePath(p) {
14
- let result = p.replace(/\\/g, '/');
15
- if (/^[A-Z]:/.test(result)) {
16
- result = result[0].toLowerCase() + result.slice(1);
17
- }
18
- return result;
14
+ return p.replace(/\\/g, '/');
19
15
  }
20
16
  /**
21
17
  * Resolve the workspace path from gateway config.
@@ -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.3.3",
5
+ "version": "0.3.4",
6
6
  "kind": "memory",
7
7
  "skills": [
8
8
  "dist/skills/jeeves-watcher"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-watcher-openclaw",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
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",