@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/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @karmaniverous/jeeves-meta-openclaw
|
|
2
2
|
|
|
3
|
-
OpenClaw plugin for [jeeves-meta](../
|
|
3
|
+
OpenClaw plugin for [jeeves-meta](../service/). A thin HTTP client that registers interactive tools and maintains dynamic TOOLS.md content.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- **Four interactive tools** — `
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
10
|
-
- **
|
|
7
|
+
- **Four interactive tools** — `meta_list`, `meta_detail`, `meta_trigger`, `meta_preview`
|
|
8
|
+
- **MetaServiceClient** — HTTP client delegating all operations to the running service
|
|
9
|
+
- **TOOLS.md injection** — periodic refresh of entity stats and tool listing in the agent's system prompt
|
|
10
|
+
- **Dependency health** — shows warnings when watcher/gateway are degraded
|
|
11
11
|
- **Consumer skill** — `SKILL.md` for agent integration
|
|
12
12
|
|
|
13
13
|
## Install
|
|
@@ -24,27 +24,34 @@ npx @karmaniverous/jeeves-meta-openclaw install
|
|
|
24
24
|
|
|
25
25
|
## Configuration
|
|
26
26
|
|
|
27
|
-
The plugin
|
|
27
|
+
The plugin resolves the service URL in order:
|
|
28
|
+
1. Plugin config `serviceUrl` in `openclaw.json`
|
|
29
|
+
2. `JEEVES_META_URL` environment variable
|
|
30
|
+
3. Default: `http://127.0.0.1:1938`
|
|
28
31
|
|
|
29
32
|
```json
|
|
30
33
|
{
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
"plugins": {
|
|
35
|
+
"entries": {
|
|
36
|
+
"jeeves-meta-openclaw": {
|
|
37
|
+
"enabled": true,
|
|
38
|
+
"config": {
|
|
39
|
+
"serviceUrl": "http://127.0.0.1:1938"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
36
44
|
}
|
|
37
45
|
```
|
|
38
46
|
|
|
39
|
-
See the [Configuration Guide](../lib/guides/configuration.md) for all fields and defaults.
|
|
40
|
-
|
|
41
47
|
## Documentation
|
|
42
48
|
|
|
43
49
|
- **[Plugin Setup](guides/plugin-setup.md)** — installation, config, lifecycle
|
|
44
|
-
- **[Tools Reference](guides/tools-reference.md)** —
|
|
45
|
-
- **[Virtual Rules](guides/virtual-rules.md)** —
|
|
50
|
+
- **[Tools Reference](guides/tools-reference.md)** — meta_list, meta_detail, meta_trigger, meta_preview
|
|
51
|
+
- **[Virtual Rules](guides/virtual-rules.md)** — watcher inference rules
|
|
46
52
|
- **[TOOLS.md Injection](guides/tools-injection.md)** — dynamic prompt generation
|
|
47
53
|
|
|
48
54
|
## License
|
|
49
55
|
|
|
50
56
|
BSD-3-Clause
|
|
57
|
+
|