@gbasin/agentboard 0.2.34 → 0.2.36

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 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -142,7 +142,7 @@ bun run deps:risk -- --threshold moderate
142
142
 
143
143
  ```
144
144
  PORT=4040
145
- HOSTNAME=0.0.0.0
145
+ HOSTNAME=127.0.0.1
146
146
  TMUX_SESSION=agentboard
147
147
  REFRESH_INTERVAL_MS=5000
148
148
  DISCOVER_PREFIXES=work,external
@@ -164,7 +164,9 @@ AGENTBOARD_REMOTE_ALLOW_CONTROL=false
164
164
  AGENTBOARD_LOG_WATCH_MODE=watch
165
165
  ```
166
166
 
167
- `HOSTNAME` controls which interfaces the server binds to (default `0.0.0.0` for network access; use `127.0.0.1` for local-only).
167
+ `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.
168
+
169
+ > **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.
168
170
 
169
171
  `DISCOVER_PREFIXES` lets you discover and control windows from other tmux sessions. If unset, all sessions except the managed one are discovered.
170
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbasin/agentboard",
3
- "version": "0.2.34",
3
+ "version": "0.2.36",
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.34",
24
- "@gbasin/agentboard-darwin-x64": "0.2.34",
25
- "@gbasin/agentboard-linux-x64": "0.2.34",
26
- "@gbasin/agentboard-linux-arm64": "0.2.34"
23
+ "@gbasin/agentboard-darwin-arm64": "0.2.36",
24
+ "@gbasin/agentboard-darwin-x64": "0.2.36",
25
+ "@gbasin/agentboard-linux-x64": "0.2.36",
26
+ "@gbasin/agentboard-linux-arm64": "0.2.36"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",