wolfpack-bridge 1.4.7 → 1.4.9
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 +2 -9
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -39,17 +39,10 @@ Mobile & desktop command center for AI coding agents. Control tmux-based session
|
|
|
39
39
|
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
40
|
|
|
41
41
|
<p align="center">
|
|
42
|
-
<img src="docs/
|
|
43
|
-
|
|
44
|
-
<img src="docs/terminal.jpeg" width="300" alt="Mobile terminal — touch-friendly controls for agent interaction" />
|
|
42
|
+
<img src="docs/desktop-demo.gif" width="700" alt="Desktop — sessions, terminal, and settings views" />
|
|
45
43
|
</p>
|
|
46
44
|
<p align="center">
|
|
47
|
-
<img src="docs/
|
|
48
|
-
|
|
49
|
-
<img src="docs/ralph_log.jpeg" width="300" alt="Ralph log — live progress of autonomous task execution" />
|
|
50
|
-
</p>
|
|
51
|
-
<p align="center">
|
|
52
|
-
<img src="docs/desktop.png" width="700" alt="Desktop terminal — full ANSI rendering with search" />
|
|
45
|
+
<img src="docs/mobile-demo.gif" width="300" alt="Mobile — sessions, terminal, and settings views" />
|
|
53
46
|
</p>
|
|
54
47
|
|
|
55
48
|
## Architecture
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wolfpack-bridge",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
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.4.
|
|
21
|
-
"wolfpack-bridge-darwin-x64": "1.4.
|
|
22
|
-
"wolfpack-bridge-linux-arm64": "1.4.
|
|
23
|
-
"wolfpack-bridge-linux-x64": "1.4.
|
|
20
|
+
"wolfpack-bridge-darwin-arm64": "1.4.9",
|
|
21
|
+
"wolfpack-bridge-darwin-x64": "1.4.9",
|
|
22
|
+
"wolfpack-bridge-linux-arm64": "1.4.9",
|
|
23
|
+
"wolfpack-bridge-linux-x64": "1.4.9"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"tmux",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"ws": "^8.19.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@playwright/test": "^1.58.2"
|
|
49
|
+
"@playwright/test": "^1.58.2",
|
|
50
|
+
"playwright": "^1.58.2"
|
|
50
51
|
}
|
|
51
52
|
}
|