wolfpack-bridge 1.6.0 → 1.6.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 (3) hide show
  1. package/README.md +96 -64
  2. package/bin/install.cjs +36 -16
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -35,7 +35,7 @@
35
35
  :+**++++++*++*+=-:: .. ...... .. .:..::
36
36
  ```
37
37
 
38
- Mobile & desktop command center for AI coding agents. Control tmux-based sessions (Claude, Codex, Gemini, or any custom command) across multiple machines from your phone or browser. Secured by [Tailscale](https://tailscale.com/) — zero-config encrypted access, no ports to open.
38
+ Mobile & desktop command center for AI coding agents. Control agent sessions (Claude, Codex, Gemini, or any custom command) across multiple machines from your phone or browser. Sessions live in a dedicated Rust PTY broker daemon, so they survive wolfpack server restarts and redeploys. Secured by [Tailscale](https://tailscale.com/) — zero-config encrypted access, no ports to open.
39
39
 
40
40
  Install on your phone's home screen for a native app experience — scan the QR code after setup and tap **"Add to Home Screen"**.
41
41
 
@@ -53,32 +53,30 @@ Install on your phone's home screen for a native app experience — scan the QR
53
53
  <img src="docs/mobile-sessions.png" width="250" alt="Mobile — session list with multi-machine support" />
54
54
  </p>
55
55
  <p align="center">
56
- <kbd>Classic</kbd>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<kbd>Ghostty (WASM)</kbd>
57
- </p>
58
- <p align="center">
59
- <img src="docs/mobile-terminal.png" width="300" alt="Mobile — classic terminal mode" />
60
- <img src="docs/mobile-ghostty.png" width="300" alt="Mobile — ghostty WASM terminal mode" />
56
+ <img src="docs/mobile-ghostty.png" width="300" alt="Mobile — ghostty-web terminal" />
61
57
  </p>
62
58
 
63
59
  ## Architecture
64
60
 
65
61
  ```
66
- ┌─────────────┐ ┌───────────┐ ┌──────────────────────────────────┐
67
- │ Phone / │ │ Tailscale │ Your Machine
68
- │ Browser │◄────►│ (HTTPS) │◄────►│
69
- │ (PWA) │ │ mesh VPN │ │ ┌──────────┐ ┌──────┐ ┌─────┐
70
- └─────────────┘ └───────────┘ │ │ wolfpack │ │ tmux │Agent│
71
- │ │ server │◄│ │◄│(any)│ │
72
- │ │ HTTP/WS
73
- └──────────┘ └──────┘ └─────┘
74
- └──────────────────────────────────┘
62
+ ┌─────────────┐ ┌───────────┐ ┌──────────────────────────────────────────┐
63
+ │ Phone / │ │ Tailscale │ Your Machine
64
+ │ Browser │◄──►│ (HTTPS) │◄──►│
65
+ │ (PWA) │ │ mesh VPN │ │ ┌──────────┐ unix ┌──────────────┐
66
+ └─────────────┘ └───────────┘ │ │ wolfpack │ socket wolfpack- │ │
67
+ │ │ server │◄───────►│ broker │ │
68
+ │ │ (Bun) (Rust, PTY) │ │
69
+ HTTP/WS │ │ owns agents │
70
+ │ └──────────┘ └──────────────┘ │
71
+ └──────────────────────────────────────────┘
75
72
  ```
76
73
 
77
74
  **Components:**
78
- - **PWA** — single-file vanilla JS app (~90KB), no framework. Mobile-optimized touch UI + desktop ANSI terminal
79
- - **Server** — Bun HTTP + WebSocket. Serves embedded assets, proxies tmux via `capture-pane`/`send-keys`
80
- - **Ralph** — detached subprocess that iterates through a markdown plan file, invoking agents per-task
81
- - **Agents** — Claude, Codex, Gemini, or any shell command. Agent-agnostic by design
75
+ - **PWA** — vanilla JS, no framework. ghostty-web (WASM) renders the terminal on both mobile and desktop. Settings + multi-machine list persist in localStorage.
76
+ - **Server** — Bun HTTP + WebSocket. Serves embedded assets, exposes `/api/*` and the `/ws/pty` binary stream. Pure broker client — owns no PTYs.
77
+ - **Broker** — `wolfpack-broker`, a Rust daemon. Owns every PTY, keeps per-session output rings, and survives wolfpack server restarts. One Unix-domain socket per host (`$XDG_RUNTIME_DIR/wolfpack-broker.sock`, fallback `~/.wolfpack/broker.sock`). Wire format documented in [docs/broker-protocol.md](docs/broker-protocol.md).
78
+ - **Ralph** — detached subprocess that iterates through a markdown plan file, invoking agents per-task. See [docs/ralph-macchio.md](docs/ralph-macchio.md).
79
+ - **Agents** — Claude, Codex, Gemini, or any shell command. Agent-agnostic by design.
82
80
 
83
81
  ## Quick Install
84
82
 
@@ -100,75 +98,76 @@ curl -fsSL https://raw.githubusercontent.com/almogdepaz/wolfpack/main/install.sh
100
98
 
101
99
  This will download the pre-built binary for your platform, run the setup wizard, and optionally install as a login service.
102
100
 
103
- Supported platforms: macOS (Apple Silicon, Intel), Linux (x64, arm64).
101
+ Supported platforms: macOS (Apple Silicon, Intel), Linux (x64, arm64). Each platform package ships both `wolfpack` (the Bun binary) and `wolfpack-broker` (the Rust daemon).
104
102
 
105
103
  ### Prerequisites
106
104
 
107
- - **tmux**
108
- - **Tailscale** — install from [tailscale.com/download](https://tailscale.com/download), sign in, and make sure both your computer and phone are on the same tailnet
105
+ - **Tailscale** *(optional)* — install from [tailscale.com/download](https://tailscale.com/download), sign in, and make sure both your computer and phone are on the same tailnet. Required for remote access.
109
106
 
110
- ### tmux History
107
+ No other runtime dependencies. The broker is bundled.
111
108
 
112
- Wolfpack can only hydrate history that tmux still retains. Desktop terminal sessions prefill the latest 5,000 lines on connect, so if you want deeper scrollback, raise tmux's history limit:
109
+ ### Session Persistence
113
110
 
114
- ```tmux
115
- set -g history-limit 50000
116
- ```
111
+ The `wolfpack-broker` daemon owns every PTY and runs independently of the wolfpack server. If the server crashes, gets redeployed, or restarts (e.g. `launchctl kickstart`), agent sessions keep running. When the server comes back up, it reconnects to the existing broker over the Unix socket and re-attaches to live sessions automatically.
117
112
 
118
- Reload tmux or restart your sessions after changing it.
113
+ The broker is started by `wolfpack service install` (alongside the server) and is checked by `wolfpack doctor`.
119
114
 
120
115
  ## Usage
121
116
 
122
117
  ```bash
123
118
  wolfpack # Start the server (runs setup on first launch)
124
119
  wolfpack setup # Re-run the setup wizard
125
- wolfpack service install # Auto-start on login (launchd / systemd)
120
+ wolfpack ls # List active broker sessions
121
+ wolfpack kill <session> # Kill a session by name
122
+ wolfpack doctor # Diagnose broker socket, binaries, JWT, Tailscale
123
+ wolfpack migrate-plan FILE # Convert old-format plan headers to ## N. Title
124
+ wolfpack service install # Auto-start on login (launchd / systemd) — installs broker too
126
125
  wolfpack service stop # Stop the background service
127
126
  wolfpack service start # Start the background service
128
127
  wolfpack service status # Check if running
129
128
  wolfpack service uninstall # Remove the launch agent
130
- wolfpack uninstall # Remove everything (service, config, global command)
129
+ wolfpack uninstall --yes # Remove everything (service, config, ~/.wolfpack, global command)
131
130
  ```
132
131
 
133
132
  ### Setup Wizard
134
133
 
135
134
  On first run, `wolfpack` walks you through:
136
135
 
137
- 1. Checking prerequisites (tmux, Tailscale)
136
+ 1. Checking prerequisites (Tailscale — optional)
138
137
  2. Setting your projects directory (default: `~/Dev`)
139
138
  3. Choosing a port (default: `18790`)
140
- 4. Enabling Tailscale HTTPS access
141
- 5. Optionally installing as a login service
139
+ 4. Detecting/configuring Tailscale HTTPS access
140
+ 5. Optionally installing as a login service (which also installs the broker)
142
141
  6. Displaying a QR code to scan with your phone
142
+ 7. Printing JWT setup instructions
143
143
 
144
144
  ## Features
145
145
 
146
146
  ### Session Management
147
- - Create, view, and kill tmux agent sessions
148
- - Agent picker — Claude, Codex, Gemini, or custom commands per session
147
+ - Create, view, and kill agent sessions — all owned by the broker daemon
148
+ - Agent picker — Claude, Codex, Gemini, or custom commands per session (configurable in Settings → Agents)
149
149
  - Session triage — running, idle, and needs-input states with color-coded indicators
150
150
  - Live terminal output preview on session cards
151
151
 
152
152
  ### Desktop
153
- - **Multi-terminal grid** — view 2-6 sessions side-by-side in a CSS grid layout. Click `+` on any sidebar card to add it to the grid, `×` to remove. Focused cell highlighted with green glow.
153
+ - **Multi-terminal grid** — view multiple sessions side-by-side in a CSS grid layout. Click `+` on any sidebar card to add it to the grid, `×` to remove. Focused cell highlighted.
154
154
  - **Collapsible sidebar** — pin or auto-hide. Shows all sessions across machines with status badges, output preview, and grid/kill buttons.
155
- - **xterm.js PTY** — full terminal emulator with direct PTY connection (not capture-pane polling)
155
+ - **ghostty-web terminal** — full WASM terminal emulator with direct binary `/ws/pty` connection. Per-instance isolation lets each grid cell run its own emulator.
156
156
  - **Keyboard shortcuts:**
157
157
  - `Cmd/Ctrl + ArrowUp/Down` — cycle between sessions
158
158
  - `Cmd/Ctrl + ArrowLeft/Right` — navigate grid cells
159
159
  - `Cmd/Ctrl + T` — new session (project picker)
160
- - `Cmd/Ctrl + K` — clear terminal
160
+ - `Cmd/Ctrl + K` — clear focused terminal
161
161
 
162
162
  ### Mobile
163
- - **Two terminal modes** — choose in Settings:
164
- - **Classic** (default) lightweight capture-pane polling. No WASM, works on all devices. Best for quick monitoring and input.
165
- - **Ghostty (WASM)** — full terminal emulator via [ghostty-web](https://github.com/ghostty-org/ghostty). Richer output (colors, cursor, scrollback) but heavier on battery. Keyboard is suppressed by default — tap the keyboard button to open it.
166
- - **Keyboard accessory** — quick-action bar with Enter, Esc, arrow keys, Ctrl combos, and git status
167
- - **Touch scrolling** — momentum physics, long-press to select text and copy
168
- - **Haptic feedback** — vibration on key actions (toggleable)
169
- - **PWA** — install as a standalone app on your phone's home screen
163
+ - **ghostty-web terminal** — same WASM emulator as desktop, with the on-screen keyboard suppressed until you tap the keyboard button (prevents accidental focus steals).
164
+ - **Keyboard accessory** — quick-action bar with Enter, Esc, arrow keys, a `git` shortcut, and copy/keyboard buttons.
165
+ - **Quick commands** — user-defined command chips, configurable in Settings.
166
+ - **Touch scrolling** — momentum physics, long-press to select text and copy.
167
+ - **Haptic feedback** — vibration on key actions (toggleable).
168
+ - **PWA** — install as a standalone app on your phone's home screen.
170
169
 
171
- All settings (terminal mode, font size, haptics, etc.) persist in localStorage across sessions.
170
+ All settings (font size, haptics, enter-sends, snapshot TTL, etc.) persist in localStorage across sessions.
172
171
 
173
172
  ### Multi-Machine
174
173
  - One phone connects to multiple Wolfpack servers
@@ -178,7 +177,6 @@ All settings (terminal mode, font size, haptics, etc.) persist in localStorage a
178
177
 
179
178
  ### Other
180
179
  - **Notifications** — browser notifications + vibration when sessions need attention
181
- - **Search** — find text in terminal output with match navigation
182
180
  - **Reconnect handling** — auto-recovers on connection drop with status indicator
183
181
  - **Auto-resize** — terminal resizes to match your screen/grid cell
184
182
 
@@ -186,19 +184,44 @@ All settings (terminal mode, font size, haptics, etc.) persist in localStorage a
186
184
 
187
185
  1. Install [Tailscale](https://tailscale.com/download) on both your computer and phone
188
186
  2. Sign in to the same Tailscale account on both devices
189
- 3. Run `wolfpack setup` and say **y** to "Enable Tailscale HTTPS access?"
187
+ 3. Run `wolfpack setup` — it auto-detects your Tailscale hostname and runs `tailscale serve` to expose the port over HTTPS
190
188
  4. Scan the QR code with your phone
191
189
  5. Tap **"Add to Home Screen"** for the native app experience
192
190
 
193
191
  Tailscale's encrypted mesh network handles auth and routing — no ports to open, no DNS to configure.
194
192
 
193
+ ### Security
194
+
195
+ **Always use the Tailscale hostname** (e.g. `https://mybox.tail1234.ts.net`) — not raw IPs. The QR code from setup already points to the correct URL. Raw IP access (LAN or Tailscale `100.x.x.x`) bypasses Tailscale's DNS-based routing and may not be protected by CORS.
196
+
197
+ **JWT authentication** adds a second layer of protection. Without it, anyone who can reach the server port has full access to your sessions. To enable:
198
+
199
+ 1. Generate a secret (minimum 32 characters):
200
+ ```bash
201
+ openssl rand -base64 48
202
+ ```
203
+ 2. Set the environment variable before starting wolfpack:
204
+ ```bash
205
+ export WOLFPACK_JWT_SECRET="your-secret-here"
206
+ ```
207
+ For service installs, add it to your shell profile or the service environment.
208
+
209
+ 3. Optional configuration:
210
+ - `WOLFPACK_JWT_AUDIENCE` — expected `aud` claim
211
+ - `WOLFPACK_JWT_ISSUER` — expected `iss` claim
212
+ - `WOLFPACK_JWT_CLOCK_TOLERANCE_SEC` — clock skew tolerance (default: 30s)
213
+
214
+ Tokens use HS256 (HMAC-SHA256). The server validates but does not issue tokens — generate them with any JWT library using the same secret.
215
+
216
+ **Without `WOLFPACK_JWT_SECRET` set, authentication is disabled.** This is fine for localhost-only usage but strongly recommended when the server is reachable over a network.
217
+
195
218
  ## Ralph Loop
196
219
 
197
220
  Autonomous task runner. Write a markdown plan file, pick an agent, set iterations, and let it rip. Ralph reads the plan, extracts the first incomplete task, hands it to the agent, marks it done, and moves on — implementing, testing, and committing along the way. See [full documentation](docs/ralph-macchio.md).
198
221
 
199
222
  ## Config
200
223
 
201
- Stored in `~/.wolfpack/config.json`:
224
+ Stored in `~/.wolfpack/config.json` (mode 0600):
202
225
 
203
226
  ```json
204
227
  {
@@ -208,50 +231,59 @@ Stored in `~/.wolfpack/config.json`:
208
231
  }
209
232
  ```
210
233
 
211
- Agent command and settings stored in `~/.wolfpack/bridge-settings.json`.
234
+ Agent list and per-server settings stored in `~/.wolfpack/bridge-settings.json`.
235
+
236
+ The broker socket lives at `$XDG_RUNTIME_DIR/wolfpack-broker.sock` (or `~/.wolfpack/broker.sock`) and is owned by the user (filesystem permissions are the auth boundary).
212
237
 
213
238
  ## Contributing
214
239
 
215
240
  ### Dev Setup
216
241
 
217
- Requires [Bun](https://bun.sh/) (v1.2+).
242
+ Requires [Bun](https://bun.sh/) (v1.2+) and a [Rust toolchain](https://rustup.rs/) (for building the broker).
218
243
 
219
244
  ```bash
220
245
  git clone https://github.com/almogdepaz/wolfpack.git
221
246
  cd wolfpack
222
247
  bun install
223
- bun run scripts/gen-assets.ts # generate embedded assets (required once)
224
- bun run cli.ts # start the server locally
248
+ bun run scripts/gen-assets.ts # generate embedded assets (required once)
249
+ cargo build --release --manifest-path broker/Cargo.toml # build the broker
250
+ bun run src/cli/index.ts # start the server locally
225
251
  ```
226
252
 
253
+ For an end-to-end local install (build + service install + restart), use `scripts/deploy-local.sh`.
254
+
227
255
  ### Testing
228
256
 
229
257
  ```bash
230
- bun test # all tests
231
- bun test tests/unit/ # unit tests only
232
- bun test tests/unit/plan-parsing.test.ts # single file
258
+ bun test # all bun tests
259
+ bun test tests/unit/ # unit tests only
260
+ bun test tests/unit/plan-parsing.test.ts # single file
261
+ bunx playwright test # e2e (uses test-server harness)
233
262
  ```
234
263
 
235
- Tests use Bun's built-in runner. Three categories:
236
- - `tests/unit/` — plan parsing, ralph log parsing, escaping, validation, grid logic
264
+ Test layout:
265
+ - `tests/unit/` — pure-logic tests (plan parsing, ralph log parsing, escaping, validation, grid logic, broker codec, etc.)
266
+ - `tests/integration/` — API routes, broker backend, ralph loop endpoints, WS dispatch
237
267
  - `tests/snapshot/` — launchd plist and systemd unit generation
238
- - `tests/integration/` — API routes, ralph loop endpoints
268
+ - `tests/e2e/` — Playwright end-to-end (`test:e2e` / `test:e2e:headed` scripts)
269
+
270
+ The Rust broker has its own tests under `broker/tests/` (`cargo test` from `broker/`).
239
271
 
240
272
  ### Asset Pipeline
241
273
 
242
274
  Frontend files live in `public/`. The server doesn't serve from disk — everything is embedded:
243
275
 
244
- 1. Edit files in `public/` (HTML, PNG, manifest, etc.)
245
- 2. Run `bun run scripts/gen-assets.ts` — embeds them into `public-assets.ts` (binary→base64, text→string)
246
- 3. **Do NOT edit `public-assets.ts` manually** — it's auto-generated
276
+ 1. Edit files in `public/` (HTML, TS, CSS, manifest, etc.)
277
+ 2. Run `bun run scripts/gen-assets.ts` — bundles `public/app.ts` and ghostty-web, then embeds every file from `public/` into `src/public-assets.ts` (binary→base64, text→string)
278
+ 3. **Do NOT edit `src/public-assets.ts` manually** — it's auto-generated
247
279
 
248
280
  ### Building Binaries
249
281
 
250
282
  ```bash
251
- bun run scripts/build.ts # assets + 4 platform binaries in dist/
283
+ bun run scripts/build.ts # assets + broker + 4 platform binaries + npm pkg dirs in dist/
252
284
  ```
253
285
 
254
- Compiles for: linux-x64, linux-arm64, darwin-x64, darwin-arm64.
286
+ Compiles `wolfpack` for: linux-x64, linux-arm64, darwin-x64, darwin-arm64. The script also stages `wolfpack-broker` per platform — in CI it expects pre-built broker binaries under `dist/broker/<target>/`; locally it falls back to a host-arch-only `cargo build --release`.
255
287
 
256
288
  ### PR Conventions
257
289
 
package/bin/install.cjs CHANGED
@@ -1,10 +1,21 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * postinstall — copies platform binary from the optional dependency to bin/wolfpack.
3
+ * postinstall — copies platform binaries from the optional dependency to bin/.
4
4
  *
5
- * This is an optimization so run.cjs can use the fast path. If the platform
6
- * package isn't installed (e.g. bunx skips optionalDependencies), this exits
7
- * cleanly run.cjs handles resolution at runtime.
5
+ * Two binaries ship per platform package:
6
+ * - wolfpack (the bun-compiled server + CLI)
7
+ * - wolfpack-broker (the rust PTY broker daemon)
8
+ *
9
+ * Both are placed next to bin/run.cjs so:
10
+ * 1. run.cjs uses the fast local path for `wolfpack`
11
+ * 2. service.ts:brokerProgramPath() finds wolfpack-broker via its
12
+ * "co-located with the running wolfpack binary" search rule
13
+ *
14
+ * If the platform package isn't installed (e.g. bunx skips
15
+ * optionalDependencies), this exits cleanly and run.cjs handles resolution
16
+ * at runtime; the broker won't be locatable in that case until the user
17
+ * reinstalls properly, but `wolfpack service install` will print a clear
18
+ * "could not locate wolfpack-broker" error rather than failing silently.
8
19
  */
