@karmaniverous/jeeves-watcher-openclaw 0.5.2 → 0.5.3
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 +1 -1
- package/dist/src/helpers.d.ts +5 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/src/helpers.d.ts
CHANGED
|
@@ -23,7 +23,11 @@ export interface PluginApi {
|
|
|
23
23
|
* Optional internal hook registration (available on newer OpenClaw builds).
|
|
24
24
|
* We keep this optional to preserve compatibility.
|
|
25
25
|
*/
|
|
26
|
-
registerHook?: (event: string | string[], handler: (event: unknown) => Promise<void> | void
|
|
26
|
+
registerHook?: (event: string | string[], handler: (event: unknown) => Promise<void> | void, opts?: {
|
|
27
|
+
name?: string;
|
|
28
|
+
description?: string;
|
|
29
|
+
register?: boolean;
|
|
30
|
+
}) => void;
|
|
27
31
|
}
|
|
28
32
|
/** Result shape returned by each tool execution. */
|
|
29
33
|
export interface ToolResult {
|
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.5.
|
|
5
|
+
"version": "0.5.3",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED