@gbasin/agentboard 0.4.1 → 0.4.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 +3 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -153,6 +153,7 @@ PRUNE_WS_SESSIONS=true
153
153
  AGENTBOARD_PREFER_WINDOW_NAME=false
154
154
  TERMINAL_MODE=pty
155
155
  AGENTBOARD_CLAUDE_NO_FLICKER=true
156
+ AGENTBOARD_TMUX_SET_CLIPBOARD=true
156
157
  TERMINAL_MONITOR_TARGETS=true
157
158
  VITE_ALLOWED_HOSTS=nuc,myserver
158
159
  AGENTBOARD_DB_PATH=~/.agentboard/agentboard.db
@@ -186,6 +187,8 @@ AGENTBOARD_PASTE_IMAGE_MAX_BYTES=41943040
186
187
 
187
188
  Reasons to opt out: fullscreen rendering keeps the conversation in the alternate screen buffer instead of native terminal scrollback, so terminal-level search/copy workflows behave differently; Claude also captures mouse events unless you disable its mouse capture. Inside Claude Code, run `/tui default` to switch a session back to the classic renderer, or launch Claude with `CLAUDE_CODE_DISABLE_MOUSE=1` if you want fullscreen rendering but native mouse selection.
188
189
 
190
+ `AGENTBOARD_TMUX_SET_CLIPBOARD` controls whether Agentboard enables tmux's `set-clipboard on` when it attaches. By default it does, so copies made inside a session land in a tmux paste buffer that Agentboard can relay to the browser clipboard (important on iOS Safari, where the async OSC 52 path can't satisfy the user-gesture rule). Because `set-clipboard` is a server-global tmux option, this affects your whole tmux server and is not reverted on disconnect — set `AGENTBOARD_TMUX_SET_CLIPBOARD=0` (or `false`) to leave your tmux configuration untouched.
191
+
189
192
  `TERMINAL_MONITOR_TARGETS` (pipe-pane only) polls tmux to detect closed targets (set to `false` to disable).
190
193
 
191
194
  `VITE_ALLOWED_HOSTS` allows access to the Vite dev server from other hostnames. Useful with Tailscale MagicDNS - add your machine name (e.g., `nuc`) to access the dev server at `http://nuc:5173` from other devices on your tailnet.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbasin/agentboard",
3
- "version": "0.4.1",
3
+ "version": "0.4.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.4.1",
24
- "@gbasin/agentboard-darwin-x64": "0.4.1",
25
- "@gbasin/agentboard-linux-x64": "0.4.1",
26
- "@gbasin/agentboard-linux-arm64": "0.4.1"
23
+ "@gbasin/agentboard-darwin-arm64": "0.4.2",
24
+ "@gbasin/agentboard-darwin-x64": "0.4.2",
25
+ "@gbasin/agentboard-linux-x64": "0.4.2",
26
+ "@gbasin/agentboard-linux-arm64": "0.4.2"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",