@karmaniverous/jeeves-watcher-openclaw 0.15.0 → 0.15.2
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 +19 -0
- package/dist/index.js +19 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -27041,6 +27041,21 @@ const vcsRetentionConfigSchema = object$1({
|
|
|
27041
27041
|
.default('0 0 * * *')
|
|
27042
27042
|
.describe('Cron expression for squash schedule. Default: "0 0 * * *" (daily at midnight).'),
|
|
27043
27043
|
});
|
|
27044
|
+
/**
|
|
27045
|
+
* Git commit author identity configuration.
|
|
27046
|
+
*/
|
|
27047
|
+
const vcsAuthorConfigSchema = object$1({
|
|
27048
|
+
/** Author name for git commits. */
|
|
27049
|
+
name: string$2()
|
|
27050
|
+
.min(1)
|
|
27051
|
+
.default('jeeves-watcher')
|
|
27052
|
+
.describe('Author name for git commits. Default: "jeeves-watcher".'),
|
|
27053
|
+
/** Author email for git commits. */
|
|
27054
|
+
email: string$2()
|
|
27055
|
+
.min(1)
|
|
27056
|
+
.default('watcher@localhost')
|
|
27057
|
+
.describe('Author email for git commits. Default: "watcher@localhost".'),
|
|
27058
|
+
});
|
|
27044
27059
|
/**
|
|
27045
27060
|
* Root-level VCS configuration.
|
|
27046
27061
|
*/
|
|
@@ -27049,6 +27064,10 @@ const vcsConfigSchema = object$1({
|
|
|
27049
27064
|
enabled: boolean$2()
|
|
27050
27065
|
.default(false)
|
|
27051
27066
|
.describe('Enable git-backed version control of watched content. Default: false.'),
|
|
27067
|
+
/** Git commit author identity. Set per-repo during init. */
|
|
27068
|
+
author: vcsAuthorConfigSchema
|
|
27069
|
+
.optional()
|
|
27070
|
+
.describe('Git commit author identity. Set per-repo during init. Defaults: name="jeeves-watcher", email="watcher@localhost".'),
|
|
27052
27071
|
/** Debounce interval in milliseconds for batching commits. */
|
|
27053
27072
|
commitDebounceMs: number$2()
|
|
27054
27073
|
.int()
|
package/dist/index.js
CHANGED
|
@@ -27051,6 +27051,21 @@ const vcsRetentionConfigSchema = object$1({
|
|
|
27051
27051
|
.default('0 0 * * *')
|
|
27052
27052
|
.describe('Cron expression for squash schedule. Default: "0 0 * * *" (daily at midnight).'),
|
|
27053
27053
|
});
|
|
27054
|
+
/**
|
|
27055
|
+
* Git commit author identity configuration.
|
|
27056
|
+
*/
|
|
27057
|
+
const vcsAuthorConfigSchema = object$1({
|
|
27058
|
+
/** Author name for git commits. */
|
|
27059
|
+
name: string$2()
|
|
27060
|
+
.min(1)
|
|
27061
|
+
.default('jeeves-watcher')
|
|
27062
|
+
.describe('Author name for git commits. Default: "jeeves-watcher".'),
|
|
27063
|
+
/** Author email for git commits. */
|
|
27064
|
+
email: string$2()
|
|
27065
|
+
.min(1)
|
|
27066
|
+
.default('watcher@localhost')
|
|
27067
|
+
.describe('Author email for git commits. Default: "watcher@localhost".'),
|
|
27068
|
+
});
|
|
27054
27069
|
/**
|
|
27055
27070
|
* Root-level VCS configuration.
|
|
27056
27071
|
*/
|
|
@@ -27059,6 +27074,10 @@ const vcsConfigSchema = object$1({
|
|
|
27059
27074
|
enabled: boolean$2()
|
|
27060
27075
|
.default(false)
|
|
27061
27076
|
.describe('Enable git-backed version control of watched content. Default: false.'),
|
|
27077
|
+
/** Git commit author identity. Set per-repo during init. */
|
|
27078
|
+
author: vcsAuthorConfigSchema
|
|
27079
|
+
.optional()
|
|
27080
|
+
.describe('Git commit author identity. Set per-repo during init. Defaults: name="jeeves-watcher", email="watcher@localhost".'),
|
|
27062
27081
|
/** Debounce interval in milliseconds for batching commits. */
|
|
27063
27082
|
commitDebounceMs: number$2()
|
|
27064
27083
|
.int()
|
package/openclaw.plugin.json
CHANGED
|
@@ -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
|
+
"version": "0.15.2",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"url": "https://github.com/karmaniverous/jeeves-watcher/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@karmaniverous/jeeves": "^0.5.
|
|
11
|
-
"@karmaniverous/jeeves-watcher-core": "^0.2.
|
|
10
|
+
"@karmaniverous/jeeves": "^0.5.12",
|
|
11
|
+
"@karmaniverous/jeeves-watcher-core": "^0.2.2"
|
|
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.
|
|
115
|
+
"version": "0.15.2"
|
|
116
116
|
}
|