@gbasin/agentboard 0.10.0 → 0.10.2

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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. 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.0",
3
+ "version": "0.10.2",
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.0",
24
- "@gbasin/agentboard-darwin-x64": "0.10.0",
25
- "@gbasin/agentboard-linux-x64": "0.10.0",
26
- "@gbasin/agentboard-linux-arm64": "0.10.0"
23
+ "@gbasin/agentboard-darwin-arm64": "0.10.2",
24
+ "@gbasin/agentboard-darwin-x64": "0.10.2",
25
+ "@gbasin/agentboard-linux-x64": "0.10.2",
26
+ "@gbasin/agentboard-linux-arm64": "0.10.2"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",