@karmaniverous/jeeves-watcher-openclaw 0.15.2 → 0.15.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/cli.js CHANGED
@@ -27092,6 +27092,18 @@ const vcsConfigSchema = object$1({
27092
27092
  defaultAccessToken: string$2()
27093
27093
  .optional()
27094
27094
  .describe('Default git access token for all roots. Supports env var substitution (e.g., "${GIT_TOKEN}").'),
27095
+ /** Age in ms after which an index.lock is considered stale and force-removed. */
27096
+ staleLockThresholdMs: number$2()
27097
+ .int()
27098
+ .min(5000)
27099
+ .default(60000)
27100
+ .describe('Age in ms after which an index.lock is considered stale and force-removed. Default: 60000.'),
27101
+ /** Circuit breaker: stop re-queuing after this many consecutive commit failures. */
27102
+ maxConsecutiveFailures: number$2()
27103
+ .int()
27104
+ .min(1)
27105
+ .default(5)
27106
+ .describe('Circuit breaker: stop re-queuing after this many consecutive commit failures. Default: 5.'),
27095
27107
  });
27096
27108
  /**
27097
27109
  * Per-root VCS overrides extending the root-level VCS config.
package/dist/index.js CHANGED
@@ -27102,6 +27102,18 @@ const vcsConfigSchema = object$1({
27102
27102
  defaultAccessToken: string$2()
27103
27103
  .optional()
27104
27104
  .describe('Default git access token for all roots. Supports env var substitution (e.g., "${GIT_TOKEN}").'),
27105
+ /** Age in ms after which an index.lock is considered stale and force-removed. */
27106
+ staleLockThresholdMs: number$2()
27107
+ .int()
27108
+ .min(5000)
27109
+ .default(60000)
27110
+ .describe('Age in ms after which an index.lock is considered stale and force-removed. Default: 60000.'),
27111
+ /** Circuit breaker: stop re-queuing after this many consecutive commit failures. */
27112
+ maxConsecutiveFailures: number$2()
27113
+ .int()
27114
+ .min(1)
27115
+ .default(5)
27116
+ .describe('Circuit breaker: stop re-queuing after this many consecutive commit failures. Default: 5.'),
27105
27117
  });
27106
27118
  /**
27107
27119
  * Per-root VCS overrides extending the root-level VCS config.
@@ -889,6 +889,8 @@ watcher_vcs_check: path="J:/domains/jira/PROJ-123.json"
889
889
 
890
890
  Version tracking is controlled by the `vcs.enabled` config setting. When set to `true`, the watcher automatically versions all watched files. No additional setup is required — just enable it and history starts accumulating.
891
891
 
892
+ Squash retention activates by default when VCS is enabled, even without explicit `retention` config. The defaults are: 30 days max age, 100 versions max, and a daily midnight cron schedule (`0 0 * * *`). These defaults prevent unbounded commit history growth.
893
+
892
894
  ### Excluding Paths
893
895
 
894
896
  Not all watched files need version history. For example, if Jira issues are synced read-only, there's nothing to "undo." Use `watcher_vcs_exclude` to stop tracking specific paths.
@@ -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.2",
5
+ "version": "0.15.4",
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.2"
11
+ "@karmaniverous/jeeves-watcher-core": "^0.2.3"
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.2"
115
+ "version": "0.15.4"
116
116
  }