@karmaniverous/jeeves-meta-openclaw 0.13.2 → 0.13.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/skills/jeeves-meta/SKILL.md +20 -35
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
|
@@ -202,8 +202,8 @@ Key settings:
|
|
|
202
202
|
| `watcherUrl` | (required) | Watcher service URL (e.g. `http://localhost:1936`) |
|
|
203
203
|
| `gatewayUrl` | `http://127.0.0.1:18789` | OpenClaw gateway URL for subprocess spawning |
|
|
204
204
|
| `gatewayApiKey` | (optional) | API key for gateway authentication |
|
|
205
|
-
| `metaProperty` |
|
|
206
|
-
| `metaArchiveProperty` |
|
|
205
|
+
| `metaProperty` | (required) | Watcher metadata properties applied to live `.meta/meta.json` files. `Record<string, unknown>` — any shape accepted. Avoid underscore-prefixed keys (e.g. `_meta`) — they may conflict with watcher reserved fields and break rendering. |
|
|
206
|
+
| `metaArchiveProperty` | (required) | Watcher metadata properties applied to `.meta/archive/**` snapshots. Same shape flexibility and underscore-prefix caveat as `metaProperty`. |
|
|
207
207
|
| `architectEvery` | 10 | Re-run architect every N cycles even if structure unchanged |
|
|
208
208
|
| `depthWeight` | 0.5 | Exponent for depth-based scheduling (0 = pure staleness) |
|
|
209
209
|
| `maxArchive` | 20 | Max archived snapshots per meta |
|
|
@@ -214,6 +214,7 @@ Key settings:
|
|
|
214
214
|
|
|
215
215
|
| `schedule` | `*/30 * * * *` | Cron expression for automatic synthesis scheduling |
|
|
216
216
|
| `serverBaseUrl` | (optional) | Public base URL of the service (e.g. `http://myhost:1938`). When set, progress reports include clickable entity links. |
|
|
217
|
+
| `serverDriveRoots` | (optional) | Drive label to absolute path mapping for Linux path resolution in progress links (e.g. `{ "content": "/opt/jeeves/content" }`). |
|
|
217
218
|
| `reportChannel` | (optional) | Gateway channel name (e.g. `slack`). Legacy: also used as target if `reportTarget` is unset. |
|
|
218
219
|
| `reportTarget` | (optional) | Channel/user ID to send progress messages to |
|
|
219
220
|
| `tier2ScanLimit` | 50 | Max all-fresh candidates to scan per tick in Tier 2 invalidation |
|
|
@@ -275,24 +276,13 @@ properties.
|
|
|
275
276
|
|
|
276
277
|
### Prompt System
|
|
277
278
|
|
|
278
|
-
The service ships with built-in default architect and critic prompts.
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
**Overriding defaults:** Set `defaultArchitect` and/or `defaultCritic` in the
|
|
282
|
-
config to replace the built-in prompts. Supports `@file:` references resolved
|
|
283
|
-
relative to the config file's directory:
|
|
284
|
-
|
|
285
|
-
```json
|
|
286
|
-
{
|
|
287
|
-
"defaultArchitect": "@file:jeeves-meta/prompts/architect.md",
|
|
288
|
-
"defaultCritic": "@file:jeeves-meta/prompts/critic.md"
|
|
289
|
-
}
|
|
290
|
-
```
|
|
279
|
+
The service ships with built-in default architect and critic prompts. Prompts
|
|
280
|
+
ship with the package and cannot be overridden via config.
|
|
291
281
|
|
|
292
282
|
**Per-meta overrides:** Set `_architect` or `_critic` directly in a `meta.json`
|
|
293
283
|
to override the defaults for that specific entity.
|
|
294
284
|
|
|
295
|
-
**Template variables:** All prompts (
|
|
285
|
+
**Template variables:** All prompts (built-in and per-meta)
|
|
296
286
|
are compiled as Handlebars templates at synthesis time with access to:
|
|
297
287
|
|
|
298
288
|
- `{{config.maxLines}}`, `{{config.architectEvery}}`, etc.
|
|
@@ -306,19 +296,20 @@ prompt is compiled.
|
|
|
306
296
|
|
|
307
297
|
### Minimal Config Example
|
|
308
298
|
|
|
309
|
-
A minimum viable config file requires
|
|
299
|
+
A minimum viable config file requires `watcherUrl`, `metaProperty`, and `metaArchiveProperty`:
|
|
310
300
|
|
|
311
301
|
```json
|
|
312
302
|
{
|
|
313
303
|
"watcherUrl": "http://localhost:1936",
|
|
314
304
|
"gatewayUrl": "http://127.0.0.1:18789",
|
|
315
|
-
"gatewayApiKey": "your-api-key"
|
|
305
|
+
"gatewayApiKey": "your-api-key",
|
|
306
|
+
"metaProperty": { "_meta": "current" },
|
|
307
|
+
"metaArchiveProperty": { "_meta": "archive" }
|
|
316
308
|
}
|
|
317
309
|
```
|
|
318
310
|
|
|
319
311
|
All other fields use sensible defaults (port 1938, schedule every 30 min,
|
|
320
|
-
depth weight 0.5, built-in prompts, etc). Add `reportChannel`, `
|
|
321
|
-
`logging`, etc. as needed.
|
|
312
|
+
depth weight 0.5, built-in prompts, etc). Add `reportChannel`, `logging`, etc. as needed.
|
|
322
313
|
|
|
323
314
|
### Adding New Metas
|
|
324
315
|
|
|
@@ -414,8 +405,6 @@ restart-required fields:
|
|
|
414
405
|
- `watcherUrl` — watcher service URL
|
|
415
406
|
- `gatewayUrl` — OpenClaw gateway URL
|
|
416
407
|
- `gatewayApiKey` — gateway authentication key
|
|
417
|
-
- `defaultArchitect` — architect system prompt
|
|
418
|
-
- `defaultCritic` — critic system prompt
|
|
419
408
|
|
|
420
409
|
Edit the config file and save; the service detects changes via `fs.watchFile`.
|
|
421
410
|
When a restart-required field changes, the service logs a warning but the
|
|
@@ -461,14 +450,11 @@ Before the synthesis engine can operate:
|
|
|
461
450
|
- Verify: `curl http://localhost:6333/healthz`
|
|
462
451
|
|
|
463
452
|
4. **Config file** must exist at the path specified by `JEEVES_META_CONFIG`
|
|
464
|
-
- Must contain valid `watcherUrl`
|
|
465
|
-
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
5. **Prompt files** must exist only if using `@file:` references in config
|
|
469
|
-
- Not needed if using the built-in defaults (most installations)
|
|
453
|
+
- Must contain valid `watcherUrl`, `metaProperty`, and `metaArchiveProperty`
|
|
454
|
+
- Built-in architect and critic prompts ship with the package; no prompt
|
|
455
|
+
configuration is required
|
|
470
456
|
|
|
471
|
-
|
|
457
|
+
5. **`.meta/` directories** must exist and be within paths the watcher indexes
|
|
472
458
|
- Seed new metas: `jeeves-meta seed <path>`
|
|
473
459
|
|
|
474
460
|
### Installation
|
|
@@ -700,12 +686,11 @@ not yet indexed new files
|
|
|
700
686
|
- First-run quality is lower — the feedback loop needs 2-3 cycles to calibrate.
|
|
701
687
|
- Changing `metaProperty` requires both a meta service restart AND a watcher reindex.
|
|
702
688
|
The service restart re-registers virtual rules; the reindex retags existing points.
|
|
703
|
-
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
for literal double-braces.
|
|
689
|
+
- Built-in architect and critic prompts ship with the package and cannot be
|
|
690
|
+
overridden via config.
|
|
691
|
+
- All prompts (built-in and per-meta `_architect`/`_critic`) are compiled as
|
|
692
|
+
Handlebars templates. Avoid using `{{` in prompt text unless you intend
|
|
693
|
+
template variable resolution. Escape with `\{{` for literal double-braces.
|
|
709
694
|
- The synthesis queue is single-threaded with three layers: `current` (the
|
|
710
695
|
running phase), `overrides` (explicitly triggered entries, highest priority),
|
|
711
696
|
and `automatic` (scheduler-computed candidates). Override entries are
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@karmaniverous/jeeves": "^0.5.12",
|
|
11
|
-
"@karmaniverous/jeeves-meta-core": "^0.2.
|
|
11
|
+
"@karmaniverous/jeeves-meta-core": "^0.2.2"
|
|
12
12
|
},
|
|
13
13
|
"description": "OpenClaw plugin for jeeves-meta — synthesis tools and virtual rule registration",
|
|
14
14
|
"devDependencies": {
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
},
|
|
113
113
|
"type": "module",
|
|
114
114
|
"types": "dist/index.d.ts",
|
|
115
|
-
"version": "0.13.
|
|
115
|
+
"version": "0.13.3"
|
|
116
116
|
}
|