wolfpack-bridge 1.5.8 → 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 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -50,8 +50,14 @@ Install on your phone's home screen for a native app experience — scan the QR
|
|
|
50
50
|
### Mobile
|
|
51
51
|
|
|
52
52
|
<p align="center">
|
|
53
|
-
<img src="docs/mobile-sessions.png" width="
|
|
54
|
-
|
|
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" />
|
|
55
61
|
</p>
|
|
56
62
|
|
|
57
63
|
## Architecture
|
|
@@ -154,11 +160,16 @@ On first run, `wolfpack` walks you through:
|
|
|
154
160
|
- `Cmd/Ctrl + K` — clear terminal
|
|
155
161
|
|
|
156
162
|
### Mobile
|
|
157
|
-
- **
|
|
158
|
-
- **
|
|
159
|
-
- **
|
|
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)
|
|
160
169
|
- **PWA** — install as a standalone app on your phone's home screen
|
|
161
170
|
|
|
171
|
+
All settings (terminal mode, font size, haptics, etc.) persist in localStorage across sessions.
|
|
172
|
+
|
|
162
173
|
### Multi-Machine
|
|
163
174
|
- One phone connects to multiple Wolfpack servers
|
|
164
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",
|