9
20
  const { platform, arch } = require("node:os");
10
21
  const { copyFileSync, chmodSync, existsSync } = require("node:fs");
@@ -12,24 +23,33 @@ const { join, dirname } = require("node:path");
12
23
 
13
24
  const key = `${platform()}-${arch()}`;
14
25
  const pkg = `wolfpack-bridge-${key}`;
15
- const dest = join(__dirname, "wolfpack");
16
26
 
17
- // resolve binary from platform-specific optional package
18
- let src;
27
+ // resolve platform-specific optional package
28
+ let pkgRoot;
19
29
  try {
20
- const pkgJson = require.resolve(`${pkg}/package.json`);
21
- src = join(dirname(pkgJson), "wolfpack");
30
+ pkgRoot = dirname(require.resolve(`${pkg}/package.json`));
22
31
  } catch {
23
32
  console.log(`wolfpack: platform package ${pkg} not found, skipping postinstall`);
24
- console.log("wolfpack: binary will be resolved at runtime");
33
+ console.log("wolfpack: binaries will be resolved at runtime");
25
34
  process.exit(0);
26
35
  }
27
36
 
28
- if (!existsSync(src)) {
29
- console.log(`wolfpack: binary not found in ${pkg}, skipping postinstall`);
30
- process.exit(0);
37
+ function copyBinary(name) {
38
+ const src = join(pkgRoot, name);
39
+ const dest = join(__dirname, name);
40
+ if (!existsSync(src)) {
41
+ console.log(`wolfpack: ${name} not found in ${pkg}, skipping`);
42
+ return false;
43
+ }
44
+ copyFileSync(src, dest);
45
+ chmodSync(dest, 0o755);
46
+ return true;
31
47
  }
32
48
 
33
- copyFileSync(src, dest);
34
- chmodSync(dest, 0o755);
35
- console.log(`wolfpack: installed ${key} binary`);
49
+ const gotMain = copyBinary("wolfpack");
50
+ const gotBroker = copyBinary("wolfpack-broker");
51
+ if (gotMain && gotBroker) {
52
+ console.log(`wolfpack: installed ${key} binaries (wolfpack + wolfpack-broker)`);
53
+ } else if (gotMain) {
54
+ console.log(`wolfpack: installed ${key} wolfpack binary; broker missing (rebuild platform package)`);
55
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-bridge",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "type": "module",
5
5
  "description": "Mobile command center for tmux-based AI agent sessions",
6
6
  "bin": {
@@ -17,10 +17,10 @@
17
17
  "postinstall": "node bin/install.cjs"
18
18
  },
19
19
  "optionalDependencies": {
20
- "wolfpack-bridge-darwin-arm64": "1.6.0",
21
- "wolfpack-bridge-darwin-x64": "1.6.0",
22
- "wolfpack-bridge-linux-arm64": "1.6.0",
23
- "wolfpack-bridge-linux-x64": "1.6.0"
20
+ "wolfpack-bridge-darwin-arm64": "1.6.2",
21
+ "wolfpack-bridge-darwin-x64": "1.6.2",
22
+ "wolfpack-bridge-linux-arm64": "1.6.2",
23
+ "wolfpack-bridge-linux-x64": "1.6.2"
24
24
  },
25
25
  "keywords": [
26
26
  "tmux",