@gbasin/agentboard 0.4.4 → 0.4.6
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 +3 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -154,6 +154,7 @@ AGENTBOARD_PREFER_WINDOW_NAME=false
|
|
|
154
154
|
TERMINAL_MODE=pty
|
|
155
155
|
AGENTBOARD_CLAUDE_NO_FLICKER=true
|
|
156
156
|
AGENTBOARD_TMUX_SET_CLIPBOARD=true
|
|
157
|
+
AGENTBOARD_TMUX_SYNC=true
|
|
157
158
|
TERMINAL_MONITOR_TARGETS=true
|
|
158
159
|
VITE_ALLOWED_HOSTS=nuc,myserver
|
|
159
160
|
AGENTBOARD_DB_PATH=~/.agentboard/agentboard.db
|
|
@@ -189,6 +190,8 @@ Reasons to opt out: fullscreen rendering keeps the conversation in the alternate
|
|
|
189
190
|
|
|
190
191
|
`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
192
|
|
|
193
|
+
`AGENTBOARD_TMUX_SYNC` controls whether Agentboard's tmux client advertises synchronized-update support (`tmux -T sync`, tmux 3.2+). By default it does, so tmux wraps redraws in DEC 2026 frame markers and the browser terminal paints each frame atomically instead of tearing during fast fullscreen repaints (e.g. Claude Code's no-flicker renderer). The flag applies only to Agentboard's own client and does not change tmux server options. Set `AGENTBOARD_TMUX_SYNC=0` (or `false`) to disable.
|
|
194
|
+
|
|
192
195
|
`TERMINAL_MONITOR_TARGETS` (pipe-pane only) polls tmux to detect closed targets (set to `false` to disable).
|
|
193
196
|
|
|
194
197
|
`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.
|
|
3
|
+
"version": "0.4.6",
|
|
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.
|
|
24
|
-
"@gbasin/agentboard-darwin-x64": "0.4.
|
|
25
|
-
"@gbasin/agentboard-linux-x64": "0.4.
|
|
26
|
-
"@gbasin/agentboard-linux-arm64": "0.4.
|
|
23
|
+
"@gbasin/agentboard-darwin-arm64": "0.4.6",
|
|
24
|
+
"@gbasin/agentboard-darwin-x64": "0.4.6",
|
|
25
|
+
"@gbasin/agentboard-linux-x64": "0.4.6",
|
|
26
|
+
"@gbasin/agentboard-linux-arm64": "0.4.6"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"@untitledui-icons/react": "^1.0.3",
|
|
57
57
|
"@xterm/addon-clipboard": "^0.2.0",
|
|
58
58
|
"@xterm/addon-fit": "^0.11.0",
|
|
59
|
-
"@xterm/addon-progress": "^0.
|
|
60
|
-
"@xterm/addon-search": "^0.
|
|
59
|
+
"@xterm/addon-progress": "^0.2.0",
|
|
60
|
+
"@xterm/addon-search": "^0.16.0",
|
|
61
61
|
"@xterm/addon-serialize": "^0.14.0",
|
|
62
62
|
"@xterm/addon-web-links": "^0.12.0",
|
|
63
|
-
"@xterm/addon-webgl": "^0.
|
|
64
|
-
"@xterm/xterm": "^
|
|
63
|
+
"@xterm/addon-webgl": "^0.19.0",
|
|
64
|
+
"@xterm/xterm": "^6.0.0",
|
|
65
65
|
"clsx": "^2.1.1",
|
|
66
66
|
"hono": "^4.6.10",
|
|
67
67
|
"motion": "^12.25.0",
|