@gbasin/agentboard 0.10.1 → 0.10.3
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 +4 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -150,6 +150,7 @@ HOSTNAME=127.0.0.1
|
|
|
150
150
|
TMUX_SESSION=agentboard
|
|
151
151
|
REFRESH_INTERVAL_MS=5000
|
|
152
152
|
DISCOVER_PREFIXES=work,external
|
|
153
|
+
ALLOW_KILL_EXTERNAL=false
|
|
153
154
|
PRUNE_WS_SESSIONS=true
|
|
154
155
|
AGENTBOARD_PREFER_WINDOW_NAME=false
|
|
155
156
|
TERMINAL_MODE=pty
|
|
@@ -177,7 +178,9 @@ AGENTBOARD_PASTE_IMAGE_MAX_BYTES=41943040
|
|
|
177
178
|
|
|
178
179
|
> **Security note:** Agentboard has no built-in authentication. Anyone who can reach the server has full access to your terminal sessions, including the ability to run commands as your user. The default localhost binding is safe. Tailscale provides network-level auth for remote access. Avoid setting `HOSTNAME=0.0.0.0` on untrusted networks (public WiFi, shared LANs) without an additional access control layer.
|
|
179
180
|
|
|
180
|
-
`DISCOVER_PREFIXES` lets you discover and control windows from other tmux sessions. If unset, all sessions except the managed one are discovered.
|
|
181
|
+
`DISCOVER_PREFIXES` lets you discover and control windows from other tmux sessions. If unset, all sessions except the managed one are discovered. Windows named `__agentboard_root__` are always hidden — that name is reserved for the placeholder that keeps a base session alive.
|
|
182
|
+
|
|
183
|
+
`ALLOW_KILL_EXTERNAL` (default `false`) controls whether externally-discovered sessions can be killed from the UI. Set to `true` to allow it.
|
|
181
184
|
|
|
182
185
|
`PRUNE_WS_SESSIONS` removes orphaned `agentboard-ws-*` tmux sessions on startup (set to `false` to disable).
|
|
183
186
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gbasin/agentboard",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
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.14"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@gbasin/agentboard-darwin-arm64": "0.10.
|
|
24
|
-
"@gbasin/agentboard-darwin-x64": "0.10.
|
|
25
|
-
"@gbasin/agentboard-linux-x64": "0.10.
|
|
26
|
-
"@gbasin/agentboard-linux-arm64": "0.10.
|
|
23
|
+
"@gbasin/agentboard-darwin-arm64": "0.10.3",
|
|
24
|
+
"@gbasin/agentboard-darwin-x64": "0.10.3",
|
|
25
|
+
"@gbasin/agentboard-linux-x64": "0.10.3",
|
|
26
|
+
"@gbasin/agentboard-linux-arm64": "0.10.3"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
|