@karmaniverous/jeeves-watcher-openclaw 0.3.12 → 0.3.13
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
CHANGED
|
@@ -6,7 +6,7 @@ import { readFile } from 'node:fs/promises';
|
|
|
6
6
|
* @module plugin/helpers
|
|
7
7
|
* Shared types and utility functions for the OpenClaw plugin tool registrations.
|
|
8
8
|
*/
|
|
9
|
-
const DEFAULT_API_URL = 'http://127.0.0.1:
|
|
9
|
+
const DEFAULT_API_URL = 'http://127.0.0.1:1936';
|
|
10
10
|
/** Source identifier for virtual rule registration. */
|
|
11
11
|
const PLUGIN_SOURCE = 'jeeves-watcher-openclaw';
|
|
12
12
|
/** Normalize a path to forward slashes and lowercase drive letter on Windows. */
|
|
@@ -13,12 +13,12 @@ description: >
|
|
|
13
13
|
|
|
14
14
|
The watcher is an HTTP API running as a background service (typically NSSM on Windows, systemd on Linux).
|
|
15
15
|
|
|
16
|
-
**Default port:**
|
|
16
|
+
**Default port:** 1936 (configurable via `api.port` in watcher config)
|
|
17
17
|
**Non-default port:** If the watcher runs on a different port, the user must set `plugins.entries.jeeves-watcher.config.apiUrl` in `openclaw.json`. The plugin cannot auto-discover a non-default port.
|
|
18
18
|
|
|
19
19
|
**Health check:** `GET /status` returns uptime, point count, collection dimensions, and reindex status.
|
|
20
20
|
|
|
21
|
-
**Mental model:** The `watcher_*` tools are thin HTTP wrappers. Each tool call translates to an HTTP request to the watcher API. When tools are available, use them. When they're not (e.g., different session, plugin not loaded), you can hit the API directly. Replace `<PORT>` below with the configured port (default
|
|
21
|
+
**Mental model:** The `watcher_*` tools are thin HTTP wrappers. Each tool call translates to an HTTP request to the watcher API. When tools are available, use them. When they're not (e.g., different session, plugin not loaded), you can hit the API directly. Replace `<PORT>` below with the configured port (default 1936; check `plugins.entries.jeeves-watcher.config.apiUrl` in `openclaw.json` if overridden):
|
|
22
22
|
|
|
23
23
|
```
|
|
24
24
|
# Health check
|
|
@@ -589,7 +589,7 @@ If the watcher is unreachable:
|
|
|
589
589
|
If tools are unavailable (plugin not loaded in this session):
|
|
590
590
|
- The watcher API is still accessible via direct HTTP calls
|
|
591
591
|
- Use `exec` to call the endpoints listed in Service Architecture
|
|
592
|
-
- Default: `http://127.0.0.1:
|
|
592
|
+
- Default: `http://127.0.0.1:1936`
|
|
593
593
|
|
|
594
594
|
**CLI Fallbacks:**
|
|
595
595
|
- `jeeves-watcher status` — check if the service is running
|
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.3.
|
|
5
|
+
"version": "0.3.13",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED