@gbasin/agentboard 0.3.2 → 0.4.0

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 +9 -2
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -12,9 +12,11 @@ Run your desktop/server, then connect from your phone or laptop over Tailscale/L
12
12
 
13
13
  - iOS Safari mobile experience with:
14
14
  - Paste support (including images)
15
- - Touch scrolling
15
+ - Touch scrolling, tap-to-click, and long-press selection in fullscreen Claude Code sessions
16
+ - Mobile-friendly copy prompts when browser clipboard writes need a user gesture
16
17
  - Virtual arrow keys / d-pad
17
18
  - Quick keys toolbar (ctrl, esc, etc.)
19
+ - Claude Code fullscreen renderer support by default, with mouse scrolling, click handling, in-app selection, and clipboard forwarding through the browser terminal
18
20
  - Out-of-the-box log tracking and matching for Claude, Codex, and Pi — auto-matches sessions to active tmux windows, with one-click Wake for Hibernating and History sessions.
19
21
  - Shows the last user prompt for each session, so you can remember what each agent is working on
20
22
  - Hibernate sessions to close their tmux window while keeping them visible across restarts for manual Wake
@@ -85,7 +87,7 @@ For persistent deployment, see [systemd/README.md](systemd/README.md) (Linux) or
85
87
 
86
88
  ### From source
87
89
 
88
- Requires **Bun 1.3.6+** (see [Troubleshooting](#troubleshooting)).
90
+ Requires **Bun 1.3.14+** (see [Troubleshooting](#troubleshooting)).
89
91
 
90
92
  ```bash
91
93
  bun install
@@ -150,6 +152,7 @@ DISCOVER_PREFIXES=work,external
150
152
  PRUNE_WS_SESSIONS=true
151
153
  AGENTBOARD_PREFER_WINDOW_NAME=false
152
154
  TERMINAL_MODE=pty
155
+ AGENTBOARD_CLAUDE_NO_FLICKER=true
153
156
  TERMINAL_MONITOR_TARGETS=true
154
157
  VITE_ALLOWED_HOSTS=nuc,myserver
155
158
  AGENTBOARD_DB_PATH=~/.agentboard/agentboard.db
@@ -179,6 +182,10 @@ AGENTBOARD_PASTE_IMAGE_MAX_BYTES=41943040
179
182
 
180
183
  `TERMINAL_MODE` selects terminal I/O strategy: `pty` (default, grouped session) or `pipe-pane` (PTY-less, works in daemon/systemd/docker without `-t`).
181
184
 
185
+ `AGENTBOARD_CLAUDE_NO_FLICKER` controls how Agentboard launches new Claude Code windows. By default, Agentboard sets `CLAUDE_CODE_NO_FLICKER=1` on newly-created panes so Claude uses its fullscreen renderer with mouse scrolling, click handling, in-app selection, and flat memory usage for long conversations. Set `AGENTBOARD_CLAUDE_NO_FLICKER=0` (or `false`) before starting Agentboard to launch Claude without that env var. Fullscreen rendering requires Claude Code v2.1.89 or later; older Claude Code versions should ignore the env var and use the classic renderer.
186
+
187
+ 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
+
182
189
  `TERMINAL_MONITOR_TARGETS` (pipe-pane only) polls tmux to detect closed targets (set to `false` to disable).
183
190
 
184
191
  `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.3.2",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "description": "Web GUI for tmux optimized for AI agent TUIs",
6
6
  "author": "gbasin",
@@ -17,13 +17,13 @@
17
17
  "README.md"
18
18
  ],
19
19
  "engines": {
20
- "bun": ">=1.3.6"
20
+ "bun": ">=1.3.14"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@gbasin/agentboard-darwin-arm64": "0.3.2",
24
- "@gbasin/agentboard-darwin-x64": "0.3.2",
25
- "@gbasin/agentboard-linux-x64": "0.3.2",
26
- "@gbasin/agentboard-linux-arm64": "0.3.2"
23
+ "@gbasin/agentboard-darwin-arm64": "0.4.0",
24
+ "@gbasin/agentboard-darwin-x64": "0.4.0",
25
+ "@gbasin/agentboard-linux-x64": "0.4.0",
26
+ "@gbasin/agentboard-linux-arm64": "0.4.0"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",
@@ -34,10 +34,11 @@
34
34
  "lint": "oxlint .",
35
35
  "typecheck": "tsc --noEmit",
36
36
  "test": "bun scripts/test-runner.ts",
37
+ "test:ci": "bun scripts/test-runner.ts --skip-real-tmux",
37
38
  "deps:risk": "bun scripts/dependency-risk.ts",
38
39
  "deps:risk:ci": "bun scripts/dependency-risk.ts --threshold critical",
39
40
  "deps:risk:json": "bun scripts/dependency-risk.ts --json",
40
- "test:coverage": "bun scripts/test-runner.ts --coverage --coverage-reporter=lcov --skip-isolated && bun run coverage:all",
41
+ "test:coverage": "bun scripts/test-runner.ts --coverage --coverage-reporter=lcov --skip-isolated --skip-real-tmux && bun run coverage:all",
41
42
  "coverage:all": "bun scripts/coverage-all.ts",
42
43
  "test:e2e": "playwright test",
43
44
  "test:e2e:headed": "playwright test --headed",