@karmaniverous/jeeves-meta-openclaw 0.2.0 → 0.3.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/dist/index.js
CHANGED
|
@@ -347,6 +347,10 @@ async function generateMetaMenu(client) {
|
|
|
347
347
|
if (status.dependencies.watcher.status !== 'ok') {
|
|
348
348
|
depLines.push('> ⚠️ **Watcher**: ' + status.dependencies.watcher.status);
|
|
349
349
|
}
|
|
350
|
+
if (status.dependencies.watcher.rulesRegistered === false &&
|
|
351
|
+
status.dependencies.watcher.status === 'ok') {
|
|
352
|
+
depLines.push('> ⚠️ **Watcher rules not registered**: Meta files may not render properly in search/server.');
|
|
353
|
+
}
|
|
350
354
|
if (status.dependencies.gateway.status !== 'ok') {
|
|
351
355
|
depLines.push('> ⚠️ **Gateway**: ' + status.dependencies.gateway.status);
|
|
352
356
|
}
|
|
@@ -3,9 +3,17 @@
|
|
|
3
3
|
## Overview
|
|
4
4
|
|
|
5
5
|
jeeves-meta is the Jeeves platform's knowledge synthesis engine. It discovers
|
|
6
|
-
`.meta/` directories via watcher
|
|
7
|
-
|
|
8
|
-
produce structured synthesis artifacts
|
|
6
|
+
`.meta/` directories via the watcher's filesystem walk endpoint (`POST /walk`),
|
|
7
|
+
gathers context from co-located source files, and uses a three-step LLM process
|
|
8
|
+
(architect, builder, critic) to produce structured synthesis artifacts.
|
|
9
|
+
|
|
10
|
+
**Requires:** jeeves-watcher ≥ 0.10.0 (provides `POST /walk` and auto
|
|
11
|
+
rules-reindex on registration).
|
|
12
|
+
|
|
13
|
+
Discovery is filesystem-based (no Qdrant dependency). The service registers
|
|
14
|
+
virtual inference rules with the watcher for rendering and metadata tagging;
|
|
15
|
+
the watcher's `/status` response includes `rulesRegistered` to surface
|
|
16
|
+
registration health.
|
|
9
17
|
|
|
10
18
|
## Available Tools
|
|
11
19
|
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED