@karmaniverous/jeeves-meta-openclaw 0.1.4 → 0.2.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.
@@ -2,16 +2,16 @@
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.1.4",
5
+ "version": "0.2.0",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-meta"
8
8
  ],
9
9
  "configSchema": {
10
10
  "type": "object",
11
11
  "properties": {
12
- "configPath": {
12
+ "serviceUrl": {
13
13
  "type": "string",
14
- "description": "Path to jeeves-meta.config.json. Falls back to JEEVES_META_CONFIG env var."
14
+ "description": "URL of the jeeves-meta HTTP service. Defaults to http://127.0.0.1:1938. Falls back to JEEVES_META_URL env var."
15
15
  }
16
16
  }
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-meta-openclaw",
3
- "version": "0.1.4",
3
+ "version": "0.2.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",
@@ -112,8 +112,5 @@
112
112
  "npm": {
113
113
  "publish": true
114
114
  }
115
- },
116
- "dependencies": {
117
- "@karmaniverous/jeeves-meta": "*"
118
115
  }
119
116
  }
@@ -1,6 +0,0 @@
1
- /**
2
- * Config loader — re-exports from the library package.
3
- *
4
- * @module configLoader
5
- */
6
- export { loadSynthConfig } from '@karmaniverous/jeeves-meta';
@@ -1,20 +0,0 @@
1
- /**
2
- * Virtual rule definitions and registration for jeeves-meta.
3
- *
4
- * Registers three inference rules with the watcher at plugin startup:
5
- * 1. synth-meta-live — indexes live .meta/meta.json files
6
- * 2. synth-meta-archive — indexes archived snapshots
7
- * 3. synth-config — indexes the synth config file
8
- *
9
- * @module rules
10
- */
11
- import type { SynthConfig } from '@karmaniverous/jeeves-meta';
12
- /**
13
- * Register jeeves-meta virtual rules with the watcher.
14
- *
15
- * Called at plugin startup. Rules are additive — the watcher appends
16
- * them after config-file rules (last-match-wins).
17
- *
18
- * @param watcherUrl - Base URL for the watcher service.
19
- */
20
- export declare function registerSynthRules(watcherUrl: string, config: SynthConfig): Promise<void>;