@karmaniverous/jeeves-server-openclaw 0.1.0 → 0.1.1
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 +49 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# @karmaniverous/jeeves-server-openclaw
|
|
2
|
+
|
|
3
|
+
OpenClaw plugin for Jeeves Server. Provides agents with tools for:
|
|
4
|
+
|
|
5
|
+
- Server status and capabilities
|
|
6
|
+
- File/directory metadata browsing
|
|
7
|
+
- Share link generation
|
|
8
|
+
- Export (PDF/DOCX/SVG/PNG/ZIP)
|
|
9
|
+
- Event gateway visibility
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx @karmaniverous/jeeves-server-openclaw install
|
|
15
|
+
# Restart OpenClaw gateway after installing
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Configuration
|
|
19
|
+
|
|
20
|
+
### Server
|
|
21
|
+
|
|
22
|
+
Add an unscoped `_plugin` key to your Jeeves Server config:
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{ "keys": { "_plugin": "<seed>" } }
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### OpenClaw
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"plugins": {
|
|
33
|
+
"entries": {
|
|
34
|
+
"jeeves-server-openclaw": {
|
|
35
|
+
"enabled": true,
|
|
36
|
+
"config": {
|
|
37
|
+
"apiUrl": "http://127.0.0.1:1934",
|
|
38
|
+
"pluginKey": "<same-seed-as-server-_plugin>"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Docs
|
|
47
|
+
|
|
48
|
+
- OpenClaw Integration: ./guides/openclaw-integration.md
|
|
49
|
+
|
package/openclaw.plugin.json
CHANGED