@karmaniverous/jeeves-watcher-openclaw 0.14.8 → 0.14.10
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/content/skills/coding.md +149 -0
- package/content/skills/jeeves.md +122 -0
- package/content/skills/operations.md +125 -0
- package/content/skills/playbooks.md +75 -0
- package/content/skills/slack-bot-provisioner.md +57 -0
- package/dist/cli.js +24303 -1280
- package/dist/index.js +23882 -1280
- package/dist/src/constants.d.ts +1 -8
- package/openclaw.plugin.json +2 -2
- package/package.json +14 -21
package/dist/src/constants.d.ts
CHANGED
|
@@ -6,16 +6,9 @@
|
|
|
6
6
|
* Imported by both the plugin bundle (`index.ts`) and the CLI bundle
|
|
7
7
|
* (`cli.ts`). Rollup inlines these into each output independently.
|
|
8
8
|
*/
|
|
9
|
-
|
|
10
|
-
export declare const COMPONENT_NAME = "watcher";
|
|
9
|
+
export { COMPONENT_NAME, DEFAULT_PORT, PLUGIN_PACKAGE, SERVICE_PACKAGE, } from '@karmaniverous/jeeves-watcher-core';
|
|
11
10
|
/** Plugin identifier used in OpenClaw config and extensions directory. */
|
|
12
11
|
export declare const PLUGIN_ID = "jeeves-watcher-openclaw";
|
|
13
|
-
/** npm package name for the service. */
|
|
14
|
-
export declare const SERVICE_PACKAGE = "@karmaniverous/jeeves-watcher";
|
|
15
|
-
/** npm package name for the plugin. */
|
|
16
|
-
export declare const PLUGIN_PACKAGE = "@karmaniverous/jeeves-watcher-openclaw";
|
|
17
|
-
/** Default watcher API port. */
|
|
18
|
-
export declare const DEFAULT_PORT: number;
|
|
19
12
|
/** Default watcher API base URL. */
|
|
20
13
|
export declare const DEFAULT_API_URL: string;
|
|
21
14
|
/** Default platform config root path. */
|
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.14.
|
|
5
|
+
"version": "0.14.10",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
|
@@ -32,4 +32,4 @@
|
|
|
32
32
|
"placeholder": "j:/config"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
}
|
|
35
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-watcher-openclaw",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.10",
|
|
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",
|
|
@@ -49,33 +49,25 @@
|
|
|
49
49
|
"./dist/index.js"
|
|
50
50
|
]
|
|
51
51
|
},
|
|
52
|
-
"auto-changelog": {
|
|
53
|
-
"output": "CHANGELOG.md",
|
|
54
|
-
"tagPrefix": "openclaw/",
|
|
55
|
-
"unreleased": true,
|
|
56
|
-
"commitLimit": false,
|
|
57
|
-
"hideCredit": true
|
|
58
|
-
},
|
|
59
52
|
"devDependencies": {
|
|
60
|
-
"@dotenvx/dotenvx": "^1.
|
|
53
|
+
"@dotenvx/dotenvx": "^1.65.0",
|
|
61
54
|
"@rollup/plugin-commonjs": "^29.0.2",
|
|
62
55
|
"@rollup/plugin-json": "^6.1.0",
|
|
63
56
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
64
57
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
65
|
-
"auto-changelog": "^2.5.0",
|
|
66
58
|
"cross-env": "^10.1.0",
|
|
67
|
-
"knip": "^6.
|
|
68
|
-
"release-it": "^
|
|
69
|
-
"rollup": "^4.60.
|
|
59
|
+
"knip": "^6.13.1",
|
|
60
|
+
"release-it": "^20.0.1",
|
|
61
|
+
"rollup": "^4.60.3",
|
|
70
62
|
"tslib": "^2.8.1",
|
|
71
|
-
"vitest": "^4.1.
|
|
63
|
+
"vitest": "^4.1.6"
|
|
72
64
|
},
|
|
73
65
|
"scripts": {
|
|
74
66
|
"build:plugin": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
75
67
|
"build:skills": "tsx scripts/build-skills.ts",
|
|
76
68
|
"build": "npm run build:plugin && npm run build:skills && npm run build:content",
|
|
77
69
|
"build:content": "node scripts/copy-content.mjs",
|
|
78
|
-
"changelog": "
|
|
70
|
+
"changelog": "git-cliff -o CHANGELOG.md",
|
|
79
71
|
"lint": "eslint .",
|
|
80
72
|
"lint:fix": "eslint --fix .",
|
|
81
73
|
"release": "dotenvx run -f .env.local -- release-it",
|
|
@@ -85,7 +77,7 @@
|
|
|
85
77
|
},
|
|
86
78
|
"release-it": {
|
|
87
79
|
"git": {
|
|
88
|
-
"changelog": "npx
|
|
80
|
+
"changelog": "npx git-cliff --unreleased --strip header",
|
|
89
81
|
"commitMessage": "chore: release @karmaniverous/jeeves-watcher-openclaw v${version}",
|
|
90
82
|
"tagName": "openclaw/${version}",
|
|
91
83
|
"requireBranch": "main"
|
|
@@ -94,9 +86,6 @@
|
|
|
94
86
|
"release": true
|
|
95
87
|
},
|
|
96
88
|
"hooks": {
|
|
97
|
-
"after:bump": [
|
|
98
|
-
"node -e \"const f='openclaw.plugin.json';const j=JSON.parse(require('fs').readFileSync(f,'utf8'));j.version='${version}';require('fs').writeFileSync(f,JSON.stringify(j,null,2)+'\\n')\""
|
|
99
|
-
],
|
|
100
89
|
"after:init": [
|
|
101
90
|
"npm run lint",
|
|
102
91
|
"npm run typecheck",
|
|
@@ -104,13 +93,16 @@
|
|
|
104
93
|
"npm run build"
|
|
105
94
|
],
|
|
106
95
|
"before:npm:release": [
|
|
107
|
-
"npx
|
|
96
|
+
"npx git-cliff -o CHANGELOG.md",
|
|
108
97
|
"git add -A"
|
|
109
98
|
],
|
|
110
99
|
"after:release": [
|
|
111
100
|
"git switch -c release/openclaw/${version}",
|
|
112
101
|
"git push -u origin release/openclaw/${version}",
|
|
113
102
|
"git switch ${branchName}"
|
|
103
|
+
],
|
|
104
|
+
"after:bump": [
|
|
105
|
+
"node -e \"const f='openclaw.plugin.json';const j=JSON.parse(require('fs').readFileSync(f,'utf8'));j.version='${version}';require('fs').writeFileSync(f,JSON.stringify(j,null,2)+'')\""
|
|
114
106
|
]
|
|
115
107
|
},
|
|
116
108
|
"npm": {
|
|
@@ -118,6 +110,7 @@
|
|
|
118
110
|
}
|
|
119
111
|
},
|
|
120
112
|
"dependencies": {
|
|
121
|
-
"@karmaniverous/jeeves": "^0.5.
|
|
113
|
+
"@karmaniverous/jeeves": "^0.5.10",
|
|
114
|
+
"@karmaniverous/jeeves-watcher-core": "^0.1.1"
|
|
122
115
|
}
|
|
123
116
|
}
|