@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 scan, gathers context from the Qdrant vector
7
- index, and uses a three-step LLM process (architect, builder, critic) to
8
- produce structured synthesis artifacts co-located with source content.
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
 
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Tests for TOOLS.md menu generation, including rulesRegistered warning.
3
+ *
4
+ * @module promptInjection.test
5
+ */
6
+ export {};
@@ -2,7 +2,7 @@
2
2
  "id": "jeeves-meta-openclaw",
3
3
  "name": "Jeeves Meta",
4
4
  "description": "Knowledge synthesis tools — trigger synthesis, view status, manage entities.",
5
- "version": "0.2.0",
5
+ "version": "0.3.0",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-meta"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-meta-openclaw",
3
- "version": "0.2.0",
3
+ "version": "0.3.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",