webmux 0.27.1 → 0.28.1
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 +8 -2
- package/backend/dist/server.js +6712 -518
- package/bin/webmux.js +5093 -94
- package/frontend/dist/assets/DiffDialog-1oCJ0NIo.js +112 -0
- package/frontend/dist/assets/DiffDialog-BbPrhD_U.css +1 -0
- package/frontend/dist/assets/index-BibFvRPy.js +33 -0
- package/frontend/dist/assets/index-D4MJ4sZs.css +1 -0
- package/frontend/dist/assets/vendor-xterm-DYP7pi_n.css +32 -0
- package/frontend/dist/assets/vendor-xterm-DvXGiZvM.js +9 -0
- package/frontend/dist/index.html +4 -2
- package/package.json +8 -4
- package/frontend/dist/assets/index-CBdl44Z_.css +0 -32
- package/frontend/dist/assets/index-kg2aNK8N.js +0 -151
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# webmux
|
|
2
2
|
|
|
3
|
-
A web dashboard for managing parallel AI coding agents. webmux owns git worktree lifecycle, tmux layout, agent runtime events, service health monitoring, and sandbox containers directly.
|
|
3
|
+
A web dashboard for managing parallel AI coding agents. webmux owns git worktree lifecycle, tmux layout, agent runtime events, service health monitoring, and sandbox containers directly, and now also ships a separate mobile-friendly chat UI for checking in on worktrees away from your desktop.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -16,6 +16,10 @@ Spin up new worktrees with one click. Pick a profile, type a prompt, and webmux
|
|
|
16
16
|
|
|
17
17
|
View and interact with your agents directly in the browser. Each worktree gets its own terminal session, streamed live via WebSocket. You can watch agents work, send prompts, and switch between worktrees instantly — no need to juggle tmux windows manually.
|
|
18
18
|
|
|
19
|
+
### Mobile-Friendly Agents Chat
|
|
20
|
+
|
|
21
|
+
webmux also serves a second, simplified agents UI on a separate port. It is primarily meant to give you a much better mobile UX: a worktree list, a simple chat screen, and quick access to service and PR badges without trying to squeeze a full terminal dashboard onto a phone.
|
|
22
|
+
|
|
19
23
|
### PR, CI & Comments
|
|
20
24
|
|
|
21
25
|

|
|
@@ -55,9 +59,11 @@ cd /path/to/your/project
|
|
|
55
59
|
webmux init # creates .webmux.yaml
|
|
56
60
|
|
|
57
61
|
# 4. Start the dashboard
|
|
58
|
-
webmux serve #
|
|
62
|
+
webmux serve # dashboard on http://localhost:5111
|
|
59
63
|
```
|
|
60
64
|
|
|
65
|
+
The primary dashboard remains the best desktop experience. On mobile, the same dashboard swaps the embedded terminal for a chat view on open Codex and Claude worktrees.
|
|
66
|
+
|
|
61
67
|
## Prerequisites
|
|
62
68
|
|
|
63
69
|
| Tool | Purpose |
|