@karmaniverous/jeeves-meta-openclaw 0.9.2 → 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/README.md +3 -2
- package/content/skill.md +105 -0
- package/dist/cli.js +7068 -6747
- package/dist/index.js +7344 -6937
- package/dist/skills/jeeves-meta/SKILL.md +7 -8
- package/dist/src/serviceClient.d.ts +25 -11
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -3
|
@@ -146,7 +146,7 @@ what's running, clear queued work, or abort a stuck synthesis.
|
|
|
146
146
|
### Config File
|
|
147
147
|
|
|
148
148
|
Location determined by `JEEVES_META_CONFIG` env var or `--config` CLI flag.
|
|
149
|
-
Canonical deployment: `J:\config\jeeves-meta
|
|
149
|
+
Canonical deployment: `J:\config\jeeves-meta\config.json`.
|
|
150
150
|
|
|
151
151
|
Key settings:
|
|
152
152
|
|
|
@@ -161,13 +161,13 @@ Key settings:
|
|
|
161
161
|
| `depthWeight` | 0.5 | Exponent for depth-based scheduling (0 = pure staleness) |
|
|
162
162
|
| `maxArchive` | 20 | Max archived snapshots per meta |
|
|
163
163
|
| `maxLines` | 500 | Max lines for builder context |
|
|
164
|
-
| `architectTimeout` |
|
|
165
|
-
| `builderTimeout` |
|
|
166
|
-
| `criticTimeout` |
|
|
164
|
+
| `architectTimeout` | 180s | Architect subprocess timeout |
|
|
165
|
+
| `builderTimeout` | 360s | Builder subprocess timeout |
|
|
166
|
+
| `criticTimeout` | 240s | Critic subprocess timeout |
|
|
167
167
|
| `skipUnchanged` | true | Skip candidates with no changes since last synthesis |
|
|
168
168
|
| `thinking` | `low` | Thinking level for spawned LLM sessions |
|
|
169
169
|
| `port` | 1938 | HTTP API listen port |
|
|
170
|
-
|
|
170
|
+
|
|
171
171
|
| `schedule` | `*/30 * * * *` | Cron expression for automatic synthesis scheduling |
|
|
172
172
|
| `serverBaseUrl` | (optional) | Public base URL of the service (e.g. `http://myhost:1938`). When set, progress reports include clickable entity links. |
|
|
173
173
|
| `reportChannel` | (optional) | Gateway channel target for progress messages (e.g. Slack channel ID) |
|
|
@@ -360,7 +360,6 @@ All config fields hot-reload without restarting the service **except** these
|
|
|
360
360
|
restart-required fields:
|
|
361
361
|
|
|
362
362
|
- `port` — HTTP listen port
|
|
363
|
-
- `host` — bind address
|
|
364
363
|
- `watcherUrl` — watcher service URL
|
|
365
364
|
- `gatewayUrl` — OpenClaw gateway URL
|
|
366
365
|
- `gatewayApiKey` — gateway authentication key
|
|
@@ -427,7 +426,7 @@ Before the synthesis engine can operate:
|
|
|
427
426
|
|
|
428
427
|
```bash
|
|
429
428
|
npm install -g @karmaniverous/jeeves-meta
|
|
430
|
-
jeeves-meta start --config J:\config\jeeves-meta
|
|
429
|
+
jeeves-meta start --config J:\config\jeeves-meta\config.json
|
|
431
430
|
```
|
|
432
431
|
|
|
433
432
|
2. Install the OpenClaw plugin:
|
|
@@ -477,7 +476,7 @@ To uninstall: `npx @karmaniverous/jeeves-meta-openclaw uninstall`
|
|
|
477
476
|
For production deployments, install as a system service:
|
|
478
477
|
|
|
479
478
|
```bash
|
|
480
|
-
jeeves-meta service install --config J:\config\jeeves-meta
|
|
479
|
+
jeeves-meta service install --config J:\config\jeeves-meta\config.json
|
|
481
480
|
```
|
|
482
481
|
|
|
483
482
|
This prints OS-specific instructions:
|
|
@@ -7,24 +7,38 @@
|
|
|
7
7
|
*
|
|
8
8
|
* @module serviceClient
|
|
9
9
|
*/
|
|
10
|
-
/**
|
|
10
|
+
/** Watcher dependency health within the status response. */
|
|
11
|
+
export interface WatcherDepHealth {
|
|
12
|
+
status: string;
|
|
13
|
+
rulesRegistered?: boolean;
|
|
14
|
+
indexing?: boolean;
|
|
15
|
+
}
|
|
16
|
+
/** Gateway dependency health within the status response. */
|
|
17
|
+
export interface GatewayDepHealth {
|
|
18
|
+
status: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Service status response from GET /status.
|
|
22
|
+
*
|
|
23
|
+
* The jeeves-core `createStatusHandler` wraps `getHealth()` output under
|
|
24
|
+
* a top-level `health` key. Dependency info lives at `health.dependencies`.
|
|
25
|
+
*/
|
|
11
26
|
export interface StatusResponse {
|
|
27
|
+
/** Service name. */
|
|
28
|
+
name: string;
|
|
12
29
|
/** Service uptime in seconds. */
|
|
13
30
|
uptime: number;
|
|
14
|
-
/**
|
|
31
|
+
/** Overall status (healthy, degraded, unhealthy). */
|
|
15
32
|
status: string;
|
|
16
33
|
/** Service version. */
|
|
17
34
|
version?: string;
|
|
18
|
-
/**
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
indexing?: boolean;
|
|
24
|
-
};
|
|
25
|
-
gateway: {
|
|
26
|
-
status: string;
|
|
35
|
+
/** Component-specific health details from getHealth(). */
|
|
36
|
+
health: {
|
|
37
|
+
dependencies: {
|
|
38
|
+
watcher: WatcherDepHealth;
|
|
39
|
+
gateway: GatewayDepHealth;
|
|
27
40
|
};
|
|
41
|
+
[key: string]: unknown;
|
|
28
42
|
};
|
|
29
43
|
}
|
|
30
44
|
/** Summary block in the metas response. */
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-meta-openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"author": "Jason Williscroft",
|
|
5
5
|
"description": "OpenClaw plugin for jeeves-meta — synthesis tools and virtual rule registration",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"synthesis"
|
|
43
43
|
],
|
|
44
44
|
"engines": {
|
|
45
|
-
"node": ">=
|
|
45
|
+
"node": ">=22"
|
|
46
46
|
},
|
|
47
47
|
"openclaw": {
|
|
48
48
|
"extensions": [
|
|
@@ -120,6 +120,6 @@
|
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
"dependencies": {
|
|
123
|
-
"@karmaniverous/jeeves": "^0.
|
|
123
|
+
"@karmaniverous/jeeves": "^0.5.1"
|
|
124
124
|
}
|
|
125
125
|
}
|