@gbasin/agentboard 0.2.51 → 0.2.52
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 +3 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -164,6 +164,7 @@ AGENTBOARD_REMOTE_SSH_OPTS=-o BatchMode=yes -o ConnectTimeout=3
|
|
|
164
164
|
AGENTBOARD_REMOTE_ALLOW_ATTACH=false
|
|
165
165
|
AGENTBOARD_REMOTE_ALLOW_CONTROL=false
|
|
166
166
|
AGENTBOARD_LOG_WATCH_MODE=watch
|
|
167
|
+
AGENTBOARD_PASTE_IMAGE_MAX_BYTES=41943040
|
|
167
168
|
```
|
|
168
169
|
|
|
169
170
|
`HOSTNAME` controls which interfaces the server binds to (default `127.0.0.1` for localhost-only). With the default localhost binding, if Tailscale is detected the server also binds to your Tailscale IP automatically. Set to `0.0.0.0` to listen on all interfaces.
|
|
@@ -204,6 +205,8 @@ All persistent data is stored in `~/.agentboard/`: session database (`agentboard
|
|
|
204
205
|
|
|
205
206
|
`AGENTBOARD_LOG_WATCH_MODE` selects the log detection strategy: `watch` (default) uses `fs.watch` for instant file-change detection, `poll` falls back to periodic directory scanning. Use `poll` if you experience issues with filesystem notifications (e.g., on network-mounted home directories). On Linux, watch mode automatically includes a 15-second fallback poll since `fs.watch({ recursive: true })` has known platform bugs.
|
|
206
207
|
|
|
208
|
+
`AGENTBOARD_PASTE_IMAGE_MAX_BYTES` caps clipboard image uploads (default 40 MB, enough for full-resolution photos pasted as PNG). Paste uploads are limited to PNG, JPEG, GIF, and WebP images.
|
|
209
|
+
|
|
207
210
|
**SSH multiplexing (recommended):** Each poll cycle opens SSH connections to every remote host. Enable SSH connection multiplexing to reuse connections and reduce overhead from ~200-500ms to ~5ms per poll. Add to your `~/.ssh/config`:
|
|
208
211
|
|
|
209
212
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gbasin/agentboard",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.52",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Web GUI for tmux optimized for AI agent TUIs",
|
|
6
6
|
"author": "gbasin",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"bun": ">=1.3.6"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@gbasin/agentboard-darwin-arm64": "0.2.
|
|
24
|
-
"@gbasin/agentboard-darwin-x64": "0.2.
|
|
25
|
-
"@gbasin/agentboard-linux-x64": "0.2.
|
|
26
|
-
"@gbasin/agentboard-linux-arm64": "0.2.
|
|
23
|
+
"@gbasin/agentboard-darwin-arm64": "0.2.52",
|
|
24
|
+
"@gbasin/agentboard-darwin-x64": "0.2.52",
|
|
25
|
+
"@gbasin/agentboard-linux-x64": "0.2.52",
|
|
26
|
+
"@gbasin/agentboard-linux-arm64": "0.2.52"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
|