@karmaniverous/jeeves-watcher-openclaw 0.15.5 → 0.15.6

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
@@ -27104,6 +27104,11 @@ const vcsConfigSchema = object$1({
27104
27104
  .min(1)
27105
27105
  .default(5)
27106
27106
  .describe('Circuit breaker: stop re-queuing after this many consecutive commit failures. Default: 5.'),
27107
+ /** Git branch name for VCS operations. SquashManager and startup recovery use this instead of dynamic detection. */
27108
+ branch: string$2()
27109
+ .min(1)
27110
+ .default('master')
27111
+ .describe('Git branch name for VCS operations. Default: "master".'),
27107
27112
  });
27108
27113
  /**
27109
27114
  * Per-root VCS overrides extending the root-level VCS config.
package/dist/index.js CHANGED
@@ -27305,6 +27305,11 @@ const vcsConfigSchema = object$1({
27305
27305
  .min(1)
27306
27306
  .default(5)
27307
27307
  .describe('Circuit breaker: stop re-queuing after this many consecutive commit failures. Default: 5.'),
27308
+ /** Git branch name for VCS operations. SquashManager and startup recovery use this instead of dynamic detection. */
27309
+ branch: string$2()
27310
+ .min(1)
27311
+ .default('master')
27312
+ .describe('Git branch name for VCS operations. Default: "master".'),
27308
27313
  });
27309
27314
  /**
27310
27315
  * Per-root VCS overrides extending the root-level VCS 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.15.5",
5
+ "version": "0.15.6",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-watcher"
8
8
  ],
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@karmaniverous/jeeves": "^0.5.12",
11
- "@karmaniverous/jeeves-watcher-core": "^0.2.4"
11
+ "@karmaniverous/jeeves-watcher-core": "^0.2.5"
12
12
  },
13
13
  "description": "OpenClaw plugin for jeeves-watcher — semantic search and metadata enrichment tools",
14
14
  "devDependencies": {
@@ -112,5 +112,5 @@
112
112
  },
113
113
  "type": "module",
114
114
  "types": "dist/index.d.ts",
115
- "version": "0.15.5"
115
+ "version": "0.15.6"
116
116
  }