wolfpack-bridge 1.5.0 → 1.5.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.
- package/README.md +59 -17
- package/package.json +7 -5
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[]()
|
|
6
6
|
[](https://github.com/almogdepaz/wolfpack/releases)
|
|
7
|
+
[](https://github.com/almogdepaz/wolfpack/stargazers)
|
|
7
8
|
|
|
8
9
|
```
|
|
9
10
|
...:.
|
|
@@ -17,7 +18,7 @@
|
|
|
17
18
|
-. .. -++++***#**++*#*--:---===:
|
|
18
19
|
-.:--==+=--=*++*+**********+==------++-
|
|
19
20
|
.:----=++*++##########******+=====--=+#=-.
|
|
20
|
-
|
|
21
|
+
.::-----=+*#%%%%%%#***###*+===--==+*=++=:.
|
|
21
22
|
...::::-=+*#%%############*+-----===+****+=:.
|
|
22
23
|
:--=-====+******++****##***-.::--++*######**
|
|
23
24
|
.++-+++++***********#*+*#***=.:---=+**=--=+==
|
|
@@ -38,11 +39,19 @@ Mobile & desktop command center for AI coding agents. Control tmux-based session
|
|
|
38
39
|
|
|
39
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"**.
|
|
40
41
|
|
|
42
|
+
### Desktop
|
|
41
43
|
<p align="center">
|
|
42
|
-
<img src="docs/desktop-
|
|
44
|
+
<img src="docs/desktop-terminal.png" width="700" alt="Desktop — terminal with collapsible sidebar" />
|
|
43
45
|
</p>
|
|
44
46
|
<p align="center">
|
|
45
|
-
<img src="docs/
|
|
47
|
+
<img src="docs/desktop-grid.png" width="700" alt="Desktop — multi-terminal grid view" />
|
|
48
|
+
</p>
|
|
49
|
+
|
|
50
|
+
### Mobile
|
|
51
|
+
|
|
52
|
+
<p align="center">
|
|
53
|
+
<img src="docs/mobile-sessions.png" width="300" alt="Mobile — session list with multi-machine support" />
|
|
54
|
+
<img src="docs/mobile-terminal.png" width="300" alt="Mobile — live terminal view" />
|
|
46
55
|
</p>
|
|
47
56
|
|
|
48
57
|
## Architecture
|
|
@@ -92,6 +101,16 @@ Supported platforms: macOS (Apple Silicon, Intel), Linux (x64, arm64).
|
|
|
92
101
|
- **tmux**
|
|
93
102
|
- **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
|
|
94
103
|
|
|
104
|
+
### tmux History
|
|
105
|
+
|
|
106
|
+
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:
|
|
107
|
+
|
|
108
|
+
```tmux
|
|
109
|
+
set -g history-limit 50000
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Reload tmux or restart your sessions after changing it.
|
|
113
|
+
|
|
95
114
|
## Usage
|
|
96
115
|
|
|
97
116
|
```bash
|
|
@@ -118,15 +137,39 @@ On first run, `wolfpack` walks you through:
|
|
|
118
137
|
|
|
119
138
|
## Features
|
|
120
139
|
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
140
|
+
### Session Management
|
|
141
|
+
- Create, view, and kill tmux agent sessions
|
|
142
|
+
- Agent picker — Claude, Codex, Gemini, or custom commands per session
|
|
143
|
+
- Session triage — running, idle, and needs-input states with color-coded indicators
|
|
144
|
+
- Live terminal output preview on session cards
|
|
145
|
+
|
|
146
|
+
### Desktop
|
|
147
|
+
- **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.
|
|
148
|
+
- **Collapsible sidebar** — pin or auto-hide. Shows all sessions across machines with status badges, output preview, and grid/kill buttons.
|
|
149
|
+
- **xterm.js PTY** — full terminal emulator with direct PTY connection (not capture-pane polling)
|
|
150
|
+
- **Keyboard shortcuts:**
|
|
151
|
+
- `Cmd/Ctrl + ArrowUp/Down` — cycle between sessions
|
|
152
|
+
- `Cmd/Ctrl + ArrowLeft/Right` — navigate grid cells
|
|
153
|
+
- `Cmd/Ctrl + T` — new session (project picker)
|
|
154
|
+
- `Cmd/Ctrl + K` — clear terminal
|
|
155
|
+
|
|
156
|
+
### Mobile
|
|
157
|
+
- **Capture-pane polling** — real-time terminal view optimized for mobile
|
|
158
|
+
- **Swipe gestures** — swipe between sessions and views
|
|
159
|
+
- **Haptic feedback** — vibration on key actions
|
|
160
|
+
- **PWA** — install as a standalone app on your phone's home screen
|
|
161
|
+
|
|
162
|
+
### Multi-Machine
|
|
163
|
+
- One phone connects to multiple Wolfpack servers
|
|
164
|
+
- Sessions grouped by machine with online/offline status
|
|
165
|
+
- Auto-discover Tailscale peers running Wolfpack
|
|
166
|
+
- Cross-machine session management from a single UI
|
|
167
|
+
|
|
168
|
+
### Other
|
|
125
169
|
- **Notifications** — browser notifications + vibration when sessions need attention
|
|
126
170
|
- **Search** — find text in terminal output with match navigation
|
|
127
|
-
- **PWA** — install as a standalone app on your phone's home screen
|
|
128
171
|
- **Reconnect handling** — auto-recovers on connection drop with status indicator
|
|
129
|
-
- **Auto-resize** —
|
|
172
|
+
- **Auto-resize** — terminal resizes to match your screen/grid cell
|
|
130
173
|
|
|
131
174
|
### Remote Access
|
|
132
175
|
|
|
@@ -138,13 +181,6 @@ On first run, `wolfpack` walks you through:
|
|
|
138
181
|
|
|
139
182
|
Tailscale's encrypted mesh network handles auth and routing — no ports to open, no DNS to configure.
|
|
140
183
|
|
|
141
|
-
### Multi-Machine
|
|
142
|
-
|
|
143
|
-
1. Install Wolfpack on each machine (`bunx wolfpack-bridge` or `curl` install)
|
|
144
|
-
2. Ensure all machines and your phone share a Tailscale network
|
|
145
|
-
3. On your phone: **Settings → Add Machine** → scan QR or paste URL
|
|
146
|
-
4. Sessions from all machines appear in a single grouped view
|
|
147
|
-
|
|
148
184
|
## Ralph Loop
|
|
149
185
|
|
|
150
186
|
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).
|
|
@@ -186,7 +222,7 @@ bun test tests/unit/plan-parsing.test.ts # single file
|
|
|
186
222
|
```
|
|
187
223
|
|
|
188
224
|
Tests use Bun's built-in runner. Three categories:
|
|
189
|
-
- `tests/unit/` — plan parsing, ralph log parsing, escaping, validation
|
|
225
|
+
- `tests/unit/` — plan parsing, ralph log parsing, escaping, validation, grid logic
|
|
190
226
|
- `tests/snapshot/` — launchd plist and systemd unit generation
|
|
191
227
|
- `tests/integration/` — API routes, ralph loop endpoints
|
|
192
228
|
|
|
@@ -212,6 +248,12 @@ Compiles for: linux-x64, linux-arm64, darwin-x64, darwin-arm64.
|
|
|
212
248
|
- Tests must pass (`bun test`)
|
|
213
249
|
- Keep PRs focused — one feature or fix per PR
|
|
214
250
|
|
|
251
|
+
## Community & Support
|
|
252
|
+
|
|
253
|
+
- 💬 [Open a Discussion](https://github.com/almogdepaz/wolfpack/discussions) — questions, ideas, show & tell
|
|
254
|
+
- 🐛 [File an Issue](https://github.com/almogdepaz/wolfpack/issues) — bugs and feature requests
|
|
255
|
+
- ⭐ **Star the repo** if Wolfpack saves you time — it helps others find it
|
|
256
|
+
|
|
215
257
|
## License
|
|
216
258
|
|
|
217
259
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wolfpack-bridge",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.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.5.
|
|
21
|
-
"wolfpack-bridge-darwin-x64": "1.5.
|
|
22
|
-
"wolfpack-bridge-linux-arm64": "1.5.
|
|
23
|
-
"wolfpack-bridge-linux-x64": "1.5.
|
|
20
|
+
"wolfpack-bridge-darwin-arm64": "1.5.2",
|
|
21
|
+
"wolfpack-bridge-darwin-x64": "1.5.2",
|
|
22
|
+
"wolfpack-bridge-linux-arm64": "1.5.2",
|
|
23
|
+
"wolfpack-bridge-linux-x64": "1.5.2"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"tmux",
|
|
@@ -41,6 +41,8 @@
|
|
|
41
41
|
"@xterm/addon-fit": "^0.11.0",
|
|
42
42
|
"@xterm/addon-search": "^0.16.0",
|
|
43
43
|
"@xterm/addon-unicode11": "^0.9.0",
|
|
44
|
+
"@xterm/addon-web-links": "^0.12.0",
|
|
45
|
+
"@xterm/addon-webgl": "^0.19.0",
|
|
44
46
|
"@xterm/xterm": "^6.0.0",
|
|
45
47
|
"qrcode-terminal": "^0.12.0",
|
|
46
48
|
"ws": "^8.19.0"
|