wolfpack-bridge 1.5.9 → 1.6.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.
- package/README.md +16 -7
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -35,8 +35,6 @@
|
|
|
35
35
|
:+**++++++*++*+=-:: .. ...... .. .:..::
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
I got tired of SSHing into 4 machines to check if Claude was stuck on a permission prompt. I wanted one screen — on my phone, on my laptop, wherever — that showed me every running agent across every box, and let me actually interact with them. So I built wolfpack.
|
|
39
|
-
|
|
40
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.
|
|
41
39
|
|
|
42
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"**.
|
|
@@ -52,8 +50,14 @@ Install on your phone's home screen for a native app experience — scan the QR
|
|
|
52
50
|
### Mobile
|
|
53
51
|
|
|
54
52
|
<p align="center">
|
|
55
|
-
<img src="docs/mobile-sessions.png" width="
|
|
56
|
-
|
|
53
|
+
<img src="docs/mobile-sessions.png" width="250" alt="Mobile — session list with multi-machine support" />
|
|
54
|
+
</p>
|
|
55
|
+
<p align="center">
|
|
56
|
+
<kbd>Classic</kbd> <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" />
|
|
57
61
|
</p>
|
|
58
62
|
|
|
59
63
|
## Architecture
|
|
@@ -156,11 +160,16 @@ On first run, `wolfpack` walks you through:
|
|
|
156
160
|
- `Cmd/Ctrl + K` — clear terminal
|
|
157
161
|
|
|
158
162
|
### Mobile
|
|
159
|
-
- **
|
|
160
|
-
- **
|
|
161
|
-
- **
|
|
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)
|
|
162
169
|
- **PWA** — install as a standalone app on your phone's home screen
|
|
163
170
|
|
|
171
|
+
All settings (terminal mode, font size, haptics, etc.) persist in localStorage across sessions.
|
|
172
|
+
|
|
164
173
|
### Multi-Machine
|
|
165
174
|
- One phone connects to multiple Wolfpack servers
|
|
166
175
|
- Sessions grouped by machine with online/offline status
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wolfpack-bridge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
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.
|
|
21
|
-
"wolfpack-bridge-darwin-x64": "1.
|
|
22
|
-
"wolfpack-bridge-linux-arm64": "1.
|
|
23
|
-
"wolfpack-bridge-linux-x64": "1.
|
|
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"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"tmux",
|