@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.
- package/README.md +22 -15
- package/dist/index.js +186 -566
- package/dist/skills/jeeves-meta/SKILL.md +312 -66
- package/dist/src/helpers.d.ts +5 -5
- package/dist/src/index.d.ts +4 -4
- package/dist/src/promptInjection.d.ts +4 -9
- package/dist/src/serviceClient.d.ts +45 -0
- package/dist/src/tools.d.ts +6 -3
- package/dist/src/toolsWriter.d.ts +3 -3
- package/openclaw.plugin.json +3 -3
- package/package.json +1 -4
- package/dist/src/configLoader.d.ts +0 -6
- package/dist/src/rules.d.ts +0 -20
package/openclaw.plugin.json
CHANGED
|
@@ -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.
|
|
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
|
-
"
|
|
12
|
+
"serviceUrl": {
|
|
13
13
|
"type": "string",
|
|
14
|
-
"description": "
|
|
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.
|
|
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
|
}
|
package/dist/src/rules.d.ts
DELETED
|
@@ -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>;
|