@karmaniverous/jeeves-meta-openclaw 0.1.5 → 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.
@@ -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>;