@karmaniverous/jeeves-server-openclaw 0.3.0 → 0.4.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 CHANGED
@@ -1,6 +1,8 @@
1
1
  # @karmaniverous/jeeves-server-openclaw
2
2
 
3
- OpenClaw plugin for Jeeves Server. Provides agents with tools for:
3
+ OpenClaw plugin for Jeeves Server. Integrates with `@karmaniverous/jeeves` core for managed TOOLS.md writing, service lifecycle commands, and platform content maintenance.
4
+
5
+ Provides agents with tools for:
4
6
 
5
7
  - Server status and capabilities
6
8
  - File/directory metadata browsing
@@ -35,7 +37,8 @@ Add an unscoped `_plugin` key to your Jeeves Server config:
35
37
  "enabled": true,
36
38
  "config": {
37
39
  "apiUrl": "http://127.0.0.1:1934",
38
- "pluginKey": "<same-seed-as-server-_plugin>"
40
+ "pluginKey": "<same-seed-as-server-_plugin>",
41
+ "configRoot": "j:/config"
39
42
  }
40
43
  }
41
44
  }
@@ -43,7 +46,13 @@ Add an unscoped `_plugin` key to your Jeeves Server config:
43
46
  }
44
47
  ```
45
48
 
49
+ | Config | Default | Description |
50
+ |--------|---------|-------------|
51
+ | `apiUrl` | `http://127.0.0.1:1934` | Server API base URL |
52
+ | `pluginKey` | — | Server `_plugin` key seed |
53
+ | `configRoot` | `j:/config` | Platform config root (core derives component config dirs) |
54
+
46
55
  ## Docs
47
56
 
48
- - OpenClaw Integration: ./guides/openclaw-integration.md
57
+ - [OpenClaw Integration](./guides/openclaw-integration.md) — Full configuration, tool reference, architecture
49
58