@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 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
+
@@ -2,7 +2,7 @@
2
2
  "id": "jeeves-server-openclaw",
3
3
  "name": "Jeeves Server",
4
4
  "description": "File browsing, document sharing, export, and event gateway tools for jeeves-server.",
5
- "version": "0.1.0",
5
+ "version": "0.1.1",
6
6
  "skills": [
7
7
  "dist/skills/jeeves-server"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@karmaniverous/jeeves-server-openclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {