@karmaniverous/jeeves-server-openclaw 0.6.2 → 0.7.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.
@@ -24,6 +24,13 @@ To convert a Windows file path to a browse path:
24
24
  - `J:\domains\projects\readme.md` → `j/domains/projects/readme.md`
25
25
  - Strip the colon, lowercase the drive letter, use forward slashes
26
26
 
27
+ ## Browse Features
28
+
29
+ - **Directory item counts:** Subdirectory rows display a nonrecursive item count in the Size column.
30
+ - **CSV table rendering:** `.csv` files render as HTML tables (Rendered tab) with raw source in the Raw tab.
31
+ - **Collapsible frontmatter:** YAML frontmatter blocks exceeding 10 lines are collapsed by default with a "Show all" toggle.
32
+ - **Collapsible TOC:** The table of contents sidebar uses a tree structure with expand/collapse chevrons on headings that have children. Active headings auto-expand their ancestor chain.
33
+
27
34
  ## Sharing
28
35
 
29
36
  - **Insiders** authenticate via Google OAuth or key-based auth — bare URLs work for them
@@ -36,6 +43,7 @@ To convert a Windows file path to a browse path:
36
43
 
37
44
  Available formats depend on file type and server capabilities:
38
45
  - **Markdown files:** PDF (requires Chrome), DOCX
46
+ - **CSV files:** rendered as HTML tables (no additional export formats)
39
47
  - **Mermaid diagrams:** SVG, PNG, PDF (Mermaid CLI is bundled)
40
48
  - **PlantUML diagrams:** Formats depend on server configuration (jar downloaded automatically via postinstall)
41
49
  - **Directories:** ZIP (insider-only)
@@ -57,7 +65,7 @@ Service health for companion services (watcher, runner, meta) is mediated throug
57
65
 
58
66
  ### Prerequisites
59
67
 
60
- - **Node.js 20+** and npm
68
+ - **Node.js 22+** and npm
61
69
  - **Java 8+** (optional, for local PlantUML rendering — jar downloaded automatically)
62
70
  - **Chrome/Chromium** (required for PDF export)
63
71
  - **NSSM** (Windows) or **systemd** (Linux) for service management
@@ -77,7 +85,7 @@ Generate a starter config:
77
85
  jeeves-server init --config /path/to/config-dir
78
86
  ```
79
87
 
80
- Or create `jeeves-server/config.json` manually (JSON only — cosmiconfig was removed):
88
+ Or create `jeeves-server/config.json` manually (JSON only):
81
89
 
82
90
  ```json
83
91
  {
@@ -104,9 +112,7 @@ Or create `jeeves-server/config.json` manually (JSON only — cosmiconfig was re
104
112
  "_internal": "random-hex-seed-for-puppeteer",
105
113
  "_plugin": "random-hex-seed-for-openclaw-plugin",
106
114
  "primary": "random-hex-seed-for-api-access"
107
- },
108
- "watcherUrl": "http://127.0.0.1:1936",
109
- "runnerUrl": "http://127.0.0.1:1937"
115
+ }
110
116
  }
111
117
  ```
112
118
 
@@ -117,7 +123,9 @@ Or create `jeeves-server/config.json` manually (JSON only — cosmiconfig was re
117
123
  - `insiders` — map of email → `{ scopes?, allow?, deny? }`
118
124
  - `keys._internal` — required for PDF/DOCX export (Puppeteer auth)
119
125
  - `keys._plugin` — required for OpenClaw plugin auth
120
- - `outsiderPolicy` — optional global constraints on outsider sharing (can reference a named scope)
126
+ - `outsiderPolicy` — optional global constraints on outsider sharing
127
+
128
+ **Companion service URLs** (watcher, runner, meta) are resolved via core config at `{configRoot}/jeeves-core/config.json` under `services.{name}.url`. Port defaults are: watcher 1936, runner 1937, meta 1938. The deprecated `watcherUrl`, `runnerUrl`, `metaUrl`, and `host` config properties are ignored with a deprecation warning.
121
129
 
122
130
  Environment variable substitution is supported: `${VAR_NAME}` in string values.
123
131
 
@@ -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.6.2",
5
+ "version": "0.7.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.6.2",
3
+ "version": "0.7.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "release:pre": "dotenvx run -f .env.local -- release-it --no-git.requireBranch --github.prerelease --preRelease"
18
18
  },
19
19
  "devDependencies": {
20
- "@dotenvx/dotenvx": "^1.55.1",
20
+ "@dotenvx/dotenvx": "^1.59.1",
21
21
  "@rollup/plugin-commonjs": "^29.0.2",
22
22
  "@rollup/plugin-json": "^6.1.0",
23
23
  "@rollup/plugin-node-resolve": "^16.0.3",
@@ -25,9 +25,9 @@
25
25
  "auto-changelog": "^2.5.0",
26
26
  "cross-env": "^10.1.0",
27
27
  "release-it": "^19.2.4",
28
- "rollup": "^4.59.0",
28
+ "rollup": "^4.60.1",
29
29
  "tslib": "^2.8.1",
30
- "vitest": "^4.1.0"
30
+ "vitest": "^4.1.2"
31
31
  },
32
32
  "author": "Jason Williscroft",
33
33
  "description": "OpenClaw plugin for jeeves-server — file browsing, sharing, export, and event gateway tools",
@@ -66,7 +66,7 @@
66
66
  "jeeves-server"
67
67
  ],
68
68
  "engines": {
69
- "node": ">=20"
69
+ "node": ">=22"
70
70
  },
71
71
  "openclaw": {
72
72
  "extensions": [
@@ -115,7 +115,7 @@
115
115
  "hideCredit": true
116
116
  },
117
117
  "dependencies": {
118
- "@karmaniverous/jeeves": "^0.4.6",
119
- "zod": "^4.3.0"
118
+ "@karmaniverous/jeeves": "^0.5.3",
119
+ "zod": "^4.3.6"
120
120
  }
121
121
  }