@gbasin/agentboard 0.2.41 → 0.2.43

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 +8 -7
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -15,9 +15,9 @@ Run your desktop/server, then connect from your phone or laptop over Tailscale/L
15
15
  - Touch scrolling
16
16
  - Virtual arrow keys / d-pad
17
17
  - Quick keys toolbar (ctrl, esc, etc.)
18
- - Out-of-the-box log tracking and matching for Claude, Codex, and Pi — auto-matches sessions to active tmux windows, with one-click restore for inactive sessions.
18
+ - 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
19
  - Shows the last user prompt for each session, so you can remember what each agent is working on
20
- - Pin agent TUI sessions to auto-resume them when the server restarts (useful if your machine reboots or tmux dies)
20
+ - Hibernate sessions to close their tmux window while keeping them visible across restarts for manual Wake
21
21
 
22
22
  ## How It Works
23
23
 
@@ -39,11 +39,12 @@ Run your desktop/server, then connect from your phone or laptop over Tailscale/L
39
39
  - **Session discovery** — polls local tmux windows and (optionally) remote hosts over SSH
40
40
  - **Status inference** — reads pane content and Claude/Codex JSONL logs to determine if each agent is *working*, *waiting for input*, or *asking for permission*
41
41
  - **Live terminal** — streams I/O through the server so you can interact with any session from any device
42
+ - **Hibernating and History sessions** — keeps dormant agent sessions in the sidebar and wakes them on demand; startup does not auto-wake dormant sessions
42
43
 
43
44
  ### Desktop
44
- | Terminal | Sessions | Pinning |
45
+ | Terminal | Sessions | Hibernating |
45
46
  | :---: | :---: | :---: |
46
- | <img src="assets/desktop.png" alt="Terminal" height="400"/> | <img src="assets/sessions.png" alt="Sessions" height="400"/> | <img src="assets/pins.png" alt="Pinning" height="400"/> |
47
+ | <img src="assets/desktop.png" alt="Terminal" height="400"/> | <img src="assets/sessions.png" alt="Sessions" height="400"/> | <img src="assets/pins.png" alt="Hibernating" height="400"/> |
47
48
 
48
49
  ### Mobile
49
50
  | Terminal | Controls |
@@ -80,7 +81,7 @@ npx @gbasin/agentboard
80
81
 
81
82
  Then open `http://localhost:4040` (or `http://<your-machine>:4040` from another device).
82
83
 
83
- For persistent deployment on Linux, see [systemd/README.md](systemd/README.md).
84
+ For persistent deployment, see [systemd/README.md](systemd/README.md) (Linux) or [launchd/README.md](launchd/README.md) (macOS).
84
85
 
85
86
  ### From source
86
87
 
@@ -100,7 +101,7 @@ bun run build
100
101
  bun run start
101
102
  ```
102
103
 
103
- For persistent deployment on Linux, see [systemd/README.md](systemd/README.md).
104
+ For persistent deployment, see [systemd/README.md](systemd/README.md) (Linux) or [launchd/README.md](launchd/README.md) (macOS).
104
105
 
105
106
  ## Dependency Risk Scanner
106
107
 
@@ -180,7 +181,7 @@ AGENTBOARD_LOG_WATCH_MODE=watch
180
181
 
181
182
  All persistent data is stored in `~/.agentboard/`: session database (`agentboard.db`) and logs (`agentboard.log`). Override paths with `AGENTBOARD_DB_PATH` and `LOG_FILE`.
182
183
 
183
- `AGENTBOARD_INACTIVE_MAX_AGE_HOURS` limits inactive sessions shown in the UI to those with recent activity (default: 24 hours). Older sessions remain in the database but are not displayed or processed for orphan rematch.
184
+ `AGENTBOARD_INACTIVE_MAX_AGE_HOURS` limits History sessions shown in the UI to those with recent activity (default: 24 hours). Older sessions remain in the database but are not displayed or processed for orphan rematch. The env var name is kept for compatibility.
184
185
 
185
186
  `AGENTBOARD_EXCLUDE_PROJECTS` filters out sessions from specific project directories (comma-separated). Use `<empty>` to exclude sessions with no project path. Useful for hiding automated/spam sessions.
186
187
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbasin/agentboard",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
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.41",
24
- "@gbasin/agentboard-darwin-x64": "0.2.41",
25
- "@gbasin/agentboard-linux-x64": "0.2.41",
26
- "@gbasin/agentboard-linux-arm64": "0.2.41"
23
+ "@gbasin/agentboard-darwin-arm64": "0.2.43",
24
+ "@gbasin/agentboard-darwin-x64": "0.2.43",
25
+ "@gbasin/agentboard-linux-x64": "0.2.43",
26
+ "@gbasin/agentboard-linux-arm64": "0.2.43"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",