@gbasin/agentboard 0.2.45 → 0.2.46

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 +3 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -148,6 +148,7 @@ TMUX_SESSION=agentboard
148
148
  REFRESH_INTERVAL_MS=5000
149
149
  DISCOVER_PREFIXES=work,external
150
150
  PRUNE_WS_SESSIONS=true
151
+ AGENTBOARD_PREFER_WINDOW_NAME=false
151
152
  TERMINAL_MODE=pty
152
153
  TERMINAL_MONITOR_TARGETS=true
153
154
  VITE_ALLOWED_HOSTS=nuc,myserver
@@ -173,6 +174,8 @@ AGENTBOARD_LOG_WATCH_MODE=watch
173
174
 
174
175
  `PRUNE_WS_SESSIONS` removes orphaned `agentboard-ws-*` tmux sessions on startup (set to `false` to disable).
175
176
 
177
+ `AGENTBOARD_PREFER_WINDOW_NAME` (default `false`) controls how externally-discovered sessions are labeled. When `false`, the tmux session name is used (more meaningful than auto-renamed window names that follow the running process under tmux `automatic-rename on`). Set to `true` to use the tmux window name when it is non-empty and distinct from the session name — useful when you keep one shared session (e.g. `dev`) with one explicitly-named window per project (`myapp`, `infra`, ...).
178
+
176
179
  `TERMINAL_MODE` selects terminal I/O strategy: `pty` (default, grouped session) or `pipe-pane` (PTY-less, works in daemon/systemd/docker without `-t`).
177
180
 
178
181
  `TERMINAL_MONITOR_TARGETS` (pipe-pane only) polls tmux to detect closed targets (set to `false` to disable).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbasin/agentboard",
3
- "version": "0.2.45",
3
+ "version": "0.2.46",
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.45",
24
- "@gbasin/agentboard-darwin-x64": "0.2.45",
25
- "@gbasin/agentboard-linux-x64": "0.2.45",
26
- "@gbasin/agentboard-linux-arm64": "0.2.45"
23
+ "@gbasin/agentboard-darwin-arm64": "0.2.46",
24
+ "@gbasin/agentboard-darwin-x64": "0.2.46",
25
+ "@gbasin/agentboard-linux-x64": "0.2.46",
26
+ "@gbasin/agentboard-linux-arm64": "0.2.46"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",