@karmaniverous/jeeves-watcher-openclaw 0.9.0 → 0.10.0
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/agents-section.md +5 -1
- package/content/soul-section.md +8 -0
- package/content/templates/spec.md +6 -0
- package/content/tools-platform.md +5 -15
- package/dist/cli.js +14 -8448
- package/dist/index.js +399 -9195
- package/dist/src/promptInjection.d.ts +6 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Fetches
|
|
3
|
-
*
|
|
2
|
+
* Fetches minimal operational context from the watcher API and generates a
|
|
3
|
+
* compact Markdown string suitable for injection into TOOLS.md.
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* We intentionally do NOT embed catalogues (rules, watched paths, ignored
|
|
7
|
+
* paths). Those are available live via `watcher_config` on demand.
|
|
4
8
|
*/
|
|
5
9
|
export declare function generateWatcherMenu(apiUrl: string): Promise<string>;
|
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
|
+
"version": "0.10.0",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-watcher-openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
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",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"hideCredit": true
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@karmaniverous/jeeves": "^0.
|
|
60
|
+
"@karmaniverous/jeeves": "^0.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@dotenvx/dotenvx": "^1.55.1",
|