@gbasin/agentboard 0.2.5 → 0.2.6
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
|
@@ -134,6 +134,7 @@ AGENTBOARD_REMOTE_STALE_MS=45000
|
|
|
134
134
|
AGENTBOARD_REMOTE_SSH_OPTS=-o BatchMode=yes -o ConnectTimeout=3
|
|
135
135
|
AGENTBOARD_REMOTE_ALLOW_ATTACH=false
|
|
136
136
|
AGENTBOARD_REMOTE_ALLOW_CONTROL=false
|
|
137
|
+
AGENTBOARD_LOG_WATCH_MODE=watch
|
|
137
138
|
```
|
|
138
139
|
|
|
139
140
|
`HOSTNAME` controls which interfaces the server binds to (default `0.0.0.0` for network access; use `127.0.0.1` for local-only).
|
|
@@ -168,6 +169,8 @@ All persistent data is stored in `~/.agentboard/`: session database (`agentboard
|
|
|
168
169
|
|
|
169
170
|
`AGENTBOARD_REMOTE_ALLOW_CONTROL` enables destructive remote session management (create, kill, rename) via the UI. Setting this to `true` implies `REMOTE_ALLOW_ATTACH=true`. Kill and rename are restricted to agentboard-managed sessions — externally-discovered remote sessions cannot be killed or renamed even with control enabled.
|
|
170
171
|
|
|
172
|
+
`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.
|
|
173
|
+
|
|
171
174
|
**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`:
|
|
172
175
|
|
|
173
176
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gbasin/agentboard",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
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.6",
|
|
24
|
+
"@gbasin/agentboard-darwin-x64": "0.2.6",
|
|
25
|
+
"@gbasin/agentboard-linux-x64": "0.2.6",
|
|
26
|
+
"@gbasin/agentboard-linux-arm64": "0.2.6"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
|